Changeset 16879


Ignore:
Timestamp:
2008-08-18T14:15:06+12:00 (16 years ago)
Author:
kjdon
Message:

search metadata eg index nmaes etc, don't use dot prefix in greenstone 3

File:
1 edited

Legend:

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

    r13057 r16879  
    3333import org.greenstone.gatherer.Configuration;
    3434import org.greenstone.gatherer.Dictionary;
     35import org.greenstone.gatherer.Gatherer;
    3536import org.greenstone.gatherer.gui.DesignPaneHeader;
    3637import org.greenstone.gatherer.util.StaticStrings;
     
    182183   
    183184    public String getMetaID() {
    184         return StaticStrings.STOP_CHARACTER+id;
     185      if (Gatherer.GS3) {
     186        // we don't use any dots in gs3
     187        return id;
     188      }
     189      return StaticStrings.STOP_CHARACTER+id;
     190     
    185191    }
    186192    public String getValue() {
Note: See TracChangeset for help on using the changeset viewer.