Changeset 9785


Ignore:
Timestamp:
2005-04-29T14:53:57+12:00 (19 years ago)
Author:
kjdon
Message:

changed the name of collection_name parameter to collectionIndexPath/collectionTextPath to index_stem to reflect better what the parameter means

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ant-install-branch/gsdl3/src/java/org/greenstone/gsdl3/util/GSFile.java

    r9553 r9785  
    162162   
    163163    /** text path (for doc retrieval) relative to collectionBaseDir */
    164     static public String collectionTextPath(String collection_name) {
     164    static public String collectionTextPath(String index_stem) {
    165165    return "index"+File.separatorChar+"text"+File.separatorChar+
    166         collection_name;
     166        index_stem;
    167167    }
    168168
    169169    /** index path (for querying) relative to collectionBaseDir */
    170     static public String collectionIndexPath(String collection_name,
     170    static public String collectionIndexPath(String index_stem,
    171171                         String index_name) {
    172172    return "index"+File.separatorChar+index_name+File.separatorChar+
    173         collection_name;
     173        index_stem;
    174174    }
    175175   
Note: See TracChangeset for help on using the changeset viewer.