function Parser($comp_n = NULL)
$comp_n: Filename of the called component relative to the cache path
The constructor takes care that the autohander.comp will be processed. Parser is normally created by index.php.function callNext()
Return Value: Result of the evaluation of the next component
This function is should only be used in components to switch over to the next component<html> <head> <title>Example Autohandler</title> </head> <body> <& $p->callNext() &> </body> </html>
function call($comp_n)
$comp_n: Filename of the called component relative to the cache path
Return Value: Result of the evaluation of the next component
Note the by using call no autohandler will be called.todo example
function callMethod($method)
$method: Name of method to call
Return Value: Result of the evaluation of the method or ""
This function searches the hierarchy form bottom to top for the method and executes it.todo example
function start()This function is called by index.php to start processing of the component hierachically.
function fetchComp($comp_n)
$comp_n: Filename of the called component relative to the cache path
Return Value: Returns the component object given by $comp_n
todo example
function rl($link)
$link: Relative link in autohander
Return Value: Updated relative link rl alters an relative link in an autohandler so that the links remain relative to the autohandler if a component in a deeper directory is called.