Changeset 16286
- Timestamp:
- 2008-07-02T19:07:28+12:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
gli/trunk/src/org/greenstone/gatherer/collection/CollectionManager.java
r16272 r16286 1349 1349 } 1350 1350 1351 /** At present, scheduling only works for GS2, only when GS2 is local and only when GLI runs from 1352 * within a GS2 installation. This method can be adjusted as scheduling becomes available for more 1353 * more situations. */ 1351 /** At present, scheduling only works for GS2 and only when GS2 is local. This 1352 * method can be adjusted as scheduling becomes available for more situations. */ 1354 1353 private boolean canDoScheduling() { 1355 1354 if(Gatherer.isGsdlRemote) { … … 1357 1356 } 1358 1357 if(Gatherer.GS3) { 1359 return false;1360 }1361 1362 // GS2's etc/main.cfg is necessary for scheduling, but scheduling looks for it locally:1363 // it assumes GLI is inside a GS2 installation1364 File mcfg = new File(LocalGreenstone.getDirectoryPath() + File.separator + "etc" + File.separator + "main.cfg");1365 if(!mcfg.exists()) {1366 System.out.println("Cannot do scheduling, since there is no file: " + mcfg.getAbsolutePath()1367 + ".\nScheduling presently depends on GLI running from inside a GS2.");1368 1358 return false; 1369 1359 }
Note:
See TracChangeset
for help on using the changeset viewer.