Ignore:
Timestamp:
2004-11-23T14:28:53+13:00 (20 years ago)
Author:
mdewsnip
Message:

Replaced exec_address with library_url, which is much more descriptive (in my mind, anyway). Also tidied up a few things related to this.

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

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/gems/GEMS.java

    r8626 r8627  
    189189    // Load configuration file
    190190    try {
    191            
    192         config = new Configuration(go.gsdl_path, null, null, go.perl_path, null);
     191        config = new Configuration(go.gsdl_path, null, null);
    193192    }
    194193    catch (Exception exception) {
  • trunk/gli/src/org/greenstone/gatherer/gems/GEMSPreferences.java

    r8601 r8627  
    423423        Configuration.setPreviewCommand(program_str);
    424424
    425         String library_path_string = library_path_field.getText();
    426         Configuration.setString("general.exec_address", true, library_path_string);
    427         if (!library_path_string.equals("")) {
    428         try {
    429             Configuration.exec_address = new URL(library_path_string);
    430         }
    431         catch (MalformedURLException error) {
    432             ///ystem.err.println("Error: Bad address: " + exec_address_string);
    433         }
    434         }
    435425        boolean site_changed = false;
    436426        if (Gatherer.GS3) {
Note: See TracChangeset for help on using the changeset viewer.