Changeset 3387 for trunk


Ignore:
Timestamp:
2002-08-23T10:08:20+12:00 (22 years ago)
Author:
kjdon
Message:

added in applet action

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/src/java/org/greenstone/gsdl3/core/Receptionist.java

    r3363 r3387  
    9595    a.configure();
    9696    action_map_.put("r", a);
     97
     98    a = new AppletAction();
     99    a.setConfigVars(config_);
     100    a.setCGIConverter(cgi_);
     101    a.setMessageRouter(mr_);
     102    a.configure();
     103    action_map_.put("a", a);
    97104    return true;
    98105    }
     
    134141    message.appendChild(message_doc.importNode(config_.config_xml_, true));
    135142
    136     System.out.println("message at receptionist is:");
    137     System.out.println(converter_.getString(message));
    138143    String page = a.process(message);
    139144    return page;
Note: See TracChangeset for help on using the changeset viewer.