Ignore:
Timestamp:
2005-08-01T12:25:44+12:00 (19 years ago)
Author:
mdewsnip
Message:

Removed some occurrences of "gsdl_path", and added some checks so it is only used when a local Greenstone exists.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/gui/ExportAsPrompt.java

    r9755 r10368  
    296296    command_parts_list.add(export_type);
    297297    command_parts_list.add("-exportdir");
    298     command_parts_list.add(Configuration.gsdl_path + "tmp" + File.separator);
     298    command_parts_list.add(Configuration.getTmpDirectoryPath());
    299299
    300300    if (cd_title.equals("")) {
     
    344344    args[0] = coll_names.toString();
    345345
    346     args[1] = Configuration.gsdl_path+"tmp"+File.separator;
     346    args[1] = Configuration.getTmpDirectoryPath();
    347347    if(cd_title.equals("")) {
    348348        String export_type = (String)saveas_combobox.getSelectedItem();
Note: See TracChangeset for help on using the changeset viewer.