* - Make i18n/l10n for the messages of the framework itself. * - Write in DocBookWiki a programmer's guide for phpWebApp. * - Use the webbox docbook in the documentation of phpWebApp. * - Write more tutorials for phpWebApp. * ------------- Make a new release 1.3 * - Add this functionality to the framework: any webobject can handle an event sent to another webobject, if it defines the event handler "on_className_eventName()" (usually the event handlers are named like this: "on_eventName()"). Here 'eventName' is the name of the event, and 'className' is the class of the webobject that receives or sends the event (whichever is more appropriate). This may make obsolete the "event_target='any'", which was used to allow a webbox to handle the events of another webbox. * - Add a switch at const.Settings.php, which tells the framework to print debug information for the functions that are executed in the order that they are executed. Such functions can be onParse, onRender, init, eventHandler, on_event, etc. * - Factor out from the classes all the debuging functions and put them in a separate class or file.