Changeset 3489


Ignore:
Timestamp:
2002-10-25T16:28:58+13:00 (22 years ago)
Author:
kjdon
Message:

config file names changed

File:
1 edited

Legend:

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

    r3477 r3489  
    4343    /**  site config file path */
    4444    static public String siteConfigFile(String site_home) {
    45     return site_home + File.separatorChar+"sitecfg.xml";
     45    return site_home + File.separatorChar+"siteConfig.xml";
    4646
    4747    }
     
    5959            File.separatorChar+collection_name+
    6060            File.separatorChar+"etc"+
    61             File.separatorChar+"collectcfg.xml";
     61            File.separatorChar+"collectionConfig.xml";
    6262
    6363    }
     
    6969            File.separatorChar+collection_name+
    7070            File.separatorChar+"index"+
    71             File.separatorChar+"buildcfg.xml";
     71            File.separatorChar+"buildConfig.xml";
    7272    }
    7373    /** collection build config file path*/
     
    7777            File.separatorChar+collection_name+
    7878            File.separatorChar+"building"+
    79             File.separatorChar+"buildcfg.xml";
     79            File.separatorChar+"buildConfig.xml";
    8080    }
    8181
     
    224224        byte[] buffer=Base64.decode(data);
    225225        writeFile(buffer, out_filename);
    226         
     226       
    227227    } catch (Exception e) {
    228228        System.err.println("file opening/closing errors"+e.getMessage());
Note: See TracChangeset for help on using the changeset viewer.