1. d416a97 Improved Jinja's debugging support by introducing "@internalcode" which marks code objects that are skipped on tracebacks. Also template errors are now translated as well to help the pylons debugger. by Armin Ronacher · 16 years ago
  2. 1d02108 Added a (ugly) hack to the exceptions so that they don't warn under 2.6 by Armin Ronacher · 16 years ago
  3. 5109717 jinja2.sandbox should not warn on 2.6 any more. by Armin Ronacher · 16 years ago
  4. 3f1d8f1 Added proper super() support for scoped blocks. by Armin Ronacher · 16 years ago
  5. 74a0cd9 Added support for optional `scoped` modifier to blocks. by Armin Ronacher · 16 years ago
  6. 271a0eb Fixed a bug that caused internal errors if names where used as iteration by Armin Ronacher · 16 years ago
  7. 7887a8c Made it possible to refer to names from outer scopes in included templates by Armin Ronacher · 16 years ago
  8. 7850dc5 Fixed a documenation bug in the cache extension. by Armin Ronacher · 16 years ago
  9. ee2d3c4 Fixed a bug in the parser that made ``{{ foo[1, 2] }}`` impossible. by Armin Ronacher · 16 years ago
  10. b3b5802 Improved usage of string interning. This should fix the problems with jython. by Armin Ronacher · 16 years ago
  11. 330fbc0 Fixed a bug that caused syntax errors when defining macros or using the by Armin Ronacher · 16 years ago
  12. bec76c7 This fixes #325. by Armin Ronacher · 16 years ago
  13. 874c12e This fixes #317. by Armin Ronacher · 16 years ago
  14. d89f0f3 Priority of `not` raised. It's now possible to write `not foo in bar` by Armin Ronacher · 16 years ago
  15. 8de6f18 Fixed a threading issue with the LRUCache. Still not sure if I should release a Jinja 2.1.2 for that. by Armin Ronacher · 17 years ago
  16. a5900d2 Fixed inconsistency in LICENSE file. by Armin Ronacher · 17 years ago
  17. 7647d1c Same thing for extensions. by Armin Ronacher · 17 years ago
  18. 272ca2a This commit makes the parser and lexer use regular string comparison to support jython by Ali Afshar · 17 years ago
  19. 62ccd1b Copyright switch to "The Jinja Team". by Armin Ronacher · 17 years ago
  20. 37f58ce Include statements can now be marked with ``ignore missing`` to skip by Armin Ronacher · 17 years ago
  21. 92af756 Tip is 2.2 by Armin Ronacher · 17 years ago
  22. c57d3e1 Added tag 2.1.1 for changeset 744e087d24e9 by Armin Ronacher · 17 years ago
  23. f21e444 On our way to 2.2 we found a bug in 2.1 and our repo is now 2.1.1 :) No need to branch for that. by Armin Ronacher · 17 years ago
  24. cebd838 Fixed a translation error caused by looping over empty recursive loops. by Armin Ronacher · 17 years ago
  25. 2bc1ef7 Fixed a typo by Armin Ronacher · 17 years ago
  26. 5e58d43 tip is now 2.2-dev by Armin Ronacher · 17 years ago
  27. 03e4e29 Added tag 2.1 for changeset dbf1e3a0b178 by Armin Ronacher · 17 years ago
  28. 56d0107 Updated documentation to reflect the new speedups installation behavior. by Armin Ronacher · 17 years ago
  29. 689a53b Removed optional speedups extension hack. by Armin Ronacher · 17 years ago
  30. 8f31a34 Untagged 2.1 by Armin Ronacher · 17 years ago
  31. 31d7961 Added tag 2.1 for changeset 1322ed9fffbe by Armin Ronacher · 17 years ago
  32. 7357f06 Final changes for Jinja 2.1 release by Armin Ronacher · 17 years ago
  33. 8612078 Added thanks entry for habbie by Armin Ronacher · 17 years ago
  34. d9342dc Fixed an escaping bug in urlize by Armin Ronacher · 17 years ago
  35. ba6e25a Added support for `Environment.compile_expression`. by Armin Ronacher · 17 years ago
  36. 9efe081 Fixed a small bug with the undefined object: the error message on divisions with undefined objects was misleading. by Armin Ronacher · 17 years ago
  37. 1c56b39 Added a Thanks entry for Cameron Knight. by Armin Ronacher · 17 years ago
  38. e308bf2 Fixed a macro scoping bug discovered by ckknight introduced in one of the earlier changes for the 2.1 release. by Armin Ronacher · 17 years ago
  39. 4735fbd Added support for variable name translations in django2jinja by Julien Visinand · 17 years ago
  40. d34eb12 Implemented and documented "joiner" by Armin Ronacher · 17 years ago
  41. ccae055 Various cleanups and added custom cycler. by Armin Ronacher · 17 years ago
  42. 673aa88 imports and includes "with context" are passed the full context now, not only the initial one. by Armin Ronacher · 17 years ago
  43. 7966895 The hopefully final fix for the bug apollo13 spotted earlier. by Armin Ronacher · 17 years ago
  44. 234cad6 Added THANKS entry for nosklo by Armin Ronacher · 17 years ago
  45. 335b87a Fixed a bug in constant folding of keyword arguments to filter calls. Thanks noskolo. by Armin Ronacher · 17 years ago
  46. 5799605 Automated merge with ssh://team@pocoo.org/jinja2-main by Armin Ronacher · 17 years ago
  47. 9a7306e Fixed a bug in djangojinja2 that caused mimetype being forwarded propertly. by Armin Ronacher · 17 years ago
  48. c347ed0 Unified some code in the super/template reference system. by Armin Ronacher · 17 years ago
  49. 3e497b7 Some typos. by Georg Brandl · 17 years ago
  50. 1b54f74 Added i18n support to django2jinja (not complete support, but the best you can get before django fixes a bug in i18n handling) by Armin Ronacher · 17 years ago
  51. dcc217c It's now possible to create weak references to template contexts. by Armin Ronacher · 17 years ago
  52. aa1d17d Fixed bytecode cache and added support for memcached (tests still missing) by Armin Ronacher · 17 years ago
  53. 03f8823 moved os.remove import where it woudn't be noticed by GAE by Max Ischenko · 17 years ago
  54. 2e46a5c Fixed FileSystemBytecodeCache.clear by Armin Ronacher · 17 years ago
  55. a816bf4 Improved bbcache and documented it. by Armin Ronacher · 17 years ago
  56. f40c884 Fixed a bug with the handling of empty statements in macros (it also fixes a bug introduced in one of the previous changesets) by Armin Ronacher · 17 years ago
  57. 4d5bdff Added experimental and undocumented bytecode cache support by Armin Ronacher · 17 years ago
  58. 205bae5 Implemented a sort filter that sorts arbitrary sequences. by Armin Ronacher · 17 years ago
  59. 8f45555 Nearly complete core django template code coverage. by Armin Ronacher · 17 years ago
  60. 110e4c2 Moved django configuration into the __main__ section by Armin Ronacher · 17 years ago
  61. 35f8d2d Added first code for a django-to-jinja converter by Armin Ronacher · 17 years ago
  62. 3213355 Fixed a confusing edge case (thanks apollo13) by Armin Ronacher · 17 years ago
  63. 57c9b6d Disabled iron python support until new lexer is implemented. by Armin Ronacher · 17 years ago
  64. 5c3c470 Fixed a bug in the subscript operation. by Armin Ronacher · 17 years ago
  65. a5d8f55 filter -> test in the tests section (i feel so embarrassed). by Armin Ronacher · 17 years ago
  66. cb1b97f It's now possible to use ``{{ foo.0.0 }}`` by Armin Ronacher · 17 years ago
  67. f7e405d Linked from autoescape to markup by Armin Ronacher · 17 years ago
  68. 88e1cb7 Fixed a documentation bug. by Armin Ronacher · 17 years ago
  69. 7a519ee Fixed a typo by Armin Ronacher · 17 years ago
  70. 4720c36 Fixed a bug in the i18n extension that caused the explicit pluralization block to look up the wrong variable. by Armin Ronacher · 17 years ago
  71. ce67710 More work on the ironpython support by Armin Ronacher · 17 years ago
  72. 833a3b5 Fixed a bug in the compiler that caused problems with loop not being referenced in an outer scoped. (Introduced in the last checkin) by Armin Ronacher · 17 years ago
  73. ff53c78 fixed a bug with nested loops and the special loop variable. by Armin Ronacher · 17 years ago
  74. 9a0078d Removed a few stdlib dependencies. This is the first step for IronPython support, the second one being a new lexer. by Armin Ronacher · 17 years ago
  75. a9d5922 fixed development status classification by Armin Ronacher · 17 years ago
  76. 8ba5a19 added the missing fabfile (gnabber) by Armin Ronacher · 17 years ago
  77. 237cdde tip is now 2.1-dev by Armin Ronacher · 17 years ago
  78. 628bc92 tagged '2.0' by Armin Ronacher · 17 years ago
  79. bf94394 preparing the big 2.0 release by Armin Ronacher · 17 years ago
  80. d43f926 make -> fab by Armin Ronacher · 17 years ago
  81. a6fb90c ez_setup is no longer needed/imported in the setup file by Armin Ronacher · 17 years ago
  82. d776437 fixed a few broken license declarations. should have been BSD not GPL by Armin Ronacher · 17 years ago
  83. 665bfb8 Fixed bug in finalizer by Armin Ronacher · 17 years ago
  84. 80b7895 Automated merge with ssh://team@pocoo.org/jinja2-main by Armin Ronacher · 17 years ago
  85. 76f9aa4 Altered filesizeformat to support both MB and MiB, documented `{% filter %}`. by Armin Ronacher · 17 years ago
  86. 968ad5a Automated merge with http://dev.pocoo.org/hg/jinja2-main/ by Christopher Grebs · 17 years ago
  87. f1c940f fixed attribute lookup error with old style classes by Christopher Grebs · 17 years ago
  88. a0e3ac0 Documented if-conditional changes. by Armin Ronacher · 17 years ago
  89. 547d0b6 Fixed a bug with the loop context of a for loop if the iterator passed has a volatile `__len__` like the listreverseiterator. `else` in inline if-expressions is optional now. by Armin Ronacher · 17 years ago
  90. c670b11 Skip templates with syntax errors on babel extract by Armin Ronacher · 17 years ago
  91. 0fad031 Fixed release date by Armin Ronacher · 17 years ago
  92. abd3657 Added non-babel output mode to extract_from_ast, integreated jinja2 doctests directly into the py.test suite (ugh, that's an ugly hack) by Armin Ronacher · 17 years ago
  93. 53db78e Fixed a link to the renamed section. by Armin Ronacher · 17 years ago
  94. b938877 Changed all sentences with occurrences of subscribing to a similar sentence that uses the word "subscript". And the person that comes up with a less confusing verb for the attribute/item lookup method (that is not lookup!!1) gets an extra THANKS entry. by Armin Ronacher · 17 years ago
  95. 4778bda added support for implicit string literal concatenation by Armin Ronacher · 17 years ago
  96. 63fd798 Fixed some minor glitches. by Armin Ronacher · 17 years ago
  97. f288b7a Documented differences of cycling between Django and Jinja2. by Armin Ronacher · 17 years ago
  98. 74b5106 Added `TemplateStream.dump`. by Armin Ronacher · 17 years ago
  99. d02fc7d Added example extension that uses the stream filtering and added unittests. by Armin Ronacher · 17 years ago
  100. 3e3a9be Added unittests for stream filtering and preprocessing features of extensions. by Armin Ronacher · 17 years ago