diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2005-07-31 14:03:44 +0000 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2005-07-31 14:03:44 +0000 |
commit | 9819147600b26c5414d516b0b996010682832b7e (patch) | |
tree | 107ed738e77ef84893407bdd1fbb58fc59321818 /devel/pear-HTML_Template_Sigma/pkg-descr | |
parent | 428da8b230614d520e581407fa2d19e7771600cd (diff) | |
download | ports-9819147600b26c5414d516b0b996010682832b7e.tar.gz ports-9819147600b26c5414d516b0b996010682832b7e.zip |
Notes
Diffstat (limited to 'devel/pear-HTML_Template_Sigma/pkg-descr')
-rw-r--r-- | devel/pear-HTML_Template_Sigma/pkg-descr | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/devel/pear-HTML_Template_Sigma/pkg-descr b/devel/pear-HTML_Template_Sigma/pkg-descr new file mode 100644 index 000000000000..e1fdc91f0af2 --- /dev/null +++ b/devel/pear-HTML_Template_Sigma/pkg-descr @@ -0,0 +1,22 @@ +HTML_Template_Sigma implements Integrated Templates API designed by Ulf Wendel. + +Features: + * Nested blocks. Nesting is controlled by the engine. + * Ability to include files from within template: <!-- INCLUDE --> + * Automatic removal of empty blocks and unknown variables + (methods to manually tweak/override this are also available) + * Methods for runtime addition and replacement of blocks in templates + * Ability to insert simple function calls into templates: + func_uppercase('Hello world!') and to define callback functions for these + * 'Compiled' templates: the engine has to parse a template file using regular + expressions to find all the blocks and variable placeholders. + This is a very "expensive" operation and is an overkill to do on every page + request: templates seldom change on production websites. + Thus this feature: an internal representation of the template structure is + saved into a file and this file gets loaded instead of the source one on + subsequent requests (unless the source changes) + * PHPUnit-based tests to define correct behaviour + * Usage examples for most of the features are available, look in the docs/ + directory + +WWW: http://pear.php.net/package-info.php?package=HTML_Template_Sigma |