Ignore:
Timestamp:
2004-10-07T16:44:32+13:00 (20 years ago)
Author:
mdewsnip
Message:

Replaced all "Gatherer.config" with "Configuration".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/cdm/SuperCollectionManager.java

    r8002 r8231  
    3232import javax.swing.*;
    3333import javax.swing.event.*;
     34import org.greenstone.gatherer.Configuration;
    3435import org.greenstone.gatherer.Dictionary;
    3536import org.greenstone.gatherer.Gatherer;
     
    126127
    127128        JTextArea instructions = new JTextArea();
    128         instructions.setBackground(Gatherer.config.getColor("coloring.collection_tree_background", false));
     129        instructions.setBackground(Configuration.getColor("coloring.collection_tree_background", false));
    129130        instructions.setCaretPosition(0);
    130131        instructions.setEditable(false);
     
    193194        File gsdl_collection_directory;
    194195        if (Gatherer.GS3) {
    195         gsdl_collection_directory = new File(Utility.getCollectDir(Gatherer.config.gsdl3_path, Gatherer.config.site_name));
     196        gsdl_collection_directory = new File(Utility.getCollectDir(Configuration.gsdl3_path, Configuration.site_name));
    196197        } else {
    197         gsdl_collection_directory = new File(Utility.getCollectDir(Gatherer.config.gsdl_path));
     198        gsdl_collection_directory = new File(Utility.getCollectDir(Configuration.gsdl_path));
    198199        }
    199200        current_coll_name = Gatherer.c_man.getCollection().getName();
Note: See TracChangeset for help on using the changeset viewer.