Website Templating
A template engine is a piece of software that processes an input text (the template) to produce one or more output texts.The processing itself generally consists in replacing specific sequences of text with data provided by a model or resulting from more complex operations.
From : en.wikipedia.org/wiki/Template_engine
PEE
Perl Embedding Engine
A Perl module (two,
to be precise) that allows the use of Perl in templates like HTML.
It is very similar
to JSP, PHP,
ASP, and other template languages.
In fact, the entire idea is assembled from these languages. However, there
are few notable differences.
- It embeds Perl
- our kind of language, not java, not VB!
- It is extremely
simple - there are only 4 different tags, no need for a 100-page
manual.
- It is open
and compatible - the core of PEE is the parser, which compiles
the template into ordinary perl code. It does not get in your
usual way of perl programming, since it does not do more than assembling
layout code with logic-handling code. It does not even require mod_perl,
although you may use it.
- It is extensible
- because everything is open, you may build a caching mechanism easily,
or add additional tags.
visit
PEE
PEE was visited : 69 times
Loading .....