Fabien Potencier [Sun, 28 Nov 2010 12:53:37 +0000]
added Twig_Test_Method
Fabien Potencier [Sun, 28 Nov 2010 07:41:40 +0000]
bumped version for dev
Fabien Potencier [Sun, 28 Nov 2010 07:38:18 +0000]
updated CHANGELOG and bumped version to 0.9.9
Arnaud Le Blanc [Sat, 27 Nov 2010 21:01:12 +0000]
updated doc for the pre_escape filter option
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
Fabien Potencier [Sun, 28 Nov 2010 07:13:15 +0000]
finished the configurability of operators
Fabien Potencier [Sat, 27 Nov 2010 10:34:36 +0000]
added file and line to Twig_Error_Runtime exceptions thrown from Twig_Template
Fabien Potencier [Sat, 27 Nov 2010 10:15:27 +0000]
made error message for strict variables more useful
Fabien Potencier [Sat, 27 Nov 2010 09:10:04 +0000]
changed trans tag to accept any variable for the plural count
Fabien Potencier [Sat, 27 Nov 2010 08:40:12 +0000]
updated CHANGELOG
Fabien Potencier [Fri, 26 Nov 2010 21:17:32 +0000]
updated CHANGELOG
Fabien Potencier [Fri, 26 Nov 2010 21:15:05 +0000]
fixed __toString() calls when sandbox is enabled
Fabien Potencier [Fri, 26 Nov 2010 20:13:26 +0000]
added more information to an exception to ease debugging
Fabien Potencier [Fri, 26 Nov 2010 19:57:53 +0000]
made operators configurable
Fabien Potencier [Fri, 26 Nov 2010 18:14:17 +0000]
added some example usage for the defined test in the doc
Fabien Potencier [Fri, 26 Nov 2010 18:11:59 +0000]
fixed a warning and added some unit tests
Jordi Boggiano [Fri, 26 Nov 2010 17:58:49 +0000]
Allow is defined test on complex variables
Fabien Potencier [Fri, 26 Nov 2010 17:58:54 +0000]
fixed several bugs in SimpleTokenParser (nested optional grammar, and support for , as a separator)
Fabien Potencier [Fri, 26 Nov 2010 16:21:29 +0000]
fixed typo
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.
stloyd [Wed, 24 Nov 2010 20:29:49 +0000]
replace all is_null($value) with null === $value
Fabien Potencier [Thu, 25 Nov 2010 16:11:24 +0000]
added some missing tests
Fabien Potencier [Wed, 24 Nov 2010 08:47:51 +0000]
added a defined test (strict_variables is now useable)
Fabien Potencier [Sat, 20 Nov 2010 13:43:35 +0000]
added _charset as a special variable that references the current charset
Arnaud Le Blanc [Wed, 17 Nov 2010 20:47:21 +0000]
handle spl_object_hash collisions
Fabien Potencier [Fri, 19 Nov 2010 12:20:22 +0000]
added the spaceless tag
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.
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
Fabien Potencier [Wed, 17 Nov 2010 10:35:26 +0000]
removed usage of SplObjectStorage as PHP < 5.3 does not support ArrayAccess
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())
Arnaud Le Blanc [Sun, 7 Nov 2010 23:07:24 +0000]
fix storage of object properties in analysis
Fabien Potencier [Sun, 7 Nov 2010 21:20:58 +0000]
updated CHANGELOG
Fabien Potencier [Sun, 7 Nov 2010 21:18:41 +0000]
made a clarification to the doc
Fabien Potencier [Sun, 7 Nov 2010 21:18:31 +0000]
moved all exceptions to Twig_Error_*
Fabien Potencier [Sun, 7 Nov 2010 20:45:11 +0000]
updated CHANGELOG
Fabien Potencier [Sun, 7 Nov 2010 20:44:05 +0000]
fixed unary expressions
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
ornicar [Sun, 7 Nov 2010 19:26:32 +0000]
Fix replace filter name in documentation
Arnaud Le Blanc [Sun, 7 Nov 2010 17:23:31 +0000]
update docs for automatic escaping
Fabien Potencier [Sun, 7 Nov 2010 13:37:08 +0000]
added a note about using rewind() after look()
Fabien Potencier [Sun, 7 Nov 2010 13:31:47 +0000]
fixed child templates (with an extend tag) that uses one or more imports
Fabien Potencier [Sun, 7 Nov 2010 13:21:10 +0000]
fixed documentation and added infix notation for in (already supported for is)
Fabien Potencier [Sun, 7 Nov 2010 09:04:07 +0000]
updated CHANGELOG
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
Fabien Potencier [Sun, 7 Nov 2010 08:26:25 +0000]
removed @version phpdoc attribute
Fabien Potencier [Sun, 7 Nov 2010 08:17:24 +0000]
fixed CS
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)
Arnaud Le Blanc [Sat, 6 Nov 2010 02:36:14 +0000]
support for specifying the escaping type of a filter
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
Fabien Potencier [Mon, 1 Nov 2010 03:24:32 +0000]
made the include tag more flexible
Fabien Potencier [Tue, 26 Oct 2010 17:49:31 +0000]
fixed a unit test so that it works for more PHP versions
Fabien Potencier [Sat, 23 Oct 2010 08:38:18 +0000]
fixed typo
Jordi Boggiano [Thu, 21 Oct 2010 18:52:26 +0000]
Optimize/uniformalize the multibyte filters
Jordi Boggiano [Thu, 21 Oct 2010 18:17:56 +0000]
Removed unnecessary twig_constant_filter function
Fabien Potencier [Tue, 19 Oct 2010 11:19:52 +0000]
fixed typos in the docs
Fabien Potencier [Mon, 11 Oct 2010 10:27:59 +0000]
fixed typo in the doc
Fabien Potencier [Wed, 6 Oct 2010 13:11:15 +0000]
updated doc
Fabien Potencier [Wed, 6 Oct 2010 13:10:20 +0000]
renamed urlencode to url_encode
Jordi Boggiano [Tue, 5 Oct 2010 21:23:45 +0000]
Added json_encode filter
Matt Agar [Mon, 4 Oct 2010 22:58:35 +0000]
Fixed PHP 5.3 namespace dependency (Issues a warning in PHP 5.2).
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 ;)
Fabien Potencier [Fri, 1 Oct 2010 18:34:31 +0000]
fixed typo
Fabien Potencier [Fri, 1 Oct 2010 18:28:02 +0000]
added a note to get an extension reference
Fabien Potencier [Fri, 1 Oct 2010 18:13:25 +0000]
fixed typo
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.
Fabien Potencier [Fri, 1 Oct 2010 12:11:58 +0000]
changed the implementation of template inheritance
Fabien Potencier [Fri, 1 Oct 2010 10:08:57 +0000]
removed obsolete code
Fabien Potencier [Fri, 1 Oct 2010 10:08:46 +0000]
added a replace filter
Fabien Potencier [Thu, 30 Sep 2010 08:10:34 +0000]
added the environment as an argument to initRuntime
Fabien Potencier [Thu, 30 Sep 2010 08:10:16 +0000]
added Twig_Template::hasBlock() method
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)
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.
Arnaud Le Blanc [Tue, 24 Aug 2010 06:22:05 +0000]
fixed js escaper to be stricter, whilelist-based js escaper (closes #114)
Fabien Potencier [Sun, 12 Sep 2010 06:01:34 +0000]
made a small update to doc and rename a test file
Fabien Potencier [Sun, 12 Sep 2010 05:59:41 +0000]
added a constant filter (refs #120)
Mark Story [Sat, 11 Sep 2010 20:41:50 +0000]
added the constant() test (closes #120)
Mark Story [Tue, 24 Aug 2010 03:02:57 +0000]
fixed objects with __toString() not being autoescaped (fixes #111)
Fabien Potencier [Mon, 6 Sep 2010 06:56:03 +0000]
fixed filesystem loader should not view directory as a valid template (closes #116)
Hugo Hamon [Sun, 22 Aug 2010 14:34:59 +0000]
[doc] fixed typos in several chapters
fivestar [Tue, 31 Aug 2010 02:32:37 +0000]
fixed SimpleTokenParser accepts comma(",") in grammar
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)
Fabien Potencier [Tue, 17 Aug 2010 05:49:57 +0000]
fixed is operator (lexer did not tokenize 'foo.isactive' properly -- closes #102)
Johnson Page [Mon, 16 Aug 2010 02:17:36 +0000]
Fixed 'is' operator in CHANGELOG
Mark Story [Mon, 16 Aug 2010 03:49:29 +0000]
Fixing a few small typos/grammatical errors.
Fabien Potencier [Sat, 14 Aug 2010 11:50:37 +0000]
simplified code
Fabien Potencier [Sat, 14 Aug 2010 07:05:04 +0000]
updated doc (closes #100)
Fabien Potencier [Fri, 13 Aug 2010 17:17:13 +0000]
added version information in the doc
Fabien Potencier [Fri, 13 Aug 2010 17:15:57 +0000]
added a trans filter (closes #85)
Fabien Potencier [Fri, 13 Aug 2010 16:37:33 +0000]
fixed unit tests
Fabien Potencier [Fri, 13 Aug 2010 14:15:33 +0000]
added 'test' feature via the 'is' operator (closes #88)
Fabien Potencier [Fri, 13 Aug 2010 06:20:22 +0000]
removed obsolete code
Fabien Potencier [Fri, 13 Aug 2010 06:13:54 +0000]
removed the debug tag (should be done in an extension)
Fabien Potencier [Thu, 12 Aug 2010 20:22:56 +0000]
fixed trans tag when no vars are used in plural form (closes #98)
Fabien Potencier [Thu, 12 Aug 2010 19:56:30 +0000]
fixed race condition when writing template cache on disk (closes #97)
Fabien Potencier [Mon, 26 Jul 2010 08:53:43 +0000]
added a note about the self variable before 0.9.9
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
Mark Story [Sat, 24 Jul 2010 03:38:26 +0000]
Updating documentation for addExtension()
Fabien Potencier [Mon, 12 Jul 2010 16:28:53 +0000]
added a new shortcut in the SimpleTokenParser
Fabien Potencier [Mon, 12 Jul 2010 15:48:10 +0000]
fixed template cloning problem with inheritance
Fabien Potencier [Tue, 6 Jul 2010 14:11:56 +0000]
fixed typos