> No problem, just set absolute:
> my $pageOBJ = new Template({
>      LOAD_TEMPLATES => [
>          $prov,
>          $http,
>      ],
>      PREFIX_MAP => {
>          http => 1,
>          default => 0,
>      },
>       ABSOLUTE => 1 });
> 
> But that doesn't resolve anything.  

I think you may need to set ABSOLUTE when you instantiate your provider
class, i.e.:

        my $http = Template::Provider::HTTP->new({
                ABSOLUTE => 1,
        });

"ABSOLUTE" may not be the only option for which this is necessary. I had
a similar problem (I can't remember exactly what it was), and I ended up
passing ALL of my config options (except the self-referential ones :-)
to every template object constructer I use, just to be safe. It doesn't
seem to cause any problems...

Jason

_______________________________________________
templates mailing list
[EMAIL PROTECTED]
http://lists.template-toolkit.org/mailman/listinfo/templates

Reply via email to