In Roxen you have access to all the tag objects in the parser, so you can call then manually. I'm sure you can get hold of the tag functions (they are still functions, right?) in caudium somehow.
/ Martin Nilsson (gitarrmusik)
Previous text:
2003-06-21 16:09: Subject: Re: Parser.HTML and stack depth
right,
one of the common problems i see in code is that people return rxml tags as a result of handling a tag.
eg, doing
return("<true>");
is a waste of resource, one should instead return what <true> would usually evaluate to.
same goes for any other rxml being returned.
i am not sure if it is possible to simply access tag functions by name like:
return id->tags->true();
something like this in caudium and roxen would be convenient.
/ Brevbäraren