Ignore:
Timestamp:
2005-05-16T11:02:50+12:00 (19 years ago)
Author:
kjdon
Message:

merged from branch ant-install-branch: merge 1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/src/java/org/greenstone/gsdl3/util/GSFile.java

    r9425 r9874  
    2020
    2121import java.io.File;
    22 import org.apache.soap.encoding.soapenc.Base64;
     22//import org.apache.soap.encoding.soapenc.Base64;
     23import org.apache.axis.encoding.Base64;
    2324import java.io.BufferedInputStream;
    2425import java.io.BufferedOutputStream;
     
    161162   
    162163    /** text path (for doc retrieval) relative to collectionBaseDir */
    163     static public String collectionTextPath(String collection_name) {
     164    static public String collectionTextPath(String index_stem) {
    164165    return "index"+File.separatorChar+"text"+File.separatorChar+
    165         collection_name;
     166        index_stem;
    166167    }
    167168
    168169    /** index path (for querying) relative to collectionBaseDir */
    169     static public String collectionIndexPath(String collection_name,
     170    static public String collectionIndexPath(String index_stem,
    170171                         String index_name) {
    171172    return "index"+File.separatorChar+index_name+File.separatorChar+
    172         collection_name;
     173        index_stem;
    173174    }
    174175   
Note: See TracChangeset for help on using the changeset viewer.