Ignore:
Timestamp:
2003-04-15T10:50:26+12:00 (21 years ago)
Author:
kjdon
Message:

all stuff for the page generated by teh Receptionist (config and display) is now put into a pageExtra element, so actions only need to append one extra piece to the page

File:
1 edited

Legend:

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

    r3996 r4144  
    7777    Element page = doc_.createElement(GSXML.PAGE_ELEM);
    7878    page.setAttribute(GSXML.LANG_ATT, lang);
    79     // add the lang stuff from message
    80     page.appendChild(doc_.importNode(GSXML.getChildByTagName(message, GSXML.DISPLAY_ELEM), true));
    81     // add the config stuff from message
    82     page.appendChild(doc_.importNode(GSXML.getChildByTagName(message, GSXML.CONFIGURATION_ELEM), true));
     79    // add the page extra stuff from message
     80    page.appendChild(doc_.importNode(GSXML.getChildByTagName(message, GSXML.PAGE_EXTRA_ELEM), true));
    8381
    8482    // add in the page Request
Note: See TracChangeset for help on using the changeset viewer.