Lines Matching refs:tag

7  * fixed the spaceless filter so that it behaves like the spaceless tag
10 * allowed Traversable objects to be used in the "with" tag
57 * added the "deprecated" tag
116 * removed final tag on Twig_TokenParser_Include
155 * deprecated function/test/filter/tag overriding
181 * added the "with" tag
478 * added verbatim as an alias for the raw tag to avoid confusion with the raw filter
484 * added an include function (does the same as the include tag but in a more flexible way)
521 * made a speed optimization to macro calls when imported via the "import" tag
548 * fixed nested embed tag calls
574 …* simplified usage of the autoescape tag; the only (optional) argument is now the escaping strateg…
577 * added an embed tag
589 * added compilation checks to avoid misuses of the sandbox tag
627 * made a speed optimization to macro calls when imported via the "from" tag
658 * added a do tag
659 * added a flush tag
673 * fixed macros containing filter tag calls
717 * enhanced the exception when a tag remains unclosed
721 …* added a way to ignore a missing template when using the "include" tag ({% include "foo" ignore m…
727 * added an optimization for the set tag when used to capture a large chunk of static text
729 * removed the possibility to use the "extends" tag from a block
739 * fixed a parsing problem when a large chunk of text is enclosed in a comment tag
769 * fixed a parsing problem when a large chunk of text is enclosed in a raw tag
786 * added support for macro name in the endmacro tag
802 * the "for" tag does not support "joined by" anymore
804 …* the "parent" tag has been replaced by a "parent" function ({{ parent() }} instead of {% parent %…
805 …* the "display" tag has been replaced by a "block" function ({{ block('title') }} instead of {% di…
813 * added the "from" tag to import macros as functions
828 * removed the "without loop" attribute for the "for" tag (not needed anymore
866 * the include tag now merges the passed variables with the current context by default
874 * changed trans tag to accept any variable for the plural count
878 * added the spaceless tag
883 * fixed child templates (with an extend tag) that uses one or more imports
888 * fixed error handling for if tag when a syntax error occurs within a subparse process
889 * added a way to implement custom logic for resolving token parsers given a tag name
896 * removed the debug tag (should be done in an extension)
897 * fixed trans tag when no vars are used in plural form
907 * the trans tag plural count is now attached to the plural tag:
912 * fixed trans tag when used with the Escaper extension
914 * removed Twig_Template instances from the debug tag output
916 * fixed set tag when used with a capture
922 …* changed 'as' to '=' for the set tag ({% set title as "Title" %} must now be {% set title = "Titl…
923 * removed the sandboxed attribute of the include tag (use the new sandbox tag instead)
927 * added Twig_Template instance support to the include tag
930 …* fixed the for tag for large arrays (some loop variables are now only available for arrays and ob…
932 * fixed the filter tag which did not apply filtering to included files
935 * added a sandbox tag in the sandbox extension
955 * added a long-syntax for the set tag ({% set foo %}...{% endset %})
959 * added a more useful exception if an if tag is not closed properly
960 * added support for escaping strategy in the autoescape tag
985 * added the "without loop" option to the for tag (it disables the generation of the loop variable)
1008 * made it possible to insert newlines in tag and variable blocks
1039 * extended set tag to support expression as value ({% set foo as 'foo' ~ 'bar' %} )
1047 * added support for short block tag
1048 * changed the filter tag to allow chained filters
1050 * added set tag