konrad/twig.git
13 years agoadded priority to node visitors
Fabien Potencier [Sun, 28 Nov 2010 13:17:56 +0000]
added priority to node visitors

13 years agoadded Twig_Test_Method
Fabien Potencier [Sun, 28 Nov 2010 12:53:37 +0000]
added Twig_Test_Method

13 years agobumped version for dev
Fabien Potencier [Sun, 28 Nov 2010 07:41:40 +0000]
bumped version for dev

13 years agoupdated CHANGELOG and bumped version to 0.9.9
Fabien Potencier [Sun, 28 Nov 2010 07:38:18 +0000]
updated CHANGELOG and bumped version to 0.9.9

13 years agoupdated doc for the pre_escape filter option
Arnaud Le Blanc [Sat, 27 Nov 2010 21:01:12 +0000]
updated doc for the pre_escape filter option

13 years agoAdded "pre_escape" option for filters
Arnaud Le Blanc [Tue, 16 Nov 2010 20:15:15 +0000]
Added "pre_escape" option for filters

This allows filters to get their input pre-escaped for a given context

13 years agofinished the configurability of operators
Fabien Potencier [Sun, 28 Nov 2010 07:13:15 +0000]
finished the configurability of operators

13 years agoadded file and line to Twig_Error_Runtime exceptions thrown from Twig_Template
Fabien Potencier [Sat, 27 Nov 2010 10:34:36 +0000]
added file and line to Twig_Error_Runtime exceptions thrown from Twig_Template

13 years agomade error message for strict variables more useful
Fabien Potencier [Sat, 27 Nov 2010 10:15:27 +0000]
made error message for strict variables more useful

13 years agochanged trans tag to accept any variable for the plural count
Fabien Potencier [Sat, 27 Nov 2010 09:10:04 +0000]
changed trans tag to accept any variable for the plural count

13 years agoupdated CHANGELOG
Fabien Potencier [Sat, 27 Nov 2010 08:40:12 +0000]
updated CHANGELOG

13 years agoupdated CHANGELOG
Fabien Potencier [Fri, 26 Nov 2010 21:17:32 +0000]
updated CHANGELOG

13 years agofixed __toString() calls when sandbox is enabled
Fabien Potencier [Fri, 26 Nov 2010 21:15:05 +0000]
fixed __toString() calls when sandbox is enabled

13 years agoadded more information to an exception to ease debugging
Fabien Potencier [Fri, 26 Nov 2010 20:13:26 +0000]
added more information to an exception to ease debugging

13 years agomade operators configurable
Fabien Potencier [Fri, 26 Nov 2010 19:57:53 +0000]
made operators configurable

13 years agoadded some example usage for the defined test in the doc
Fabien Potencier [Fri, 26 Nov 2010 18:14:17 +0000]
added some example usage for the defined test in the doc

13 years agofixed a warning and added some unit tests
Fabien Potencier [Fri, 26 Nov 2010 18:11:59 +0000]
fixed a warning and added some unit tests

13 years agoAllow is defined test on complex variables
Jordi Boggiano [Fri, 26 Nov 2010 17:58:49 +0000]
Allow is defined test on complex variables

13 years agofixed several bugs in SimpleTokenParser (nested optional grammar, and support for...
Fabien Potencier [Fri, 26 Nov 2010 17:58:54 +0000]
fixed several bugs in SimpleTokenParser (nested optional grammar, and support for , as a separator)

13 years agofixed typo
Fabien Potencier [Fri, 26 Nov 2010 16:21:29 +0000]
fixed typo

13 years agorewrote expression parser with a new algorithm to limit the depth of nested calls
Fabien Potencier [Fri, 26 Nov 2010 09:35:49 +0000]
rewrote expression parser with a new algorithm to limit the depth of nested calls

This change has no impact for the end user, but many internal benefits:

* less nested calls (was the primary reason for the change as xdebug limits the depth of nested calls);
* less code;
* code is much cleaner (I have removed all the parsing "hacks");
* faster;
* more flexible (we will now be able to expose an API to add new operators);
* easier to maintain.

13 years agoreplace all is_null($value) with null === $value
stloyd [Wed, 24 Nov 2010 20:29:49 +0000]
replace all is_null($value) with null === $value

13 years agoadded some missing tests
Fabien Potencier [Thu, 25 Nov 2010 16:11:24 +0000]
added some missing tests

13 years agoadded a defined test (strict_variables is now useable)
Fabien Potencier [Wed, 24 Nov 2010 08:47:51 +0000]
added a defined test (strict_variables is now useable)

13 years agoadded _charset as a special variable that references the current charset
Fabien Potencier [Sat, 20 Nov 2010 13:43:35 +0000]
added _charset as a special variable that references the current charset

13 years agohandle spl_object_hash collisions
Arnaud Le Blanc [Wed, 17 Nov 2010 20:47:21 +0000]
handle spl_object_hash collisions

13 years agoadded the spaceless tag
Fabien Potencier [Fri, 19 Nov 2010 12:20:22 +0000]
added the spaceless tag

13 years agoremoved trim_blocks option
Fabien Potencier [Fri, 19 Nov 2010 12:04:59 +0000]
removed trim_blocks option

The trim_blocks option has been removed as the rendered output depends on the value of this option.
This is not a problem for HTML output, but it's a big one if you want to output
plain text for instance.

The behavior now is the same as if the trim_blocks option is set to true. It mimicks
the behavior of PHP tags.

13 years agoChanged Twig_Node_Expression_Filter to accept only one filter
Arnaud Le Blanc [Mon, 15 Nov 2010 22:07:19 +0000]
Changed Twig_Node_Expression_Filter to accept only one filter

Chained filters are now represented by nested
Twig_Node_Expression_Filter nodes internally.

This makes it easier to analyse the tree

13 years agoremoved usage of SplObjectStorage as PHP < 5.3 does not support ArrayAccess
Fabien Potencier [Wed, 17 Nov 2010 10:35:26 +0000]
removed usage of SplObjectStorage as PHP < 5.3 does not support ArrayAccess

13 years agoadded support for is*() methods for attributes (foo.bar now looks for foo->getBar...
Fabien Potencier [Tue, 16 Nov 2010 09:51:23 +0000]
added support for is*() methods for attributes (foo.bar now looks for foo->getBar() or foo->isBar())

13 years agofix storage of object properties in analysis
Arnaud Le Blanc [Sun, 7 Nov 2010 23:07:24 +0000]
fix storage of object properties in analysis

13 years agoupdated CHANGELOG
Fabien Potencier [Sun, 7 Nov 2010 21:20:58 +0000]
updated CHANGELOG

13 years agomade a clarification to the doc
Fabien Potencier [Sun, 7 Nov 2010 21:18:41 +0000]
made a clarification to the doc

13 years agomoved all exceptions to Twig_Error_*
Fabien Potencier [Sun, 7 Nov 2010 21:18:31 +0000]
moved all exceptions to Twig_Error_*

13 years agoupdated CHANGELOG
Fabien Potencier [Sun, 7 Nov 2010 20:45:11 +0000]
updated CHANGELOG

13 years agofixed unary expressions
Fabien Potencier [Sun, 7 Nov 2010 20:44:05 +0000]
fixed unary expressions

13 years agoRemove is_escaper flag from urlencode
Jordi Boggiano [Tue, 5 Oct 2010 21:51:42 +0000]
Remove is_escaper flag from urlencode

urlencode is an url escaper but not an html escaper so I don't think it should be exempt from auto-escaping

13 years agoFix replace filter name in documentation
ornicar [Sun, 7 Nov 2010 19:26:32 +0000]
Fix replace filter name in documentation

13 years agoupdate docs for automatic escaping
Arnaud Le Blanc [Sun, 7 Nov 2010 17:23:31 +0000]
update docs for automatic escaping

13 years agoadded a note about using rewind() after look()
Fabien Potencier [Sun, 7 Nov 2010 13:37:08 +0000]
added a note about using rewind() after look()

13 years agofixed child templates (with an extend tag) that uses one or more imports
Fabien Potencier [Sun, 7 Nov 2010 13:31:47 +0000]
fixed child templates (with an extend tag) that uses one or more imports

13 years agofixed documentation and added infix notation for in (already supported for is)
Fabien Potencier [Sun, 7 Nov 2010 13:21:10 +0000]
fixed documentation and added infix notation for in (already supported for is)

13 years agoupdated CHANGELOG
Fabien Potencier [Sun, 7 Nov 2010 09:04:07 +0000]
updated CHANGELOG

13 years agochanged how nl2br is implemented in tests to better reflect how it should be done...
Fabien Potencier [Sun, 7 Nov 2010 08:58:28 +0000]
changed how nl2br is implemented in tests to better reflect how it should be done in userland code

13 years agoremoved @version phpdoc attribute
Fabien Potencier [Sun, 7 Nov 2010 08:26:25 +0000]
removed @version phpdoc attribute

13 years agofixed CS
Fabien Potencier [Sun, 7 Nov 2010 08:17:24 +0000]
fixed CS

13 years agodeeply mark expressions as safe (e.g. a conditonal expression is safe if both operand...
Arnaud Le Blanc [Sat, 6 Nov 2010 02:49:37 +0000]
deeply mark expressions as safe (e.g. a conditonal expression is safe if both operands are literals)

13 years agosupport for specifying the escaping type of a filter
Arnaud Le Blanc [Sat, 6 Nov 2010 02:36:14 +0000]
support for specifying the escaping type of a filter

13 years agoChanged escaping rules (switched to post-escaping)
Arnaud Le Blanc [Sun, 22 Aug 2010 00:30:25 +0000]
Changed escaping rules (switched to post-escaping)

Expression in Print nodes are always escaped before being printed,
except in two conditions :
  * if the expression is an Expression_Constant node
  * if the last filter in the chain is an escaper

13 years agomade the include tag more flexible
Fabien Potencier [Mon, 1 Nov 2010 03:24:32 +0000]
made the include tag more flexible

13 years agofixed a unit test so that it works for more PHP versions
Fabien Potencier [Tue, 26 Oct 2010 17:49:31 +0000]
fixed a unit test so that it works for more PHP versions

13 years agofixed typo
Fabien Potencier [Sat, 23 Oct 2010 08:38:18 +0000]
fixed typo

13 years agoOptimize/uniformalize the multibyte filters
Jordi Boggiano [Thu, 21 Oct 2010 18:52:26 +0000]
Optimize/uniformalize the multibyte filters

13 years agoRemoved unnecessary twig_constant_filter function
Jordi Boggiano [Thu, 21 Oct 2010 18:17:56 +0000]
Removed unnecessary twig_constant_filter function

13 years agofixed typos in the docs
Fabien Potencier [Tue, 19 Oct 2010 11:19:52 +0000]
fixed typos in the docs

13 years agofixed typo in the doc
Fabien Potencier [Mon, 11 Oct 2010 10:27:59 +0000]
fixed typo in the doc

13 years agoupdated doc
Fabien Potencier [Wed, 6 Oct 2010 13:11:15 +0000]
updated doc

13 years agorenamed urlencode to url_encode
Fabien Potencier [Wed, 6 Oct 2010 13:10:20 +0000]
renamed urlencode to url_encode

13 years agoAdded json_encode filter
Jordi Boggiano [Tue, 5 Oct 2010 21:23:45 +0000]
Added json_encode filter

13 years agoFixed PHP 5.3 namespace dependency (Issues a warning in PHP 5.2).
Matt Agar [Mon, 4 Oct 2010 22:58:35 +0000]
Fixed PHP 5.3 namespace dependency (Issues a warning in PHP 5.2).

13 years agochanged the way to access nodes and attributes from a node
Fabien Potencier [Sat, 2 Oct 2010 06:23:54 +0000]
changed the way to access nodes and attributes from a node

Before:
  Nodes were accessed via node properties ($node->body)
  Attributes were accessed via node array access ($node['name'])

After:
  Nodes are accessed via getNode(), setNode(), ... ($node->getNode('body'))
  Attributes are accessed via getAttribute(), setAttribute(), ... ($node->getAttribute('name'))

The change was necessary because of side-effects. This is one more time the
demonstration that being explicit is always better than magic ;)

13 years agofixed typo
Fabien Potencier [Fri, 1 Oct 2010 18:34:31 +0000]
fixed typo

13 years agoadded a note to get an extension reference
Fabien Potencier [Fri, 1 Oct 2010 18:28:02 +0000]
added a note to get an extension reference

13 years agofixed typo
Fabien Potencier [Fri, 1 Oct 2010 18:13:25 +0000]
fixed typo

13 years agorenamed |safe to |raw to avoid unnecesarry confusion about what the tags does.
henrikbjorn [Fri, 1 Oct 2010 11:48:52 +0000]
renamed |safe to |raw to avoid unnecesarry confusion about what the tags does.

Discussion can be viewed here http://groups.google.com/group/symfony-devs/browse_thread/thread/b927063310c74411. All tests pass.

13 years agochanged the implementation of template inheritance
Fabien Potencier [Fri, 1 Oct 2010 12:11:58 +0000]
changed the implementation of template inheritance

13 years agoremoved obsolete code
Fabien Potencier [Fri, 1 Oct 2010 10:08:57 +0000]
removed obsolete code

13 years agoadded a replace filter
Fabien Potencier [Fri, 1 Oct 2010 10:08:46 +0000]
added a replace filter

13 years agoadded the environment as an argument to initRuntime
Fabien Potencier [Thu, 30 Sep 2010 08:10:34 +0000]
added the environment as an argument to initRuntime

13 years agoadded Twig_Template::hasBlock() method
Fabien Potencier [Thu, 30 Sep 2010 08:10:16 +0000]
added Twig_Template::hasBlock() method

14 years agofixed error handling for if tag when a syntax error occurs within a subparse process...
Angelo Vargas [Thu, 23 Sep 2010 01:33:55 +0000]
fixed error handling for if tag when a syntax error occurs within a subparse process (closes #131)

14 years agoadded token parser broker (closes #104)
Arnaud Le Blanc [Sun, 12 Sep 2010 17:36:40 +0000]
added token parser broker (closes #104)

Twig_Extension::getTokenParsers() can now return an array of
TokenParsers, or a Twig_TokenParserBrokerInterface. This allows
extensions to implement custom logics for resolving token parsers.

14 years agofixed js escaper to be stricter, whilelist-based js escaper (closes #114)
Arnaud Le Blanc [Tue, 24 Aug 2010 06:22:05 +0000]
fixed js escaper to be stricter, whilelist-based js escaper (closes #114)

14 years agomade a small update to doc and rename a test file
Fabien Potencier [Sun, 12 Sep 2010 06:01:34 +0000]
made a small update to doc and rename a test file

14 years agoadded a constant filter (refs #120)
Fabien Potencier [Sun, 12 Sep 2010 05:59:41 +0000]
added a constant filter (refs #120)

14 years agoadded the constant() test (closes #120)
Mark Story [Sat, 11 Sep 2010 20:41:50 +0000]
added the constant() test (closes #120)

14 years agofixed objects with __toString() not being autoescaped (fixes #111)
Mark Story [Tue, 24 Aug 2010 03:02:57 +0000]
fixed objects with __toString() not being autoescaped (fixes #111)

14 years agofixed filesystem loader should not view directory as a valid template (closes #116)
Fabien Potencier [Mon, 6 Sep 2010 06:56:03 +0000]
fixed filesystem loader should not view directory as a valid template (closes #116)

14 years ago[doc] fixed typos in several chapters
Hugo Hamon [Sun, 22 Aug 2010 14:34:59 +0000]
[doc] fixed typos in several chapters

14 years agofixed SimpleTokenParser accepts comma(",") in grammar
fivestar [Tue, 31 Aug 2010 02:32:37 +0000]
fixed SimpleTokenParser accepts comma(",") in grammar

14 years agoFix for bug #101 : make magic calls case-sensitive in subscript expressions (closes...
Arnaud Le Blanc [Sun, 15 Aug 2010 20:03:36 +0000]
Fix for bug #101 : make magic calls case-sensitive in subscript expressions (closes #101)

14 years agofixed is operator (lexer did not tokenize 'foo.isactive' properly -- closes #102)
Fabien Potencier [Tue, 17 Aug 2010 05:49:57 +0000]
fixed is operator (lexer did not tokenize 'foo.isactive' properly -- closes #102)

14 years agoFixed 'is' operator in CHANGELOG
Johnson Page [Mon, 16 Aug 2010 02:17:36 +0000]
Fixed 'is' operator in CHANGELOG

14 years agoFixing a few small typos/grammatical errors.
Mark Story [Mon, 16 Aug 2010 03:49:29 +0000]
Fixing a few small typos/grammatical errors.

14 years agosimplified code
Fabien Potencier [Sat, 14 Aug 2010 11:50:37 +0000]
simplified code

14 years agoupdated doc (closes #100)
Fabien Potencier [Sat, 14 Aug 2010 07:05:04 +0000]
updated doc (closes #100)

14 years agoadded version information in the doc
Fabien Potencier [Fri, 13 Aug 2010 17:17:13 +0000]
added version information in the doc

14 years agoadded a trans filter (closes #85)
Fabien Potencier [Fri, 13 Aug 2010 17:15:57 +0000]
added a trans filter (closes #85)

14 years agofixed unit tests
Fabien Potencier [Fri, 13 Aug 2010 16:37:33 +0000]
fixed unit tests

14 years agoadded 'test' feature via the 'is' operator (closes #88)
Fabien Potencier [Fri, 13 Aug 2010 14:15:33 +0000]
added 'test' feature via the 'is' operator (closes #88)

14 years agoremoved obsolete code
Fabien Potencier [Fri, 13 Aug 2010 06:20:22 +0000]
removed obsolete code

14 years agoremoved the debug tag (should be done in an extension)
Fabien Potencier [Fri, 13 Aug 2010 06:13:54 +0000]
removed the debug tag (should be done in an extension)

14 years agofixed trans tag when no vars are used in plural form (closes #98)
Fabien Potencier [Thu, 12 Aug 2010 20:22:56 +0000]
fixed trans tag when no vars are used in plural form (closes #98)

14 years agofixed race condition when writing template cache on disk (closes #97)
Fabien Potencier [Thu, 12 Aug 2010 19:56:30 +0000]
fixed race condition when writing template cache on disk (closes #97)

14 years agoadded a note about the self variable before 0.9.9
Fabien Potencier [Mon, 26 Jul 2010 08:53:43 +0000]
added a note about the self variable before 0.9.9

14 years agoFixing failing test in Twig_Tests_Node_Expression_FilterTest when mb extension is...
Mark Story [Sat, 24 Jul 2010 16:23:33 +0000]
Fixing failing test in Twig_Tests_Node_Expression_FilterTest when mb extension is not installed.  Fixes #93

14 years agoUpdating documentation for addExtension()
Mark Story [Sat, 24 Jul 2010 03:38:26 +0000]
Updating documentation for addExtension()

14 years agoadded a new shortcut in the SimpleTokenParser
Fabien Potencier [Mon, 12 Jul 2010 16:28:53 +0000]
added a new shortcut in the SimpleTokenParser

14 years agofixed template cloning problem with inheritance
Fabien Potencier [Mon, 12 Jul 2010 15:48:10 +0000]
fixed template cloning problem with inheritance