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 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