Changeset 3648


Ignore:
Timestamp:
2003-01-06T15:31:05+13:00 (21 years ago)
Author:
kjdon
Message:

brought it up to date with some naming changes

File:
1 edited

Legend:

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

    r3623 r3648  
    6060
    6161public class XSLTServices
    62   extends ServicesImpl {
     62  extends ServiceRack {
    6363 
    6464  // these strings must match what is found in the properties file
     
    182182    // Documents are just the ids decoding using standard URL decoding
    183183   
    184     String []ids = GSXML.getResourceNameList(content_elem);
     184    String []ids = GSXML.getDocumentNameList(content_elem);
    185185    for (int j=0; j<ids.length; j++) {
    186186      String document = null;
     
    191191      }
    192192      // something funny with the doc -
    193       Element new_doc = GSXML.createResourceElement(doc_, ids[j]);
     193      Element new_doc = GSXML.createDocumentElement(doc_, ids[j]);
    194194      GSXML.addDocText(doc_, new_doc, document);
    195195      response.appendChild(new_doc);
     
    253253    transformer.transform(source,result);
    254254    String id = writer.toString();
    255     Node no = GSXML.createResourceElement(doc_, id);
     255    Node no = GSXML.createDocumentElement(doc_, id);
    256256    resource_list.appendChild(no);
    257257      } catch (Throwable t) {
Note: See TracChangeset for help on using the changeset viewer.