created 26 July 2007 in links tagged helma, javascript and template.
Replacement templating engine for Helma - supports loops, assignment, various other logic constructs that the built-in system doesn’t. Not that trimpath doesn’t work too, of course.
created 23 November 2005 in links tagged javascript, template and trimpath.
Faster implementation of the trimpath templating engine.
created 23 November 2005 in links tagged javascript, programming, template and web.
Javascript templating language. Completely insane.
created 03 November 2005 in blog tagged perl and template.
Yay, I’ve released Yet Another Templating Language. This one is a perl implementation of TAL, which is a nice XML-based templating language I’ve been playing with recently. There are other (sort of) implementations, but I consider Template::TAL (a) closer to the spec, and (b) more abstracted - I can load templates from anywhere, not just disk. It’s weaker in other respects, of course, but that’s life..
created 13 August 2004 in blog tagged perl, template and xml.
Ah ha! I have a blogroll. Ph33r me.
In other news, Template::Plugin::XML::Simple is really nifty.
<p class="code">
[% USE blogroll = XML.Simple('/export/home/tomi/web/jerakeen.org/blogroll.opml') %]
<p class=header>blogroll</p>
<p>
[% FOREACH section = blogroll.body.outline %]
<a href="[% section.htmlUrl %]">[% section.text %]</a>
[% UNLESS loop.last %]<br />[% END %]
[% END %]
</p>
created 01 January 2000 in code tagged perl and template.
mod_tt is an apache handler that processes Template Toolkit templates natively in the apache server without the configuration overhead of a full mod_perl and Apache::Template install. Template::ModTT (this module) is the perl interface to the mod_tt hander available to you when running under mod_tt.