in reply to Re: Re: XHTML Strict?
in thread XHTML Strict?

there's nothing stopping you from installing modules yourself. you just can't put them in the main library.

tar zxvf SomeModule.tar.gz cd SomeModule perl Makefile.PL PREFIX=/some/directory/you/can/write/to make make install
and then, in your code:
use lib qw(/some/directory/you/can/write/to); use Some::Module;

anyway, having HTML::Template or Template::Toolkit installed are probably well worth whatever paperwork you have to go through.

anders pearson