greenstone.org greenstone wiki greenstone trac planet greenstone

Changeset 16879

Show
Ignore:
Timestamp:
2008-08-18 14:15:06 (5 months ago)
Author:
kjdon
Message:

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

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 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() {