2
votes
3answers
46 views
Using Perl’s Template.pm, how can I select a random element from an array and output it?
Suppose I have the following in my template:
[%- pages = [ 'one', 'two', 'three' ] -%]
<p>Go to page [%- ... -%]</p>
Assuming EVAL_PERL is not set (i.e., I cannot use a [%- PERL -%] …
3
votes
4answers
59 views
Line numbers with template toolkit
I am using the Perl Template Toolkit to generate C files. I dearly want to be able to include #line directives in my C code so that error messages from the C compiler send me to the right place (the …
2
votes
3answers
52 views
How can you pass undef as an argument to an object method from a TT template?
Template-Toolkit seems to want to always interpolate undef to the empty string. So a template like this:
Result is [% some_object.some_method (1, undef, 2) %]
or this:
Result is [% ttvar %]
…
1
vote
1answer
91 views
Why can’t my Catalyst application read my Template Toolkit files?
I am trying to get the Catalyst framework to work using Template Toolkit, and I'm having issues with Template::Provider. I've isolated the issue to calls to stat. In Template::Provider::_init, calls …
1
vote
3answers
107 views
Should my MVC controllers be object-oriented?
I'm making a Perl website, and I'll using Template Toolkit (for the view), a whole bunch of objects for DB interaction and business logic (the model), but I'm wondering: should the controllers be OO?
…
1
vote
2answers
93 views
Calling outside modules in Template Toolkit without Plugins?
I am trying to call an outside Perl module in a Template Toolkit .tt file. The module I want to use is Util, and I want to call Util::prettify_date. I was able to include this module using Template …
2
votes
1answer
74 views
How can I render only a specific `BLOCK` in a Perl’s Template Toolkit?
How can I render only a specific BLOCK in a template?
Suppose I have this BLOCK in text.tt, a Template Toolkit file:
[% BLOCK someblock %] some block test blah blah blah [% END %]
I want to be …
1
vote
2answers
172 views
Which Perl session management library works well with TemplateToolkit?
I've considered CGI::Application and CGI::Session. Of the two, CGI::Session seems more promising. CGI::Application model, however, doesn't look like it would work well with Template Toolkit. (Am I …
1
vote
4answers
136 views
Where can I find ‘more advanced web toolkit’ for Template Toolkit?
I really like Template Toolkit and like how it works with Catalyst, but I would like more 'web advanced' toolkit.
It could be just a package of *.tt files for Web objects like these: Selector, …
1
vote
2answers
108 views
How can I define constants in a Template Tookit template in a Catalyst app?
I want to use a constant in my TT template. In HTML::Mason (my previous templating engine of choice) I could do:
<%once>
use MyApp::Constants qw(CONSTANT);
</%once>
How can I do this in …
4
votes
1answer
202 views
Catalyst tutorial using HTML::Template instead of TT?
I've been looking through a couple of Catalyst tutorials and they all tend to use Template Toolkit instead of HTML::Template.
I've spent a lot of time with HTML::Template and I like it, and while I …
1
vote
1answer
223 views
How do I get a random number in template toolkit?
I want to get a random number using template toolkit. It doesn't have to be particularly random. How do I do it?
0
votes
1answer
32 views
Can I redirect output from TPAGE
I want tpage to redirect the output to a different file.
The redirect filter seems almost to do what I want but when I use it I get :
redirect error - OUTPUT_PATH is not
set
Can I set …
4
votes
2answers
400 views
Can Perl’s Template Toolkit warn on undefined values?
Is there a way to make Perl's Template display warnings for all undefined values that I attempt to use the GET directive on (via [% %]) during Template::process?
The default behavior is to ignore and …
2
votes
3answers
384 views
What’s the right way to display a DBIx::Class ResultSet in my Catalyst project that uses Template Toolkit?
Given a DBIx::Class resultset, for example:
my $rs = $c->model("DB::Card")->search({family_name => "Smith"});
the tutorials I've read use the stash to pass an arrayref of rows:
…
