Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Injecting local variables into a template

by ikegami (Patriarch)
on Feb 06, 2008 at 06:53 UTC ( [id://666496]=note: print w/replies, xml ) Need Help??


in reply to Injecting local variables into a template

For starters, your my usage is wrong.
my $headline, $body, $url;
means
(my $headline), $body, $url;
but you want
my ($headline, $body, $url);

The solution requiring minial change is,

# publish.pl sub layout { local our ($headline, $body, $url) = @_; do 'article.layout.pl'; } layout($headline, $body, $url);
# article.layout.pl our ($headline, $body, $url); print("$headline, $body, $url\n");

Update: Just to be clear, I recommend against using my solution (and wfsp's). I think you're going to spend way more time avoiding using a real template system than actually switching over. The sooner you switch, the easier and quicker it will be. My solution is a quick fix in case you already have your "templates" written that way and this needs to be done "yesterday". Otherwise, I think switching to a templating system would be faster, even in the short run.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (3)
As of 2024-04-25 07:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found