That did it :) thanks!!

Strangely enough I was just looking at the source for AxKit-XSP-Sendmail and
spotted the missing @ISA declaration.

Thanks for the stuff on h2xs Tod, I shall have a play.

Happiness is a working Taglib ;)

Mark.

> 
> your missing...
> 
> use Apache::AxKit::Language::XSP;
> 
> @ISA = qw(Apache::AxKit::Language::XSP Exporter);
> 
> Mike.
> 
>> 
>> package freeloader::taglib;
>> 
>> $NS = 'http://www.mytest.com/xsp/taglib/';
>> @EXPORT_TAGLIB = (
>> 'hello()'
>> );
>> 
>> use Apache::AxKit::Language::XSP::TaglibHelper;
>> sub parse_char {
>> Apache::AxKit::Language::XSP::TaglibHelper::parse_char(@_);
>> }
>> sub parse_start {
>> Apache::AxKit::Language::XSP::TaglibHelper::parse_start(@_); }
>> sub parse_end { 
>> Apache::AxKit::Language::XSP::TaglibHelper::parse_end(@_); }
>> use strict;
>> 
>> 
>> sub hello() {
>>     return "hello world!";
>> }
>> 
>> 
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>> For additional commands, e-mail: [EMAIL PROTECTED]
>> 
>> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to