Tagged Questions

The Template Toolkit is a fast, flexible and, highly extensible template processing system for Perl. There are also Python and JavaScript implementations.

learn more… | top users | synonyms

12
votes
3answers
388 views

How can I start out with web development using Perl?

I want to be able to create web front-ends to my Perl programs. I have a lot of experience with Perl, and I have converted most of my code to Modern Perl paradigms championed by Chromatic. I have ZERO ...
10
votes
2answers
1k 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 ...
9
votes
1answer
286 views

How can I handle hash keys containing illegal identifier characters in Template Toolkit?

In Template Toolkit, if I have the following variable containing a hashref: [% artist = { 'life-span' => '1975 to 1987', } %] What is the best way to output the data in 'life-span'? ...
9
votes
1answer
1k views

How can I profile template performance in Template::Toolkit?

What's the best method for benchmarking the performance of my various templates when using Template::Toolkit? I want something that will break down how much cpu/system time is spent processing each ...
7
votes
2answers
241 views

escape HTML by default in Template Toolkit

Can I somehow configure Template Toolkit so that: [% foo %] does what you would now need to say: [% foo | html %] that is, escape HTML in foo? And do something else, like: [% foo | noHtml %] ...
6
votes
3answers
108 views

Error Handling in Method Chaining in Perl

What is the best way to deal with exceptions threw in a method chaining in Perl? I want to assign a value of 0 or undef if any of the methods chained throw an exception Code sample: my $x = ...
6
votes
1answer
140 views

how to reverse an anonymous list in template toolkit?

Is it possible to reverse an anonymous list in template toolkit? e.g. [% FOREACH month IN [1..12].reverse %] [% month %] [% END %] (except that doesn't work). Just wondered if there was a ...
6
votes
1answer
717 views

Is there a Catalyst tutorial that uses 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 ...
5
votes
3answers
710 views

Template toolkit IF on an empty array ref returns true, can I make it false?

So it seems that if I give template toolkit a reference to an array as a parameter ARRAY_REF => \@array and then have the following code in a template [% IF ( ARRAY_REF ) %] Do something [% ...
5
votes
3answers
178 views

How can I handle template dependencies in Template Toolkit?

My static web pages are built from a huge bunch of templates which are inter-included using Template Toolkit's "import" and "include", so page.html looks like this: [% INCLUDE top %] [% IMPORT middle ...
5
votes
2answers
1k views

How do I eliminate TT's “Wide character in print” warning?

I have this warning every time I run my CGI-script (output is rendered by Template::Toolkit): Wide character in print at /usr/local/lib/perl5/site_perl/5.8.9/mach/Template.pm line 163. What's the ...
5
votes
4answers
2k 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: ...
4
votes
2answers
327 views

Template toolkit character encoding

it seems like template toolkit isn't handling encoding properly. I am passing template->process a filename (where to get the template), a hash reference (containing all the parameters), and a ...
4
votes
1answer
157 views

Can I set up template inheritance inside a template? (Template Toolkit)

I have to display different medical forms according to which state the user is in. There is also a default form that many of the states share. These medical forms are all written in Template Toolkit ...
4
votes
3answers
137 views

How can I write a Template.pm filter to generate PNG output from LaTeX source code?

I am looking for a way of generating PNG images of equations from LATEX source code embedded in templates. For example, given: [% FILTER latex_display ] \begin{eqnarray*} \max && U(x,y) \\ ...
4
votes
4answers
244 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 ...
3
votes
2answers
111 views

BASH: importing data from flat file into template

I have a flat file of records, each 33 lines long. I need to format this file to specs in a template. The template is in DOS format while the source file is in NIX format. The template has specific ...
3
votes
5answers
129 views

Template-Toolkit and complex variables

Say I'm working in Perl using Catalyst. I assign an array of hashes to a a variable, ie: my @array = ($some_hash); $c->stash->{foo}->{bar} = \@array; How do I select an element from ...
3
votes
2answers
74 views

How can I delete variable in Template Toolkit?

Looking at Template::Manual::VMethods section of the Template Toolkit manual I don't see any method doing this. Also assigning undef to variable doesn't work - variable.defined returns true after the ...
3
votes
1answer
66 views

How can I throw a warning in Template::Toolkits CATCH block?

The code I am working on has a bunch of TRY/CATCH blocks in Template::Toolkit templates. They look like this: [% TRY; x = OBJ.method(data); CATCH; "<!-- error: $error -->"; END %] This is ...
3
votes
1answer
66 views

Filter itens from a list using Template Toolkit

How can I filter some items that are in a dynamically generated list in Template Toolkit? I have a list of ids (also dynamically generated) and a list of ids to be excluded and I need to get just the ...
3
votes
2answers
105 views

Can I easily add new directives to Template Toolkit for Perl?

I'd like to add my own directives to Template Toolkit instead if adding functions and/or virtual methods via the plugin system. Is this easily doable without delving too deep into Template::Grammar? ...
3
votes
3answers
1k views

Parse and display MIME multipart email on website

I have a raw email, (MIME multipart), and I want to display this on a website (e.g. in an iframe, with tabs for the HTML part and the plain text part, etc.). Are there any CPAN modules or ...
3
votes
2answers
1k views

AJAX: how to get progress feedback in web apps, and to avoid timeouts on long requests?

This is a general design question about how to make a web application that will receive a large amount of uploaded data, process it, and return a result, all without the dreaded spinning beach-ball ...
3
votes
2answers
478 views

Escape Single Quotes in Template Toolkit

Do you ever escape single quotes in template toolkit for necessary javascript handlers? If so, how do you do it. [% SET s = "A'B'C" %] <a href="/abc.html" onclick="popup('[% s | html_entity ...
3
votes
2answers
139 views

How can I switch timezones in Perl's Template::Plugin::Date?

I have a calendar on my website, generated in Perl using Template::Toolkit and Template::Plugin::Date. It highlights the current day. I achieve this by iterating through all the dates (as I print the ...
3
votes
1answer
176 views

How can I get elements out of an array with Template Toolkit?

I have an array of Paths which i want to read out with Template Toolkit. How can I access the array Elements of this array? The Situation is this: my @dirs; opendir(DIR,'./directory/') || die $!; ...
3
votes
1answer
468 views

Is there a way to compare two variables in Template Toolkit?

[% IF OrgType.id == Organization.org_type_id %]selected="selected"[% END %] Does not work even when they both evaluate to the same number. [% IF OrgType.id == 3 %]selected="selected"[% END %] ...
3
votes
2answers
886 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?
3
votes
1answer
896 views

How do I use multiple Template Toolkit TTSite views on a Catalyst site?

I use Template Toolkit to generate views of pages in Catalyst. To do some basic Ajax, I want to have some output pages not use the TTSite style, but a much more basic structure. Do I put something ...
3
votes
2answers
767 views

Why can't I use Template Toolkit?

I am trying to use TemplateToolkit instead of good ole' variable interpolation and my server is giving me a lot of grief. Here are the errors I am getting: *** ...
2
votes
3answers
88 views

Moving logic from Template Toolkit to Catalyst

I think that I am using too much conditionals and calculations in the TT templates. I am displaying a result set of items from DBIc. For each item I need to calculate things using the retrieved ...
2
votes
1answer
77 views

Template Toolkit loop.index in foreach converted to Smarty?

I am working on converting a template toolkit project in Perl to PHP with Smarty. However I have been trying to find the equivalent of [% IF loop.index % 2 %] within a foreach loop for Smarty. I ...
2
votes
2answers
155 views

How to make tidy ignore TT code in html.tt templates?

I have some TT templates that I want tidy-up a little. I use tidy on the command-line. my command looks like: $ tidy -utf8 --preserve-entities y -indent -wrap 120 file.html.tt Unfortunately if I ...
2
votes
3answers
107 views

Show time delta in perl's template toolkit

I want to supply an integer to a Template::Toolkit template. This integer represents a number of seconds elapsed. I want to format this number like so: 1 => "1 second ago" 2 => "2 ...
2
votes
1answer
139 views

Can I search resultset from within a toolkit template file?

I use Catalyst and put a resultset into the stash for TT to access: $c->stash->{tournament} = $c->model('DB::Tournament')->find($id); This class has a relationship with ...
2
votes
1answer
129 views

Accessing extra selected columns from a resultset inside Template Toolkit

my $rs = schema->resultset('Table1')->search( undef, { join => 'relationship_table2', '+select' => ['relationship_table2.fk_id','relationship_table2.order], '+as' ...
2
votes
1answer
172 views

Template toolkit FOR and IF behavior

I am experiencing weird behavior with template toolkit, say I have a data structure (defined in perl and passed as a parameter): ( { FLAG => 1, some => data}, { some => data}, etc ) and in ...
2
votes
1answer
120 views

Why doesn't die $template->error() show a line number?

In the following short program: use Template; my $template = Template->new (INCLUDE_PATH => "."); $template->process ("non-existent-file") or die $template->error (); why ...
2
votes
2answers
481 views

Syntax hightlighting of template toolkit files in Aptana/Eclipse

Does anyone know how I can add syntax highlighting to Eclipse/Aptana for Template Toolkit files? All I need is for [% ... %] to be a different colour.
2
votes
1answer
160 views

Get Template::Plugin::Date to accept MySQL dates as well as datetimes

I'm using the date plugin for Template::Toolkit (Template::Plugin::Date), it works well with datetimes (yyyy-mm-dd hh:mm:ss) pulled straight out of MySQL, but it will not work with dates (yyyy-mm-dd). ...
2
votes
1answer
153 views

Adding a submode to nXhtml

Having made the jump just recently from XEmacs to GNU Emacs, I'm really loving nXhtml mode for writing web code. I'd like to be able to add a sub mode to it, though, and I'm not sure how. There ...
2
votes
1answer
179 views

Syntax hightlighting of template-toolkit within Ultraedit

Have anyone succesfully created a "wordfile" that works? I've tried but i can't get it to highlight [% and %]
2
votes
2answers
300 views

How can I force list context in Template Toolkit with RDBO?

I have a TT plugin that does the trivial unique ids: sub get_unique_uid_tt { my ( $classname, $o ) = @_; my %h; foreach my $item ( @{$o} ) { unless ( exists $h{ $item->id } ) { ...
2
votes
3answers
320 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 -%] ...
2
votes
3answers
352 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 %] ...
2
votes
1answer
135 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 ...
2
votes
4answers
251 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, ...
2
votes
3answers
565 views

How can I use Template Toolkit on a string instead of a file?

I have some strings that I am pulling out of a database and I would like to use Template Toolkit on them, but I can't seem to figure out how to use strings as TT input. Any tips? Thanks! -fREW
1
vote
0answers
66 views

Perl Dancer, Dancer::Plugin::DirectoryView, Template Toolkit and sharing params in templates

I have a post route which is returning params for use in a specific template (actions.tt). Within that template, I'm loading a div (using jQuery) with a view (dirmain.tt) of a directory using the ...

1 2