Ignore:
Timestamp:
2003-08-18T12:37:01+12:00 (21 years ago)
Author:
kjdon
Message:

GSCGI replaced by GSParams

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/src/java/org/greenstone/gsdl3/action/BrowseAction.java

    r4696 r5147  
    4141    HashMap params = GSXML.extractParams(cgi_paramList, false);
    4242
    43     String service_name = (String)params.get(GSCGI.SERVICE_ARG);
    44     String collection = (String)params.get(GSCGI.COLLECTION_ARG);
     43    String service_name = (String)params.get(GSParams.SERVICE);
     44    String collection = (String)params.get(GSParams.COLLECTION);
    4545    if (collection == null || collection.equals("")) {
    4646        System.err.println("BrowseAction Error:classifierBrowse, need to specify a collection!");
     
    8383   
    8484    // if rt=d, then we are just displaying the service
    85     String request_type = (String)params.get(GSCGI.REQUEST_TYPE_ARG);
     85    String request_type = (String)params.get(GSParams.REQUEST_TYPE);
    8686    if (request_type.equals("d")) {
    8787        //return the page that we have so far
Note: See TracChangeset for help on using the changeset viewer.