Hi, I'm rather new to axkit, and have some perl/xml experience.  I've seen 
the many examples of using taglibs, including Matt Sargeant's example:

package AxKit::XSP::DateTime;
use strict;
use Apache::Axkit::Language::XSP::SimpleTaglib;
$VERSION=0.90;
$NS='http://axkit.org/xsp/demo/datetime';
sub now {
     return localtime->strftime("%I:%M%P on %A %e %B, %Y");
}
package AxKit::XSP::Datetime::Handlers;
sub now: expr {
     return 'AxKit::XSP::Datetime::now();';
}
1

I understand how to layout the index.xsp page and add the processor 
directive for xsl2html.xsl transformation, but where should the above code 
be placed?  Is there a specific file this perl taglib code needs to be in? 
 Should it be included in the xsl document, if so how?  Basically, I'm 
getting 500 server errors and in the apache log it says something like 
Apache::AxKit::Language::XSP::SimpleTaglib 'cannot find function' or 
something similiar to that.  Thanks folks.

"In God we Trust, all others bring data."
deanc

Reply via email to