1. 0a2ac69 switched back to explicit set for assignments. {% foo = 42 %} becomes {% set foo = 42 %} and {% foo.something() }} becomes {{ void(foo.something() }} with this commit. by Armin Ronacher · 16 years ago
  2. b455c31 made the recursive for loop test easier to debug by Armin Ronacher · 16 years ago
  3. 66a9344 added unittest for recursive for loop by Armin Ronacher · 16 years ago
  4. 09c002e added a function to parse assign targes and documented it for the extension interface by Armin Ronacher · 16 years ago
  5. 612b3a8 moved example code around by Armin Ronacher · 16 years ago
  6. 5cdc1ac documentation update by Armin Ronacher · 16 years ago
  7. ed98cac some documentation updates by Armin Ronacher · 16 years ago
  8. f35e281 some documentation improvements, jinja escapes " and ' now, both into charpoints and no named entities for html 3.2 support ;-) by Armin Ronacher · 16 years ago
  9. 7ceced5 moved concat to utils, fixed a few docstrings, fixed memory leak in _speedups.escape by Armin Ronacher · 16 years ago
  10. 132757b added unittest for context import/includes by Armin Ronacher · 16 years ago
  11. 115de2e Jinja doesn't have keywords any longer. The reason for this radical change is that the previous keywords where incompatible with the python keywords which made it impossible to name a variable "filter" or call a function with such a keyword parameter. by Armin Ronacher · 16 years ago
  12. 7259c76 moved caching from loaders to environment and added environment overlays by Armin Ronacher · 16 years ago
  13. c9705c2 all unittests pass, the special and dependency lookups have their own visitors now, with `self` one can get a reference to the current template and render blocks multiple times. by Armin Ronacher · 16 years ago
  14. 5304229 worked on the tests and made undefined fail on comparisons now by Armin Ronacher · 16 years ago
  15. 0611e49 revamped jinja2 import system. the behavior is less confusing now, but it's not backwards compatible. I like it though ;) by Armin Ronacher · 16 years ago
  16. 963f97d moved `IncludedTemplate` into the regular template API, fixed more unittests by Armin Ronacher · 16 years ago
  17. b5124e6 moved trans extension from jinja2.i18n to jinja2.ext and fixed some more unittests by Armin Ronacher · 16 years ago
  18. 203bfcb inheritance uses a less awkward hack for contexts now and subclassing templates is possible by Armin Ronacher · 16 years ago
  19. 4f7d2d5 fixed more unittests by Armin Ronacher · 16 years ago
  20. f41d139 fixed more unittests by Armin Ronacher · 16 years ago
  21. 10f3ba2 loops and `tests` tests pass now by Armin Ronacher · 16 years ago
  22. be4ae24 fixed a few bugs from the unittests by Armin Ronacher · 16 years ago
  23. 8090986 continued convertig filters by Christoph Hack · 16 years ago
  24. e9e43bb converted unit tests, started rewriting filters by Christoph Hack · 16 years ago
  25. 1dcdac5 improved python2.3 support by Armin Ronacher · 17 years ago
  26. 523bf4c fixed awkward lexer bug in jinja that was yet untested by Armin Ronacher · 17 years ago
  27. 825e522 some more doc changes in jinja for the upcoming release by Armin Ronacher · 17 years ago
  28. 9cdf3bf fixed #281 and added test case by Armin Ronacher · 17 years ago
  29. 9b0545a added new testcase by Armin Ronacher · 17 years ago
  30. 41883c2 added unittest for the breakage i encountered today by Armin Ronacher · 17 years ago
  31. 1cc232c [svn] merged newparser into trunk by Armin Ronacher · 17 years ago
  32. 69ddc58 [svn] added sameas test function by Armin Ronacher · 17 years ago
  33. e39a5d2 [svn] added groupby filter and fixed some small bugs by Armin Ronacher · 17 years ago
  34. a7804ef [svn] added "debugger of awesomeness" :D by Armin Ronacher · 17 years ago
  35. 143a07e [svn] added simple memcached loader test by Armin Ronacher · 17 years ago
  36. db69d0a [svn] added baseclasses for loaders, added the memcaching loader, updated documentation for loaders by Armin Ronacher · 17 years ago
  37. ecc051b [svn] added some more jinja unittests by Armin Ronacher · 17 years ago
  38. 2f613d0 [svn] fixed extended slicing by Armin Ronacher · 17 years ago
  39. 649c7b9 [svn] some minor updates in jinja by Armin Ronacher · 17 years ago
  40. f61000d [svn] choice loader now doesn't screen template not found exception of imports / extends by Armin Ronacher · 17 years ago
  41. cb58db1 [svn] simplified code that calculates the import filename by Armin Ronacher · 17 years ago
  42. 5b4e975 [svn] added new jinja unittest and added snipped contributed by Bryan McLemore. by Armin Ronacher · 17 years ago
  43. 9bcd411 [svn] again some jinja updates, some minor performance and doc improvements by Armin Ronacher · 17 years ago
  44. 6dba4d6 [svn] checked in changes regarding variable length iteration by Armin Ronacher · 17 years ago
  45. ccf284b [svn] added many new tests to jinja by Armin Ronacher · 17 years ago
  46. ce513f2 [svn] fixed bug reported by stefan ebner and implemented cache_keys to fix problems with multiple laoders caching in the same folder by Armin Ronacher · 17 years ago
  47. 44fb2e1 [svn] added more jinja unittests by Armin Ronacher · 17 years ago
  48. fb5bebc [svn] many jinja changes: by Armin Ronacher · 17 years ago
  49. e98c5f5 [svn] updated documentation regarding "{% call %}" and documented speedup module. also fixed some minor bugs in the speedup module by Armin Ronacher · 17 years ago
  50. ee2c18e [svn] added c implementation of the jinja context class. by Armin Ronacher · 17 years ago
  51. 2158091 [svn] various updates i haven't checked in so far (see the diff of the changelog) and fixed critical bug reported by Alexey Melchakov by Armin Ronacher · 17 years ago
  52. d071f95 [svn] added `|batch` and `|slice` jinja filters by Armin Ronacher · 17 years ago
  53. 10dae5b [svn] improved debugging support. it's not possible to catch errors of templates without loaders too by Armin Ronacher · 17 years ago
  54. 34f3042 [svn] fixed supering in jinja, documented it, added lipsum() by Armin Ronacher · 17 years ago
  55. 5adf94f [svn] some small jinja changes by Armin Ronacher · 17 years ago
  56. a690146 [svn] implemented `{{ super() }}` for blocks. This checkin makes jinja much slower. I'll improve that as soon as possible by Armin Ronacher · 17 years ago
  57. 8ff24c4 [svn] implemented compile time error handling by Armin Ronacher · 17 years ago
  58. 9baa5ba [svn] again huge jinja update. this time regarding keywords by Armin Ronacher · 17 years ago
  59. 93e14c2 [svn] added more unittests for jinja by Armin Ronacher · 17 years ago
  60. 566295e [svn] again some jinja updates by Armin Ronacher · 17 years ago
  61. 0b66657 [svn] added tests for "capture" and "format" filters by Armin Ronacher · 17 years ago
  62. c1e3040 [svn] fixed jinja inheritance bug and improved unittests by Armin Ronacher · 17 years ago
  63. ab45b84 [svn] added jinja doctests and fixed problem with i18n strings in requirements by Armin Ronacher · 17 years ago
  64. aa5adfa [svn] moved all jinja tests into a runtime folder so that we have enough space for the new unittests by Armin Ronacher · 17 years ago
  65. 18b3d0b [svn] improved jinja debugging system. now handles errors in included templates too by Armin Ronacher · 17 years ago
  66. bb960d4 [svn] readded debug function by Armin Ronacher · 17 years ago
  67. 7977e5c [svn] implemented jinja debugging system by Armin Ronacher · 17 years ago
  68. 56ae6e0 [svn] fixes jinja inheritance code by Armin Ronacher · 17 years ago
  69. 34a18bf [svn] again many changes in jinja. Performance improvements and much more by Armin Ronacher · 17 years ago
  70. 4fd2ca5 [svn] requirements (macros and set directives) can be outside of renderable blocks too by Armin Ronacher · 17 years ago
  71. 303a7e4 [svn] Make Django and Mako optional. by Alexander Schremmer · 17 years ago
  72. ed03db5 [svn] removed debug print, small changes in context by Armin Ronacher · 17 years ago
  73. de478f6 [svn] some small updates to make jinja performing better by Armin Ronacher · 17 years ago
  74. e4ad284 [svn] small fixes by Armin Ronacher · 17 years ago
  75. 9997f96 [svn] checked in today's jinja changes. implemented template loading and inheritance by Armin Ronacher · 17 years ago
  76. 92f572f [svn] added new jinja trunk by Armin Ronacher · 17 years ago