Fabien Potencier [Tue, 28 Dec 2010 18:28:29 +0000]
removed 'joined by' support for the 'for' tag as a tag should not output something directly
Fabien Potencier [Thu, 30 Dec 2010 08:17:01 +0000]
added a note about autoescaping and concatenation in the doc
Fabien Potencier [Wed, 29 Dec 2010 09:17:06 +0000]
fixed scope for macros (macros can be imported in a block or outside of a block)
{% import "macros" as foo %}
{% from "macros" import foo, bar as bar %}
{% block foo %}
{% import "macros" as foofoo %}
{% from "macros" import foo as foofoo, bar as barbar %}
{{ foo('something') }}
{{ bar('something') }}
{{ foofoo('something') }}
{{ barbar('something') }}
{% endblock %}
Fabien Potencier [Tue, 28 Dec 2010 20:05:58 +0000]
fixed typo
Fabien Potencier [Tue, 28 Dec 2010 18:50:01 +0000]
fixed CS
Arnaud Le Blanc [Sun, 26 Dec 2010 11:47:49 +0000]
removed Template::callFunction
Arnaud Le Blanc [Sat, 25 Dec 2010 17:19:04 +0000]
updated doc for functions
Arnaud Le Blanc [Sat, 25 Dec 2010 15:08:12 +0000]
Added sandbox support for functions
Arnaud Le Blanc [Fri, 24 Dec 2010 16:21:26 +0000]
Added auto-escaper support for functions
Functions' output is escaped by default and functions can declare
themselves "safe" using the "is_safe" option.
Arnaud Le Blanc [Fri, 24 Dec 2010 16:21:10 +0000]
Handle functions like filters
Functions are not global variables anymore. They are resolved at
compile time, and Twig_Function objects are instanciated only when
compiling.
Arnaud Le Blanc [Thu, 23 Dec 2010 21:10:18 +0000]
Resolve imported functions at compile time
{% from %} is compiled as {% import %}, the imported module is placed in
a local variable, and calls to imported functions are compiled as calls
to module functions.
Arnaud Le Blanc [Thu, 23 Dec 2010 21:07:22 +0000]
Added nodes representing local variables
Allows to use local PHP variables as temporary variables in compiled
templates
Fabien Potencier [Thu, 30 Dec 2010 08:30:10 +0000]
renamed Template::getParentBlock() and getBlock() to diplayParentBlock() and displayBlock(), which is semantically more correct
nikic [Thu, 23 Dec 2010 10:26:09 +0000]
update Core Extension doc
nikic [Thu, 23 Dec 2010 10:14:45 +0000]
fix Exception documentation, remove use of Twig_SyntaxError
nikic [Wed, 22 Dec 2010 16:19:37 +0000]
disallow {% set %}{% endset %}
nikic [Wed, 22 Dec 2010 16:33:28 +0000]
rename $parser to $stream in parseArguments
Fabien Potencier [Wed, 22 Dec 2010 10:58:10 +0000]
added the possibility to look at more than just the very next token
Fabien Potencier [Wed, 22 Dec 2010 10:49:01 +0000]
readded TokenStream::look()
nikic [Mon, 20 Dec 2010 15:41:30 +0000]
TokenStream changes:
* remove unused look() and rewind()
* do not shift tokens, but increase a pointer
nikic [Mon, 20 Dec 2010 15:30:50 +0000]
improve lexer (causes changes in token stream, token and parser)
Fabien Potencier [Wed, 22 Dec 2010 10:33:29 +0000]
fixed typo
nikic [Mon, 20 Dec 2010 17:39:16 +0000]
remove $is_multitarget return in parseMultitargetExpression
Furthermore slightly reordered code thus removing redundant expect()
Fabien Potencier [Mon, 20 Dec 2010 18:05:45 +0000]
added some unit tests for previous commit
nikic [Mon, 20 Dec 2010 17:36:34 +0000]
One should only be able to assign to variables
nikic [Mon, 20 Dec 2010 17:34:49 +0000]
remove unused $lineno variable
nikic [Mon, 20 Dec 2010 17:32:42 +0000]
change while(1) to while(true)
nikic [Mon, 20 Dec 2010 17:31:31 +0000]
remove "(,)" hint from syntax error messages (the expect function will do that already)
nikic [Mon, 20 Dec 2010 17:27:01 +0000]
use the passed $token in isUnary and isBinary of ExpressionParser
nikic [Mon, 20 Dec 2010 16:05:28 +0000]
Grammer/Hash: array -> hash
Fabien Potencier [Mon, 20 Dec 2010 14:05:29 +0000]
tweaked error message
Fabien Potencier [Mon, 20 Dec 2010 13:48:07 +0000]
changed error messages to be more friendly
Fabien Potencier [Mon, 20 Dec 2010 07:45:45 +0000]
converted the cycle filter to a function
Fabien Potencier [Mon, 20 Dec 2010 07:40:02 +0000]
converted the constant filter to a function
Fabien Potencier [Mon, 20 Dec 2010 07:36:03 +0000]
converted the range filter to a function
Fabien Potencier [Sun, 19 Dec 2010 21:24:10 +0000]
forced functions to have fn_ as a prefix to avoid name clashes between functions and variables
Fabien Potencier [Sun, 19 Dec 2010 20:53:00 +0000]
fixed doc index
Fabien Potencier [Sun, 19 Dec 2010 20:52:54 +0000]
fixed typo
Fabien Potencier [Sun, 19 Dec 2010 18:56:14 +0000]
rewrote the advanced chapter and documented globals and functions
Fabien Potencier [Sun, 19 Dec 2010 13:01:21 +0000]
added global variables
Fabien Potencier [Sun, 19 Dec 2010 10:42:50 +0000]
made macro return their value instead of echoing directly
Fabien Potencier [Sun, 19 Dec 2010 10:26:38 +0000]
added from tag
Fabien Potencier [Sat, 18 Dec 2010 15:20:05 +0000]
added support for functions
Fabien Potencier [Sun, 19 Dec 2010 10:43:03 +0000]
fixed typo
Fabien Potencier [Sat, 18 Dec 2010 13:31:15 +0000]
made macros callable when sandbox mode is enabled
Fabien Potencier [Sat, 18 Dec 2010 13:20:48 +0000]
fixed markup
Fabien Potencier [Sat, 18 Dec 2010 13:19:40 +0000]
added a new recipe
Fabien Potencier [Sat, 18 Dec 2010 12:44:51 +0000]
fixed if tag documentation
Fabien Potencier [Sat, 18 Dec 2010 12:15:24 +0000]
added an exception when a macro uses a reserved name
Fabien Potencier [Sat, 18 Dec 2010 11:56:44 +0000]
changed default filter to use the empty test
Fabien Potencier [Sat, 18 Dec 2010 10:26:41 +0000]
fixed markup in doc
Fabien Potencier [Sat, 18 Dec 2010 10:26:16 +0000]
added the empty test
Fabien Potencier [Sat, 18 Dec 2010 10:21:46 +0000]
removed the 'items' filter, which has been deprecated a long time ago
nikic [Thu, 16 Dec 2010 22:30:30 +0000]
some improvements to for tag compiler
Fabien Potencier [Sat, 18 Dec 2010 07:04:21 +0000]
made a small performance optimization
Fabien Potencier [Sat, 18 Dec 2010 07:02:24 +0000]
removed n/a strings leftover
Fabien Potencier [Thu, 16 Dec 2010 08:48:40 +0000]
bumped version for dev
Fabien Potencier [Thu, 16 Dec 2010 08:47:09 +0000]
updated CHANGELOG and bumped version to 0.9.10
Fabien Potencier [Thu, 16 Dec 2010 08:44:10 +0000]
tweaked merge filter
Fabien Potencier [Thu, 16 Dec 2010 08:07:55 +0000]
added documentation for the merge filter
Fabien Potencier [Thu, 16 Dec 2010 07:10:41 +0000]
added the merge filter
Fabien Potencier [Wed, 15 Dec 2010 12:32:39 +0000]
removed the possibility to inject a lexer/parser/compiler in the environment constructor
Fabien Potencier [Wed, 15 Dec 2010 12:31:15 +0000]
simplified code
Fabien Potencier [Wed, 15 Dec 2010 11:25:16 +0000]
converted documentation to rst
Fabien Potencier [Wed, 15 Dec 2010 07:28:13 +0000]
moved the i18n extension to the Twig Extensions repository
nikic [Tue, 14 Dec 2010 17:49:35 +0000]
improve filesystem loader cache and use '/' instead of DIRECTORY_SEPARATOR
Fabien Potencier [Tue, 14 Dec 2010 16:52:54 +0000]
simplified code
Fabien Potencier [Tue, 14 Dec 2010 16:51:44 +0000]
simplified code
Fabien Potencier [Tue, 14 Dec 2010 16:30:45 +0000]
added an optimizations options to Twig_Environment
Fabien Potencier [Tue, 14 Dec 2010 16:24:03 +0000]
made some tweak to the security check for the filesystem loader
nikic [Tue, 14 Dec 2010 15:46:28 +0000]
allow null filenames
Fabien Potencier [Tue, 14 Dec 2010 15:38:11 +0000]
removed 'is_escaper' option for filters (a left over from the previous version)
Fabien Potencier [Tue, 14 Dec 2010 15:23:56 +0000]
removed support for foo.% which does not make sense
Fabien Potencier [Tue, 14 Dec 2010 14:19:37 +0000]
fixed usage of operators as method names (like is, in, and not)
Fabien Potencier [Tue, 14 Dec 2010 14:10:35 +0000]
added an optimizer to remove the raw filter
Fabien Potencier [Tue, 14 Dec 2010 14:09:12 +0000]
changed the order of execution for node visitors
Fabien Potencier [Tue, 14 Dec 2010 13:36:45 +0000]
fixed security check in filesystem loader
Fabien Potencier [Tue, 14 Dec 2010 13:28:47 +0000]
added some unit tests for the filesystem loader
Fabien Potencier [Tue, 14 Dec 2010 13:27:28 +0000]
fixed default() filter behavior when used with strict_variables set to on
Fabien Potencier [Tue, 14 Dec 2010 11:54:32 +0000]
added an exception when trying to outdent too much
Fabien Potencier [Tue, 14 Dec 2010 10:50:47 +0000]
tweaked last commit
Mark Story [Sun, 12 Dec 2010 02:53:08 +0000]
Adding Twig_Environment::clearCacheFiles() to clear cache files that twig makes.
Refactoring test cases in previous commit. Adding more tests for clearing cache files.
Fixes #192
Mark Story [Sun, 12 Dec 2010 02:42:48 +0000]
Adding a test case for caching template class to the filesystem.
Fabien Potencier [Tue, 14 Dec 2010 10:36:59 +0000]
fixed filesystem loader compatibility with PHAR files
Fabien Potencier [Tue, 14 Dec 2010 08:47:56 +0000]
enhanced error messages when an unexpected token is parsed in an expression
Fabien Potencier [Tue, 14 Dec 2010 08:16:13 +0000]
tweaked doc
Fabien Potencier [Tue, 14 Dec 2010 08:08:17 +0000]
fixed filename not being added to syntax error messages
Fabien Potencier [Tue, 14 Dec 2010 07:53:48 +0000]
changed array/hashes notation
Fabien Potencier [Tue, 14 Dec 2010 07:18:33 +0000]
fixed typo
Fabien Potencier [Tue, 14 Dec 2010 06:54:51 +0000]
fixed phpdoc, tweaked doc
Fabien Potencier [Mon, 13 Dec 2010 17:40:51 +0000]
added a note about how to turn off autoescaping
Fabien Potencier [Mon, 13 Dec 2010 14:59:12 +0000]
removed the 'without loop' attribute for the 'for' tag
Fabien Potencier [Mon, 13 Dec 2010 14:46:09 +0000]
enhanced the for-loop optimizer pass 2 (patch from nikic)
Fabien Potencier [Mon, 13 Dec 2010 14:20:03 +0000]
enhanced the for-loop optimizer (patch from nikic)
Fabien Potencier [Mon, 13 Dec 2010 12:50:59 +0000]
removed usage of array_replace
Fabien Potencier [Sun, 12 Dec 2010 13:35:15 +0000]
reverted inadvertently committed code
Fabien Potencier [Sun, 12 Dec 2010 13:34:07 +0000]
added the autoescape option to enable/disable autoescaping
nikic [Sat, 11 Dec 2010 22:24:38 +0000]
fix automatic escaping documentation
nikic [Sat, 11 Dec 2010 22:14:35 +0000]
fix comment in Optimizer NodeVisitor
Fabien Potencier [Fri, 10 Dec 2010 06:13:32 +0000]
removed the newline after a comment (closes #195)