]> WPIA git - gigi.git/blobdiff - doc/TemplateSyntax.txt
ADD: more advanced domain name verification (public suffix, punycode)
[gigi.git] / doc / TemplateSyntax.txt
index ab4cc37d37060a2e0b229629bf70df791df0a1c8..2ed1e546074493495a2012a4fced4118ea3d2cde 100644 (file)
@@ -7,10 +7,15 @@ A template is constructed from a charstream. Everything that is not in "<?" to "
 - <?=_This is free Text.?> will translate "This is free Text." into the users language, (escaped) and output it.
    
 - <?=s,$var1,$var2,$var3,...,$varn,This %s is, %s free.?>
-  Translate the last string. Output $var1,...,$varn sprintf-ed into the translated string.
+  Translate the last string. Output $var1,...,$varn replaced into the %s positions in the translated string.
+
+- <?=$!variablename?> will output the variable "variablename" but not HTML-escaped
+- <?=s,$!variablename,My %s text?> will insert the variable "variablename" into the translated text but not HTML-escaped
+- <?=s,"some data",My %s text?> will insert "some data" into the translated text
+- <?=s,!"some data",My %s text?> will insert "some data" into the translated text literally (not HTML-escaped)
   
 - <? if($variable) { ?>
-  Output/execute the text until "<? } ?>" only if $variable is boolean and true.
+  Output/execute the text until "<? } ?>" only if $variable not null or Boolean.FALSE.
   
 - <? foreach($variable) { ?>
   If $variable is an "IterableDataset"