Fabien Potencier [Fri, 6 Dec 2013 15:28:39 +0000]
bug #1288 added an error message when trying to import an undefined block from a trait (fabpot)
This PR was merged into the master branch.
Discussion
----------
added an error message when trying to import an undefined block from a trait
Commits
-------
a2c6db7 added an error message when trying to import an undefined block from a trait
Fabien Potencier [Fri, 6 Dec 2013 10:06:49 +0000]
added an error message when trying to import an undefined block from a trait
Fabien Potencier [Fri, 6 Dec 2013 08:13:22 +0000]
bumped version to 1.15.1-DEV
Fabien Potencier [Fri, 6 Dec 2013 07:47:10 +0000]
prepared the 1.15.0 release
Fabien Potencier [Tue, 3 Dec 2013 14:16:16 +0000]
fixed markup
Fabien Potencier [Tue, 3 Dec 2013 14:08:30 +0000]
feature #1286 Adding ignoreStrictCheck option for call_user_func_array, if throwing exception (fabpot)
This PR was merged into the master branch.
Discussion
----------
Adding ignoreStrictCheck option for call_user_func_array, if throwing exception
Same as #1236 with added unit tests and C extension support (to come).
"I experienced the issue when using FuelPHP's ORM with EAV containers. When I tried to reference a property that was not defined I expected to get null, but instead the whole application stopped because an exception was thrown in the ORM, that no such function is present.
I couldn't find other possible exception that could be thrown when this function is called, so I assumed it's safe to take the ignoreStrictCheck into consideration here."
Commits
-------
1abf5d9 [ext] Mirroring PHP change for call_user_func_array, see #1286
9ab290b added tests for exceptions thrown in __call()
c711d37 Adding ignoreStrictCheck option for call_user_func_array, if throwing exception
Tugdual Saunier [Tue, 3 Dec 2013 13:40:20 +0000]
[ext] Mirroring PHP change for call_user_func_array, see #1286
Fabien Potencier [Tue, 3 Dec 2013 12:58:35 +0000]
added tests for exceptions thrown in __call()
Fabien Potencier [Tue, 3 Dec 2013 13:05:12 +0000]
feature #1277 Added min and max function (lyrixx)
This PR was merged into the master branch.
Discussion
----------
Added min and max function
usefull for pagination
Commits
-------
6aa06de Added min and max function
Barta Tamás [Wed, 16 Oct 2013 20:49:43 +0000]
Adding ignoreStrictCheck option for call_user_func_array, if throwing exception
Grégoire Pineau [Sat, 23 Nov 2013 04:00:49 +0000]
Added min and max function
Fabien Potencier [Tue, 3 Dec 2013 12:41:51 +0000]
fixed typo
Fabien Potencier [Tue, 3 Dec 2013 12:41:40 +0000]
minor #1285 Corrected description of the "//" operator (ureimers)
This PR was merged into the master branch.
Discussion
----------
Corrected description of the "//" operator
The operator was previously described to truncate the the value when it in fact floors the result of the division (which can be seen in https://github.com/fabpot/Twig/blob/master/lib/Twig/Node/Expression/Binary/FloorDiv.php#L20).
By the old description one would think that ``{{ -20 // 7 }}`` would yield -2 (as in ``(int)(-20/7)``) when it actually returns -3 (as in ``floor(-20/7)``). Floor is not truncate (cast to int).
Commits
-------
a360bc0 Corrected description of the "//" operator
Fabien Potencier [Tue, 3 Dec 2013 12:38:38 +0000]
fixed phpdoc
Fabien Potencier [Tue, 3 Dec 2013 12:29:21 +0000]
feature #1261 added TokenStream::nextIf() (fabpot)
This PR was merged into the master branch.
Discussion
----------
added TokenStream::nextIf()
The introduction of `nextIf()` simplified a lot of code.
Commits
-------
0ed7898 added TokenStream::nextIf()
Fabien Potencier [Sat, 9 Nov 2013 18:15:01 +0000]
added TokenStream::nextIf()
ureimers [Tue, 3 Dec 2013 11:55:12 +0000]
Corrected description of the "//" operator
The operator was previously described to truncate the the value when it in fact floors the result of the division (which can be seen in https://github.com/fabpot/Twig/blob/master/lib/Twig/Node/Expression/Binary/FloorDiv.php#L20).
By the old description one would think that ``{{ -20 // 7 }}`` would yield -2 (as in ``(int)(-20/7)``) when it actually returns -3 (as in ``floor(-20/7)``). Floor is not truncate (cast to int).
Fabien Potencier [Sun, 24 Nov 2013 18:36:20 +0000]
minor #1280 [Docs] Fix typos (bicpi)
This PR was merged into the master branch.
Discussion
----------
[Docs] Fix typos
Commits
-------
6ea9d8f [Docs] Fix typos
Philipp Rieber [Sun, 24 Nov 2013 05:39:33 +0000]
[Docs] Fix typos
Fabien Potencier [Sat, 23 Nov 2013 21:24:07 +0000]
feature #1255 added the round filter (fabpot)
This PR was merged into the master branch.
Discussion
----------
added the round filter
fixes #1238
Commits
-------
ff4a7d2 added the round filter
Fabien Potencier [Sat, 23 Nov 2013 21:23:01 +0000]
minor #1279 [Docs] Some minor fixes: Typos, Notations, Formatting (bicpi)
This PR was merged into the master branch.
Discussion
----------
[Docs] Some minor fixes: Typos, Notations, Formatting
Fixes for:
* Notations: html > HTML; javascript > JavaScript; composer > Composer
* Typos
* Wrong function names: ``escaper`` > ``escape``; ``include`` > ``source`` (in new chapter about ``source``)
* Formatting issues, e.g. remove RST from code blocks, it's not evaluated
* Wording where code sample outputs something: returns > outputs
* ``true`` parameter for ``autoescape`` - not needed any more
Commits
-------
a21df95 [Docs] Some minor fixes: Typos, Notations
Philipp Rieber [Sat, 23 Nov 2013 14:12:47 +0000]
[Docs] Some minor fixes: Typos, Notations
Fabien Potencier [Thu, 14 Nov 2013 08:08:49 +0000]
fixed optimizer max value
Fabien Potencier [Wed, 13 Nov 2013 08:11:09 +0000]
minor #1270 Use string instead of large integer (ptarjan)
This PR was merged into the master branch.
Discussion
----------
Use string instead of large integer
HHVM differs from php-src on large integer parsing (php-src converts
them to floats, HHVM truncates them but leaves them as integers). The
point of this test is to make sure Twig parses it correctly, not the
underlying PHP execution engine.
Commits
-------
d401717 Use string instead of large integer
ptarjan [Wed, 13 Nov 2013 07:38:46 +0000]
Use string instead of large integer
HHVM differs from php-src on large integer parsing (php-src converts
them to floats, HHVM truncates them but leaves them as integers). The
point of this test is to make sure Twig parses it correctly, not the
underlying PHP execution engine.
Fabien Potencier [Tue, 12 Nov 2013 17:59:00 +0000]
minor #1269 various cleanups (cordoval)
This PR was squashed before being merged into the master branch (closes #1269).
Discussion
----------
various cleanups
fix bool -> Boolean for consistency in other parts of twig's code removing
assignment to n as it is never used fix typo and docblock for consistency
remove line break not needed for consistency fix array docblock for
consistency
Commits
-------
cb651e8 various cleanups
Luis Cordova [Tue, 12 Nov 2013 04:16:28 +0000]
various cleanups
Fabien Potencier [Thu, 31 Oct 2013 07:49:30 +0000]
added the round filter
Fabien Potencier [Mon, 11 Nov 2013 19:04:42 +0000]
moved README to rst
Fabien Potencier [Wed, 6 Nov 2013 10:15:23 +0000]
minor #1260 fix typo 'in' operator (thewholelifetolearn)
This PR was merged into the master branch.
Discussion
----------
fix typo 'in' operator
Fixed a small typo in the negative 'in' test operator
Commits
-------
f9013d5 fix typo 'in' operator
Ralph KEMPS [Wed, 6 Nov 2013 09:39:15 +0000]
fix typo 'in' operator
Fixed a small typo in the negative 'in' test operator
Fabien Potencier [Sun, 3 Nov 2013 19:14:49 +0000]
minor #1259 Fixed ZendServer specific DLL Path in install doc (tucksaun)
This PR was merged into the master branch.
Discussion
----------
Fixed ZendServer specific DLL Path in install doc
It seems the \ need to be escaped in the tip section.
(see the file on github or the Twig website)
Commits
-------
2b102e3 Fixed ZendServer specific DLL Path in install doc
Tugdual Saunier [Sun, 3 Nov 2013 19:10:18 +0000]
Fixed ZendServer specific DLL Path in install doc
It seems the \ need to be escaped in the tip section.
(see the file on github or the Twig website)
Fabien Potencier [Sun, 3 Nov 2013 09:12:32 +0000]
updated CHANGELOG
Fabien Potencier [Sun, 3 Nov 2013 09:11:57 +0000]
bug #1258 Fix twig_first and twig_last filters for UTF8 multibyte strings (chEbba)
This PR was squashed before being merged into the master branch (closes #1258).
Discussion
----------
Fix twig_first and twig_last filters for UTF8 multibyte strings
After string is sliced we already have the right result with a first/last letter for UTF8 string.
Commits
-------
6003ae4 Fix twig_first and twig_last filters for UTF8 multibyte strings
Kirill chEbba Chebunin [Thu, 31 Oct 2013 16:50:58 +0000]
Fix twig_first and twig_last filters for UTF8 multibyte strings
Fabien Potencier [Sat, 2 Nov 2013 20:45:37 +0000]
feature #1257 added a source function to include the content of a template without rendering it (fabpot)
This PR was merged into the master branch.
Discussion
----------
added a source function to include the content of a template without rendering it
Replaces #1230.
There is one question about the implementation: Should the content be considered safe (which is the current implementation)?
Commits
-------
dff7d2c added a source function to include the content of a template without rendering it
Fabien Potencier [Thu, 31 Oct 2013 12:34:32 +0000]
added a source function to include the content of a template without rendering it
Fabien Potencier [Thu, 31 Oct 2013 12:37:55 +0000]
bumped version to 1.15
Fabien Potencier [Thu, 31 Oct 2013 12:17:35 +0000]
Revert "merged branch Cottser/master (PR #1071)"
This reverts commit
2f5c9899a4088fce3bb6325d96232cd1978161e4, reversing
changes made to
4e7094f6a3831dc86b4963d805c4567f4076fce3.
Conflicts:
lib/Twig/Environment.php
Fabien Potencier [Thu, 31 Oct 2013 11:37:11 +0000]
bug #1256 Fixed C extension sandbox behavior (tucksaun)
This PR was squashed before being merged into the master branch (closes #1256).
Discussion
----------
Fixed C extension sandbox behavior
fixes #1254
Commits
-------
40bba0e Fixed C extension sandbox behavior
Tugdual Saunier [Thu, 31 Oct 2013 11:13:00 +0000]
Fixed C extension sandbox behavior
Fabien Potencier [Wed, 30 Oct 2013 08:31:01 +0000]
bumped version to 1.14.3-DEV
Fabien Potencier [Wed, 30 Oct 2013 08:20:53 +0000]
prepared the 1.14.2 release
Fabien Potencier [Mon, 28 Oct 2013 13:44:04 +0000]
added missing @throws
Fabien Potencier [Mon, 28 Oct 2013 13:36:23 +0000]
bug #1249 fixed error filename/line when an error occurs in an included file (fabpot)
This PR was merged into the master branch.
Discussion
----------
fixed error filename/line when an error occurs in an included file
fixed #1141
Commits
-------
ba0bf63 refactored some tests
1cdc913 fixed error filename/line when an error occurs in an included file
de985a8 failing test
Fabien Potencier [Mon, 28 Oct 2013 10:44:48 +0000]
feature #1208 allowed tests to be made of 1 or 2 words (fabpot)
This PR was merged into the master branch.
Discussion
----------
allowed tests to be made of 1 or 2 words
Commits
-------
52c952c allowed tests to be made of 1 or 2 words
Fabien Potencier [Mon, 28 Oct 2013 10:43:01 +0000]
bug #1248 allowed operators that contain whitespaces to have more than one whitespace (fabpot)
This PR was merged into the master branch.
Discussion
----------
allowed operators that contain whitespaces to have more than one whitespace
Commits
-------
724dc61 allowed operators that contain whitespaces to have more than one whitespace
Fabien Potencier [Sun, 27 Oct 2013 18:18:00 +0000]
refactored some tests
Fabien Potencier [Sun, 27 Oct 2013 13:47:59 +0000]
fixed error filename/line when an error occurs in an included file
To be able to cover all cases, we need to catch the exception when we
know the execution context (the block being rendered). The only
possibility is to actually try/catch exceptions in the displayBlock()
method directly.
Kris Wallsmith [Thu, 18 Jul 2013 00:25:28 +0000]
failing test
the error filename is incorrect when an exception is thrown from an
included file
Fabien Potencier [Sat, 28 Sep 2013 17:28:24 +0000]
allowed tests to be made of 1 or 2 words
Fabien Potencier [Sun, 27 Oct 2013 09:56:11 +0000]
allowed operators that contain whitespaces to have more than one whitespace
Fabien Potencier [Sat, 26 Oct 2013 07:59:29 +0000]
removed whitespaces
Fabien Potencier [Sat, 26 Oct 2013 06:34:09 +0000]
removed whitespaces in docs
Fabien Potencier [Sat, 26 Oct 2013 06:29:21 +0000]
fixed CS in docs
Fabien Potencier [Sat, 26 Oct 2013 06:16:32 +0000]
minor #1247 Fixed minor typo "base" into "based" line 67 (annesosensio)
This PR was merged into the master branch.
Discussion
----------
Fixed minor typo "base" into "based" line 67
Commits
-------
08282d3 Fixed minor typo "base" into "based" line 67
annesosensio [Fri, 25 Oct 2013 13:23:13 +0000]
Fixed minor typo "base" into "based" line 67
Fabien Potencier [Thu, 17 Oct 2013 08:34:06 +0000]
minor #1237 missing closing parenthesis (karlhorky)
This PR was merged into the master branch.
Discussion
----------
missing closing parenthesis
Commits
-------
9b73224 missing closing parenthesis
Karl Horky [Thu, 17 Oct 2013 08:00:32 +0000]
missing closing parenthesis
Fabien Potencier [Tue, 15 Oct 2013 19:39:15 +0000]
bumped version to 1.14.2-DEV
Fabien Potencier [Tue, 15 Oct 2013 19:17:38 +0000]
prepared the 1.14.1 release
Fabien Potencier [Tue, 15 Oct 2013 16:44:00 +0000]
feature #1235 made it possible to use named operators as variables (fabpot)
This PR was merged into the master branch.
Discussion
----------
made it possible to use named operators as variables
Commits
-------
8d805aa made it possible to use named operators as variables
Fabien Potencier [Tue, 15 Oct 2013 16:27:17 +0000]
made it possible to use named operators as variables
Fabien Potencier [Tue, 15 Oct 2013 16:09:36 +0000]
fixed the possibility to have a variable named 'matches' (closes #1227)
Fabien Potencier [Tue, 15 Oct 2013 15:54:43 +0000]
minor #1231 fix phpdoc for environment, lexer and parser (Tobion)
This PR was squashed before being merged into the master branch (closes #1231).
Discussion
----------
fix phpdoc for environment, lexer and parser
First commit fixes several phpdocs <del>and also an instanceof check</del>.
The second commit changes an exception from Runtime to Syntax because it doesn't make sense to throw runtime exception during compilation. It also makes it consistent with all the rest (lexer, parser, compiler classes).
Commits
-------
cc5f3c4 fix phpdoc for environment, lexer and parser
Tobias Schultze [Wed, 9 Oct 2013 22:52:04 +0000]
fix phpdoc for environment, lexer and parser
Fabien Potencier [Tue, 15 Oct 2013 15:51:49 +0000]
made a cosmetic change (closes #1226)
Fabien Potencier [Tue, 15 Oct 2013 15:50:35 +0000]
updated CHANGELOG
Fabien Potencier [Tue, 15 Oct 2013 15:50:14 +0000]
feature #1234 Added support DateTimeInterface (PHP 5.5) if available (hidenorigoto)
This PR was squashed before being merged into the master branch (closes #1234).
Discussion
----------
Added support DateTimeInterface (PHP 5.5) if available
| Q | A
| ------------- | ---
| Bug fix? | no
| New feature? | yes
| BC breaks? | no
| Deprecations? | no
| Tests pass? | yes
| Fixed tickets |
| License | new BSD
| Doc PR |
Commits
-------
ca61fac Added support DateTimeInterface (PHP 5.5) if available
hidenorigoto [Tue, 15 Oct 2013 09:17:03 +0000]
Added support DateTimeInterface (PHP 5.5) if available
Fabien Potencier [Mon, 7 Oct 2013 10:00:50 +0000]
git push #1225 Fixed minor typo (deguif)
This PR was merged into the master branch.
Discussion
----------
Fixed minor typo
Commits
-------
c05c2e1 Fixed minor typo
deguif [Mon, 7 Oct 2013 09:50:40 +0000]
Fixed minor typo
Fabien Potencier [Fri, 4 Oct 2013 14:13:23 +0000]
bug #1222 Do not repeat dirname function execution in writing cache files (glutamatt)
This PR was merged into the master branch.
Discussion
----------
Do not repeat dirname function execution in writing cache files
Commits
-------
a9870f4 Do not repeat dirname function execution in writing cache files
glutamatt [Fri, 4 Oct 2013 13:40:25 +0000]
Do not repeat dirname function execution in writing cache files
Fabien Potencier [Fri, 4 Oct 2013 05:55:42 +0000]
minor #1220 Update grammar of internals.rst (steveoliver)
This PR was merged into the master branch.
Discussion
----------
Update grammar of internals.rst
Fabien,
Here are some changes that I think help the Internals docs page read easier.
Commits
-------
6c80601 Update grammar of internals.rst
Steve Oliver [Fri, 4 Oct 2013 05:15:48 +0000]
Update grammar of internals.rst
Some changes that I think help the docs read easier.
Fabien Potencier [Thu, 3 Oct 2013 07:19:21 +0000]
bumped version to 1.14.1-DEV
Fabien Potencier [Thu, 3 Oct 2013 06:41:13 +0000]
prepared the 1.14.0 release
Fabien Potencier [Thu, 3 Oct 2013 06:23:32 +0000]
feature #1215 Macros changes removal (fabpot)
This PR was merged into the master branch.
Discussion
----------
Macros changes removal
This PR reverts the changes made to macros in 1.14.
The initial PR looked massive and I was not comfortable with the changes, but I merged it anyways. But the latest PR about fixes some bugs in the implementation -- and adding some more changes (#1213) really scares me.
So, instead of continuing doing big changes, I prefer to revert everything for now, release 1.14 and give more time for these changes to mature and eventually be merged again.
Commits
-------
74586e9 Revert "merged branch hason/macros (PR #1139)"
bf40fa3 Revert "updated CHANGELOG"
c3e05f3 Revert "added an exception when a macro re-uses the same argument name twice"
524e406 Revert "renamed an internal variable"
60b575f Revert "fixed some unit tests"
Fabien Potencier [Wed, 2 Oct 2013 19:50:59 +0000]
Revert "merged branch hason/macros (PR #1139)"
This reverts commit
03926034c452bbf7f3bcc14dd167acf39bb33818, reversing
changes made to
730aa25bedeee922c361640f6e4c01e4e6bac998.
Conflicts:
CHANGELOG
doc/tags/macro.rst
doc/templates.rst
lib/Twig/ExpressionParser.php
Fabien Potencier [Wed, 2 Oct 2013 19:48:06 +0000]
Revert "updated CHANGELOG"
This reverts commit
7ffca6c735bec4d37186ed10162134c978160f17.
Conflicts:
CHANGELOG
Fabien Potencier [Wed, 2 Oct 2013 19:46:45 +0000]
Revert "added an exception when a macro re-uses the same argument name twice"
This reverts commit
b7a54b01017becf7f3b90beadc71536b58e2299a.
Fabien Potencier [Wed, 2 Oct 2013 19:46:38 +0000]
Revert "renamed an internal variable"
This reverts commit
a176fadc042bbfa09b0f304bef9ec89850f6e06f.
Fabien Potencier [Wed, 2 Oct 2013 19:46:31 +0000]
Revert "fixed some unit tests"
This reverts commit
120518d80336efdb1641f9e61f5c2b46d13988de.
Fabien Potencier [Wed, 2 Oct 2013 19:38:09 +0000]
feature #1209 added the starts with, ends with, and matches operators (fabpot)
This PR was merged into the master branch.
Discussion
----------
added the starts with, ends with, and matches operators
Adds three new operators:
* `ends with`
* `starts with`
* `matches`
I've not added the `contains` operator as it would be equivalent with the existing `in` one.
TODO:
* [x] add docs
* [x] fix on PHP 5.2.
Commits
-------
b66181d added the starts with, ends with, and matches operators
Fabien Potencier [Sun, 29 Sep 2013 07:40:36 +0000]
added the starts with, ends with, and matches operators
Fabien Potencier [Wed, 2 Oct 2013 05:57:25 +0000]
minor #1203 Change wording of indentation coding standards (mdavis1982)
This PR was merged into the master branch.
Discussion
----------
Change wording of indentation coding standards
The documentation says to use indentation consistent with the main language of the **File**. But in a Twig template, that language is going to be Twig. This PR changes the wording to indicate that the indentation rules inside tags should be consistent with the main language of the **Project** Twig is being used within.
```
| Q | A
| ------------- | ---
| Doc fix? | yes
| New docs? | no
| Applies to | all
| Fixed tickets | none
```
Commits
-------
435e3b2 Update wording of the indentation coding standards documentation
09b58e1 Change wording of indentation coding standards
Fabien Potencier [Tue, 1 Oct 2013 14:20:58 +0000]
minor #1210 [Doc] corrects number_format argument namming (nicolas-bastien)
This PR was merged into the master branch.
Discussion
----------
[Doc] corrects number_format argument namming
last argument is for thousand separator not decimal
Commits
-------
fc1950d [Doc] corrects number_format argument namming
Fabien Potencier [Tue, 1 Oct 2013 14:20:20 +0000]
bug #1211 fixed usage of the html_attr escaping strategy to avoid double-escaping with the html strategy (fabpot)
This PR was merged into the master branch.
Discussion
----------
fixed usage of the html_attr escaping strategy to avoid double-escaping with the html strategy
fixes #896
Commits
-------
f27d4a1 fixed usage of the html_attr escaping strategy to avoid double-escaping with the html strategy
Fabien Potencier [Tue, 1 Oct 2013 13:11:00 +0000]
fixed usage of the html_attr escaping strategy to avoid double-escaping with the html strategy
Nicolas Bastien [Sun, 29 Sep 2013 14:14:18 +0000]
[Doc] corrects number_format argument namming
Fabien Potencier [Sun, 29 Sep 2013 07:27:48 +0000]
simplified code
Fabien Potencier [Sat, 28 Sep 2013 11:31:14 +0000]
minor#1206 Refactored the installation docs (fabpot)
This PR was merged into the master branch.
Discussion
----------
Refactored the installation docs
The idea is to get back a simple and straight to the point into chapter. As Composer is now the defacto standard to install PHP deps, I've moved everything related to the other installation methods in a new chapter.
Commits
-------
dd1ead2 tweaked intro chapter
a0efdc9 simplified the intro doc page
Fabien Potencier [Sat, 28 Sep 2013 11:30:35 +0000]
bug#1194 Make Twig HHVM compatible (fabpot)
This PR was merged into the master branch.
Discussion
----------
Make Twig HHVM compatible
Work in progress
Commits
-------
7a7e8c5 removed a test that do not pass on hhvm as it is not able to compare DateTime objects properly
89779bc fixed a test on hhvm
f939ea6 skipped a test on hhvm
cbbcd89 fixed some tests as hhvm always returns false for ReflectionArgument::isOptional()
Fabien Potencier [Thu, 19 Sep 2013 12:12:28 +0000]
removed a test that do not pass on hhvm as it is not able to compare DateTime objects properly
Fabien Potencier [Thu, 19 Sep 2013 11:44:08 +0000]
fixed a test on hhvm
Fabien Potencier [Thu, 19 Sep 2013 11:41:36 +0000]
skipped a test on hhvm
Fabien Potencier [Thu, 19 Sep 2013 11:41:22 +0000]
fixed some tests as hhvm always returns false for ReflectionArgument::isOptional()
Fabien Potencier [Thu, 19 Sep 2013 11:43:59 +0000]
made escaping work on hhvm