Ignore:
Timestamp:
2008-02-12T16:13:13+13:00 (16 years ago)
Author:
davidb
Message:

Changes to GLI to support export into Fedora. New utility called flisvn diff gems/MetadataSetManager.java

File:
1 edited

Legend:

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

    r12144 r14974  
    3939import org.greenstone.gatherer.cdm.CollectionDesignManager;
    4040import org.greenstone.gatherer.cdm.Control;
     41
     42import org.greenstone.gatherer.Configuration;
     43
    4144public class DesignPane
    4245    extends BaseConfigPane {
     
    4548    public DesignPane() {
    4649    super();
    47     contents = new String [] { "CDM.GUI.Plugins", "CDM.GUI.Indexes", "CDM.GUI.Subcollections",  "CDM.GUI.Classifiers" };
     50    if (Configuration.fedora_info.isActive()) {
     51        contents = new String [] { "CDM.GUI.Plugins" };
     52    }
     53    else {
     54        contents = new String [] { "CDM.GUI.Plugins", "CDM.GUI.Indexes", "CDM.GUI.Subcollections",  "CDM.GUI.Classifiers" };
     55    }
    4856   
    4957    }
Note: See TracChangeset for help on using the changeset viewer.