Ignore:
Timestamp:
2010-11-02T11:36:31+13:00 (13 years ago)
Author:
kjdon
Message:

added excerptid and excerpttag to the list of params as they should never be saved

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/src/java/org/greenstone/gsdl3/util/GSParams.java

    r16869 r23269  
    5050    public static final String EXPAND_DOCUMENT = "ed";
    5151    public static final String EXPAND_CONTENTS = "ec";
     52
     53  // used for filtering out a piece of the final page
     54  public static final String EXCERPT_ID = "excerptid";
     55  public static final String EXCERPT_TAG = "excerpttag";
    5256    protected HashMap param_map = null;
    5357   
     
    8084    addParameter("s0.ext", false);
    8185    addParameter(COLLECTION_TYPE,  true); // collection type - mg or mgpp
     86
     87    // filtering args must be specified each time
     88    addParameter(EXCERPT_ID, false);
     89    addParameter(EXCERPT_TAG, false);
    8290    }
    8391   
Note: See TracChangeset for help on using the changeset viewer.