Changeset 11052 for trunk/gli


Ignore:
Timestamp:
2006-01-17T12:04:02+13:00 (18 years ago)
Author:
mdewsnip
Message:

A couple of very minor changes.

Location:
trunk/gli/src/org/greenstone/gatherer
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/collection/LegacyCollectionImporter.java

    r9670 r11052  
    2727public class LegacyCollectionImporter
    2828{
     29    /** Definition of an important directory name, in this case the backup import directory for the collection. */
     30    static final public String IMPORT_BAK_DIR = "import.bak" + File.separator;
     31
     32
    2933    // This copies all the existing metadata.xml files into a backup directory
    3034    static public void backupMetadataXMLFiles(File collection_dir)
  • trunk/gli/src/org/greenstone/gatherer/util/Utility.java

    r10639 r11052  
    6868    /** Definition of an important directory name, in this case the file the collection configuration is expect to be in. */
    6969    static final public String CONFIG_FILE = "etc" + File.separator + "collect.cfg";
    70     static final public String GLI_ARCHIVE = "GLI.jar";
    7170    static final public String GLI_EXTENSION = ".col";
    7271
    7372    /** Definition of an important directory name, in this case the import directory for the collection. */
    7473    static final public String IMPORT_DIR = "import" + File.separator;
    75     /** Definition of an important directory name, in this case the backup import directory for the collection. */
    76     static final public String IMPORT_BAK_DIR = "import.bak" + File.separator;
    7774    /** Definition of an important directory name, in this case the macros directory for the collection. */
    7875    static final public String MACROS_DIR = "macros" + File.separator;
     
    8380    /** The default name of the perl executable under windows. */
    8481    static final public String PERL_EXECUTABLE_WINDOWS = "Perl.exe";
    85     /** The name of the Gatherer. */
     82    /** The name of the GLI. */
    8683    static final public String PROGRAM_NAME = "Greenstone Librarian Interface";
    87     /** The current version of the Gatherer. */
     84    /** The current version of the GLI. */
    8885    static final public String PROGRAM_VERSION = "v2.62";
    8986    static final public String WORKSPACE_TREE = "Workspace";
Note: See TracChangeset for help on using the changeset viewer.