summaryrefslogtreecommitdiff
path: root/libs/sysplugins/smarty_internal_template.php
AgeCommit message (Collapse)AuthorFilesLines
2011-06-16- bugfix do not overwrite 'smarty' template variable when {include ... ↵uwe.tews@googlemail.com1-1/+1
scope=parent} exits
2011-03-16- bugfix on default {function} parameters when {function} was used in ↵uwe.tews@googlemail.com1-214/+214
nocache sections - bugfix on compiler object destruction. compiler_object property was by mistake unset.
2011-03-03- bugfix "smarty" template variable was not recreated when cached templated ↵uwe.tews@googlemail.com1-0/+2
had expired
2011-02-16-fixed typo in exception message of Smarty_Internal_Templateuwe.tews@googlemail.com1-1/+1
2011-02-11fix typos, rewordingmonte.ohrt1-1/+1
2011-01-16-bugfix of Iterator object handling in internal _count() methoduwe.tews@googlemail.com1-1/+1
2011-01-16-bugfix of ArrayAccess object handling in internal _count() methoduwe.tews@googlemail.com1-10/+7
2011-01-14fix memory leakuwe.tews@googlemail.com1-5/+7
2011-01-14-bugfix removed memory leak while processing compileAllTemplatesuwe.tews@googlemail.com1-1/+7
2010-12-13- bugfix {$smarty.template} in child template did not return right contentuwe.tews@googlemail.com1-11/+21
- bugfix Smarty3 did not search the PHP include_path for template files
2010-11-27-change run output filter before cache file is written (as in Smarty2)uwe.tews@googlemail.com1-0/+3
2010-11-15- bugfix captured content could not be accessed globallyuwe.tews@googlemail.com1-0/+8
- bugfix Smarty2 wrapper functions could not be call from within plugins
2010-11-13- bugfix overloading problem when $smarty->fetch()/display() have been used ↵uwe.tews@googlemail.com1-1/+11
in plugins
2010-11-13- code cleanupuwe.tews@googlemail.com1-9/+9
2010-11-13- bugix overloading problem when $smarty->fetch()/display() have been used ↵uwe.tews@googlemail.com1-9/+21
in plugins (introduced with 3.0.2)
2010-11-13- reverted location of loadPlugin() to Smarty classuwe.tews@googlemail.com1-2/+2
- fixed comments in plugins
2010-11-11- major update including some API changesuwe.tews@googlemail.com1-102/+126
2010-10-01- added {break} and {continue} tags for flow control of ↵uwe.tews@googlemail.com1-9/+22
{foreach},{section},{for} and {while} loops - change of 'string' resource. It's no longer evaluated and compiled files are now stored - new 'eval' resource which evaluates a template without saving the compiled file - change in isCached() method to allow multiple calls for the same template
2010-09-1515/09/2010uwe.tews@googlemail.com1-2/+2
- bugfix resolving conflict between '<%'/'%>' as custom Smarty delimiter and ASP tags - use ucfirst for resource name on internal resource class names
2010-09-10- bugfix for change of 08/09/2010 (final {block} tags in subtemplates did ↵uwe.tews@googlemail.com1-1/+6
not produce correct results)
2010-09-08- allow multiple template inheritance branches starting in subtemplatesUwe.Tews1-0/+2
2010-08-23- fixed E_STRICT errors for uninitialized variablesUwe.Tews1-2/+6
2010-08-17fix formattingmonte.ohrt1-1/+1
2010-08-13- remove exception_handler property from Smarty classUwe.Tews1-8/+7
- added Smarty's own exceptions SmartyException and SmartyCompilerException
2010-07-31- bugfix on nocache attribute at {assign} and {append}Uwe.Tews1-1/+3
2010-07-14- make the date_format modifier work also on objects of the DateTime classUwe.Tews1-2/+0
- implementation of parsetrees in the parser to close security holes and remove unwanted empty line in HTML output
2010-07-08- bugfix on assigning multidimensional arrays within templatesUwe.Tews1-0/+20
- corrected bugfix for truncate modifier
2010-05-26- bugfix removed decrepated register_resource call in ↵Uwe.Tews1-1/+1
smarty_internal_template.php
2010-05-11- bugfix make sure that the cache resource is loaded in all conditions when ↵Uwe.Tews1-1/+10
template methods getCached... are called externally
2010-04-07- bugfix typo in smarty_internal_templatecompilerbase and ↵Uwe.Tews1-1/+1
smarty_internal_template
2010-03-31- compile locking by touching old compiled files to avoid concurrent ↵Uwe.Tews1-153/+163
compilations
2010-03-23- bugfix on caching mode SMARTY_CACHING_LIFETIME_SAVED and cache_lifetime = 0Uwe.Tews1-2/+2
2010-03-10remove old API callmonte.ohrt1-2/+2
2010-03-09- bugfix on uninitialized properties in smarty_internal_templateUwe.Tews1-2/+2
- bugfix on $smarty->disableSecurity()
2010-03-09fix overload errormonte.ohrt1-1/+1
2010-03-08add __get() to templateCreate classmonte.ohrt1-0/+19
2010-03-08add setters/getters to created templatesmonte.ohrt1-1/+33
2010-03-04- bugfix allow uppercase chars in registered resource namesUwe.Tews1-8/+1
2010-02-27- allow block tags inside double quoted string Uwe.Tews1-3/+3
2010-02-08- bugfix of cache filename on extended templates when force_compile=trueUwe.Tews1-2/+2
2010-02-07- bugfix on changes of 05/02/2010Uwe.Tews1-1/+1
2010-02-06major API updatemonte.ohrt1-1/+1
2010-02-05- bugfix on modifier and block plugins with same nameUwe.Tews1-10/+17
2010-01-25- bugfix cache resource was not loaded when caching was globally off but ↵Uwe.Tews1-3/+6
enabled at a template object
2010-01-07- bugfix on file dependendcy at template inheritanceUwe.Tews1-1/+1
- bugfix on nocache code at template inheritance
2010-01-05- bugfix sha1() calculations at extends resource and some general ↵Uwe.Tews1-12/+4
improvments on sha1() handling
2010-01-03- internal change on building cache filesUwe.Tews1-29/+23
2010-01-02- update cached_timestamp at the template object after cache file is written ↵Uwe.Tews1-7/+7
to avoid possible side effects - use internally always SMARTY_CACHING_LIFETIME_* constants
2009-12-31- optimization of generated code for doublequoted strings containing variablesUwe.Tews1-1/+8
- rewrite of {function} tag handling - can now be declared in an external subtemplate - can contain nocache sections (nocache_hash handling) - can be called in noccache sections (nocache_hash handling) - new {call..} tag to call template functions with a variable name {call name=$foo} - fixed nocache_hash handling in merged compiled templates
2009-12-29- internal change on merging some data Uwe.Tews1-16/+4