Ignore:
Timestamp:
2003-03-11T16:58:35+13:00 (21 years ago)
Author:
kjdon
Message:

a wide variety of changes, next I will go through and make sure the code is tidy, nad tidy up teh xml a bit, but I wanted to check in all this first.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/src/java/org/greenstone/gsdl3/service/GS2MGPPRetrieve.java

    r3820 r3851  
    7878
    7979
    80     /** Retrieve the structure of a document */
     80    /** Retrieve the structure of a document - this function needed as its called specifically on the class name*/
    8181    protected Element processDocumentStructureRetrieve(Element request)
    8282    {
     
    8585
    8686
    87     /** Retrieve metadata associated with a document */
     87    /** Retrieve metadata associated with a document - this function needed as its called specifically on the class name*/
    8888    protected Element processDocumentMetadataRetrieve(Element request)
    8989    {
     
    106106    Element param_list = (Element) GSXML.getChildByTagName(request, GSXML.PARAM_ELEM+GSXML.LIST_MODIFIER);
    107107    if (param_list == null) {
    108         System.err.println("GS2Retrieve, DocumentContentRetrieve Error: missing paramList.\n");
     108        System.err.println("GS2MGPPRetrieve, DocumentContentRetrieve Error: missing paramList.\n");
    109109        return result;  // Return the empty result
    110110    }
     
    113113
    114114    // Process the request parameters
     115    // are there any???
    115116    Element param = (Element) param_list.getFirstChild();
    116117    while (param != null) {
     
    119120        }
    120121        else {
    121         //
     122        // this looks for a level param but I think we dont use it
    122123        if (param.getAttribute(GSXML.NAME_ATT) == LEVEL_PARAM) {
    123124            level = GSXML.getValue(param);
Note: See TracChangeset for help on using the changeset viewer.