Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Re: Re: Re: Re: Error using HTML::Template

by jsprat (Curate)
on Dec 12, 2003 at 07:19 UTC ( [id://314241]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Re: Re: Error using HTML::Template
in thread Error using HTML::Template

I did the same thing - that's what I meant by "manually satisfy the requirements". I gave up on Cwd, since it uses xs.

Let me try something...

Try this, it works for me. Rename the real Cwd.pm and upload a 'new' Cwd.pm, with the following:

package Cwd; require Exporter; use vars @EXPORT; @EXPORT = qw/getcwd/; sub import { my $pkg = shift; my $caller = caller; Exporter::export( $pkg, $caller, @EXPORT ); } sub getcwd { '.' } 1;

Here are the rest of the modules you'll need:

$ perl -MHTML::Template -e'print join "\n", keys %INC' | sort base.pm Carp.pm Exporter.pm File/Spec.pm File/Spec/Unix.pm HTML/Template.pm integer.pm strict.pm vars.pm warnings.pm warnings/register.pm

Once you've uploaded all of these, try running the code from HTML::Template's pod.

Good luck!

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: Re: Error using HTML::Template
by Anneq (Vicar) on Dec 12, 2003 at 14:10 UTC

    jsprat,

    Excellent! It worked. Now I need to go away for a while and find out why.

    Many thanks for your help,

    Anne

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://314241]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (3)
As of 2024-04-19 19:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found