Ignore:
Timestamp:
2023-11-15T11:41:49+13:00 (7 months ago)
Author:
kjdon
Message:

if we are page action (used as default when no action was specified), and no subaction specified, if collection is specified, use about page, otherwise use home page. This is to allow urls like library/collection/lucene-demo. This means that LibraryServlet must only set a=p as teh default, not sa=home

File:
1 edited

Legend:

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

    r37390 r38374  
    797797    if (action == null || action.equals(""))
    798798    {
    799     // display the home page  - the default page
     799    // use page action as the default
    800800    xml_request.setAttribute(GSXML.ACTION_ATT, "p");
    801     xml_request.setAttribute(GSXML.SUBACTION_ATT, PageAction.HOME_PAGE);
     801
    802802    }
    803803    else
Note: See TracChangeset for help on using the changeset viewer.