From 67630731a6839bae25fa6a637fcdf84871416107 Mon Sep 17 00:00:00 2001 From: mohrt Date: Fri, 1 Mar 2002 20:50:49 +0000 Subject: [PATCH] update document id tags --- docs/appendixes.sgml | 2 +- docs/designers.sgml | 14 +++++++------- docs/getting-started.sgml | 6 +++--- docs/programmers.sgml | 15 +++++++-------- 4 files changed, 18 insertions(+), 19 deletions(-) diff --git a/docs/appendixes.sgml b/docs/appendixes.sgml index d63384b4..a8615a6a 100644 --- a/docs/appendixes.sgml +++ b/docs/appendixes.sgml @@ -319,7 +319,7 @@ Stock Name: {$ticker_name} Stock Price: {$ticker_price} As of Smarty 1.5.0, there is even a cleaner way. You can include php in your templates with the {include_php ...} tag. This way you can keep your PHP logic separated from the template logic. See the include_php function for + linkend="language.function.include.php">include_php function for more information. diff --git a/docs/designers.sgml b/docs/designers.sgml index 44d181a9..a0cfb358 100644 --- a/docs/designers.sgml +++ b/docs/designers.sgml @@ -317,7 +317,7 @@ email: zaphod@slartibartfast.com<br> The output captured via {capture}..{/capture} construct can be accessed using {$smarty} variable. See section on - capture for an example. + capture for an example. @@ -326,8 +326,8 @@ email: zaphod@slartibartfast.com<br> {$smarty} variable can be used to refer to 'section' and 'foreach' loop properties. See docs for - section and - foreach. + section and + foreach. @@ -2560,15 +2560,15 @@ OUTPUT: - + Custom Functions - Smarty comes with several additional functions that you can + Smarty comes with several custom functions that you can use in the templates. - - Additional Functions + + Custom Functions assign diff --git a/docs/getting-started.sgml b/docs/getting-started.sgml index 0190a7f0..ec547797 100644 --- a/docs/getting-started.sgml +++ b/docs/getting-started.sgml @@ -24,8 +24,8 @@ No template parsing overhead, only compiles once. It is smart about recompiling only the template files that have changed. - You can make custom - functions and custom variable + You can make custom + functions and custom variable modifiers, so the template language is extremely extensible. Configurable template delimiter tag syntax, so you can use {}, {{}}, <!--{}-->, etc. @@ -65,7 +65,7 @@ linkend="variable.cache.lifetime">expires, regenerating a new one. The default cache expire time can be configured from the class. The exception to the rule is the insert tag. Anything + linkend="language.function.insert">insert tag. Anything generated by the insert tag is not cached, but run dynamically on every invocation, even within cached content. diff --git a/docs/programmers.sgml b/docs/programmers.sgml index c67eb3f8..02baf9ee 100644 --- a/docs/programmers.sgml +++ b/docs/programmers.sgml @@ -127,7 +127,7 @@ Server variables can be accessed through the $smarty variable, such as {$smarty.server.SCRIPT_NAME}. See the section on the - $smarty variable. + $smarty variable. @@ -256,7 +256,7 @@ This tells Smarty how to handle PHP code embedded in the tempalates. There are four possible settings, default being SMARTY_PHP_PASSTHRU. Note that this does NOT affect php code - within {php}{/php} + within {php}{/php} tags in the template. @@ -270,7 +270,7 @@ NOTE: Embedding PHP code into templates is highly discouraged. - Use custom functions or + Use custom functions or modifiers instead. @@ -334,7 +334,7 @@ $trusted_dir is only for use when $security is enabled. This is an array of all directories that are considered trusted. Trusted directories are where you keep php scripts that are executed directly from the templates - with {include_php}. + with {include_php}. @@ -708,7 +708,7 @@ $smarty->unregister_resource("db"); Use this to dynamically register prefilters to run templates through before they are compiled. See template prefilters for + linkend="advanced.features.prefilters">template prefilters for more information on how to setup a prefiltering function. @@ -735,7 +735,7 @@ $smarty->unregister_resource("db"); Use this to dynamically register postfilters to run templates through after they are compiled. See template postfilters for + linkend="advanced.features.postfilters">template postfilters for more information on how to setup a postfiltering function. @@ -1058,7 +1058,6 @@ $smarty->display("index.tpl"); <!-- Created by Smarty! --> {* rest of template content... *} - @@ -1980,7 +1979,7 @@ function smarty_resource_db_trusted($tpl_name, &$smarty) Inserts Insert plugins are used to implement functions that are invoked by - insert + insert tags in the template.