Ignore:
Timestamp:
2009-01-12T11:40:15+13:00 (15 years ago)
Author:
kjdon
Message:

updated the rtl-gli branch with files from trunk. Result of a merge 14807:18318, and fixed some conflicts. I think this is the last commit following merging the files. Haven't tried to compile yet... here goes...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gli/branches/rtl-gli/src/org/greenstone/gatherer/gui/DesignPane.java

    r18297 r18364  
    4040import org.greenstone.gatherer.cdm.CollectionDesignManager;
    4141import org.greenstone.gatherer.cdm.Control;
     42
     43import org.greenstone.gatherer.Configuration;
     44
    4245public class DesignPane
    4346    extends BaseConfigPane {
     
    4649    public DesignPane() {
    4750    super();
    48     contents = new String [] { "CDM.GUI.Plugins", "CDM.GUI.Indexes", "CDM.GUI.Subcollections",  "CDM.GUI.Classifiers" };
     51    if (Configuration.fedora_info.isActive()) {
     52        contents = new String [] { "CDM.GUI.Plugins" };
     53    }
     54    else {
     55        contents = new String [] { "CDM.GUI.Plugins", "CDM.GUI.Indexes", "CDM.GUI.Subcollections",  "CDM.GUI.Classifiers" };
     56    }
    4957   
    5058    }
Note: See TracChangeset for help on using the changeset viewer.