Changed the Help so that chapters with only 1 page are directly linked, saving a click.

Added pluggable template parser docs.
From the dev list, changed HTMLTemplateExpr to translate all dots in template
variables to underscores, since EXPR's don't do dots, just like TemplateToolkit.
This commit is contained in:
Colin Kuskie 2006-10-29 23:36:18 +00:00
parent 8905b7252c
commit 0b1e077f69
14 changed files with 319 additions and 4 deletions

View file

@ -0,0 +1,25 @@
package WebGUI::i18n::English::Template_HTMLTemplateExpr;
our $I18N = {
'html template expr title' => {
message => q|HTML Template Expr|,
lastUpdated => 1162085513,
context => q|Name of the HTML::Template::Expr module|
},
'html template expr body' => {
message => q|<p>HTML Template Expr is an extension to HTML Template that adds expressions to the language. <a href="http://search.cpan.org/perldoc?HTML%3A%3ATemplate%3A%3AExpr">Documentation for this extension</a> is available online.</p>
<p>The syntax of template variables in HTML Template Expr is slightly different from HTML Template. Any WebGUI template variables that contains a dot '.', should be chanaged to use an underscore instead '_'.</p>
|,
lastUpdated => 1162085513,
context => q|Explanation of HTML Template Expr usage in WebGUI.|
},
'templateParserName' => {
message => q|HTML Template with expressions|,
lastUpdated => 1162085447,
},
};
1;