1. 2b22874 some small documentation fixes by Armin Ronacher · 16 years ago
  2. ed1e0d4 small refactoring by Armin Ronacher · 16 years ago
  3. dd65ef4 removed esection about Jinja semantics as we don't have local aliasing currently by Armin Ronacher · 16 years ago
  4. 522cad6 added `ImmutableSandboxedEnvironment`. by Armin Ronacher · 16 years ago
  5. ab5ad8c subscribe doesn't eat up unicode errors any longer by Armin Ronacher · 16 years ago
  6. 67fdddf removed attribute local aliasing again because that implementation was broken by Armin Ronacher · 16 years ago
  7. 7f15ef8 improved exception system. now both name (load name) and filename are passed. by Armin Ronacher · 16 years ago
  8. a7f016d added disclaimer to rwbench and fixed error reporting for one of the four Output cases by Armin Ronacher · 16 years ago
  9. 5d2733f void -> do by Armin Ronacher · 16 years ago
  10. a78d276 simplified from imports by Armin Ronacher · 16 years ago
  11. dc02b64 added a semi realworld benchmark (jinja2 and mako) by Armin Ronacher · 16 years ago
  12. e9411b4 fixed bug with parameter parsing by Armin Ronacher · 16 years ago
  13. 151418d fixed error on static subscribe aliasing if the subscription argument was a variable by Armin Ronacher · 16 years ago
  14. 02e0905 removed the notice about names in imported macros. that's documented as part of the import statement. by Armin Ronacher · 16 years ago
  15. 1f627ff fixed error reporting for filtered statements by Armin Ronacher · 16 years ago
  16. 83fbc0f reversed the internal structure for blocks by Armin Ronacher · 16 years ago
  17. b3a1fcf added support for local aliasing of some attributes. the technique used is not very good but covers at least some of the more common use cases by Armin Ronacher · 16 years ago
  18. 9d42abf the two escape implementations work the same now, updated jinja2-debug to load the i18n extension by Armin Ronacher · 16 years ago
  19. 08a6a3b improved subscribe by Armin Ronacher · 16 years ago
  20. 981cbf6 removed unused imports by Armin Ronacher · 16 years ago
  21. 2e30cf5 documented set changes by Armin Ronacher · 16 years ago
  22. a11366e Automated merge with ssh://team@pocoo.org/jinja2-main by Armin Ronacher · 16 years ago
  23. 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
  24. 69e12db improved variable exporting, added TODO file by Armin Ronacher · 16 years ago
  25. 1de4c64 documented recursive loops by Armin Ronacher · 16 years ago
  26. b455c31 made the recursive for loop test easier to debug by Armin Ronacher · 16 years ago
  27. 66a9344 added unittest for recursive for loop by Armin Ronacher · 16 years ago
  28. 1e1e890 readded support for recursive for-loops by Armin Ronacher · 16 years ago
  29. fdf9530 added parsing code for "for item in seq recursive" and improved parser interface a bit by Armin Ronacher · 16 years ago
  30. 27069d7 fixed a bug in extension handling by Armin Ronacher · 16 years ago
  31. 3863b65 Another typo. by Georg Brandl · 16 years ago
  32. ac61b24 Fix two typos. by Georg Brandl · 16 years ago
  33. d1ff858 Backed out changeset 6afb554797b6, which added unicode identifier support. This doesn't work in reality under Python 2.6 properly. by Armin Ronacher · 16 years ago
  34. b536548 added support for unicode identifiers by Armin Ronacher · 16 years ago
  35. b9e7875 added support for dotted names in tests and filters by Armin Ronacher · 16 years ago
  36. 09c002e added a function to parse assign targes and documented it for the extension interface by Armin Ronacher · 16 years ago
  37. fb2e38a added djangojinja2 extension by Armin Ronacher · 16 years ago
  38. ba80826 removed wsgi and django from the integration page, wsgi is not interesting and there is no django support module currently. pylons is now documented. by Armin Ronacher · 16 years ago
  39. decf7e3 added TextMate bundle and vim syntax files by Armin Ronacher · 16 years ago
  40. 762079c more updates on the extension API by Armin Ronacher · 16 years ago
  41. 023b5e9 First extension interface documentation and updates in that interface by Armin Ronacher · 16 years ago
  42. 612b3a8 moved example code around by Armin Ronacher · 16 years ago
  43. 5cdc1ac documentation update by Armin Ronacher · 16 years ago
  44. ed98cac some documentation updates by Armin Ronacher · 16 years ago
  45. 7b5680c Indented environment parameters in docstring so that the sphinx HTML output looks nicer by Armin Ronacher · 16 years ago
  46. 5b99bed added nicher margins to jinja docs by Armin Ronacher · 16 years ago
  47. 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
  48. c2f3a3b and another small style update for the docs by Armin Ronacher · 16 years ago
  49. 47a506f Fixed bug that caused "for item in seq if expr" to fail if the loop is not accessing loop by Armin Ronacher · 16 years ago
  50. a5204a4 documentation style updates, added print css by Armin Ronacher · 16 years ago
  51. b217886 added author information and fixed small off-by-one bug by Armin Ronacher · 16 years ago
  52. 9a1e33c added macro for char* to Py_UNICODE conversion by Armin Ronacher · 16 years ago
  53. c0d40d3 using a table for _speedups escape by Mickaël Guérin · 16 years ago
  54. 374a05d added intro text to doc index by Armin Ronacher · 16 years ago
  55. c072564 fixed a bug with filtered loops by Armin Ronacher · 16 years ago
  56. 6b44952 some small documentation style fixes by Armin Ronacher · 16 years ago
  57. 9d472df added style for html documentation by Armin Ronacher · 16 years ago
  58. b5f522c extra security by Armin Ronacher · 16 years ago
  59. 76c280b improved sandbox, added proper striptags and updated documentation to latest sphinx changes by Armin Ronacher · 16 years ago
  60. 4dc9578 fixed template reloading by Armin Ronacher · 16 years ago
  61. 792c759 Automated merge with ssh://team@pocoo.org/jinja2-main by Armin Ronacher · 16 years ago
  62. 9682855 added missing import by Benjamin Wiegand · 16 years ago
  63. b9d8070 changed wordcount filter once more by Armin Ronacher · 16 years ago
  64. cda43df updated filters: wordwraps uses the wordwrap module and urlize marks the result as HTML now if in autoescape mode by Armin Ronacher · 16 years ago
  65. 7ceced5 moved concat to utils, fixed a few docstrings, fixed memory leak in _speedups.escape by Armin Ronacher · 16 years ago
  66. 132757b added unittest for context import/includes by Armin Ronacher · 16 years ago
  67. ea847c5 added "with context" or "without context" import/include modifiers by Armin Ronacher · 16 years ago
  68. 4325e37 moved code from datastructure into lexer as the module only holds code for the lexer and is not that big. by Armin Ronacher · 16 years ago
  69. c851607 reactivated syntax error translations by Armin Ronacher · 16 years ago
  70. 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
  71. 000b491 made LRUCache thread safe -.- by Armin Ronacher · 16 years ago
  72. ad48a2e Fixed typos in documentation by Lukas Meuser · 16 years ago
  73. 187bde1 added cache_clear function by Armin Ronacher · 16 years ago
  74. aaf010d improved debugging for syntax errors by Armin Ronacher · 16 years ago
  75. 19cf9c2 small performance improvements by Armin Ronacher · 16 years ago
  76. 7259c76 moved caching from loaders to environment and added environment overlays by Armin Ronacher · 16 years ago
  77. d84ec46 again documentation updates fixed another python 2.4 bug. Imports are not evaluated with the template context any longer which makes it possible to keep them in memory by Armin Ronacher · 16 years ago
  78. 1ae4fdf added python2.4 workaround for unicode.join bug by Armin Ronacher · 16 years ago
  79. 8b085c3 fixed xmlattr again by Armin Ronacher · 16 years ago
  80. b2a36aa updated jinja docs by Armin Ronacher · 16 years ago
  81. 316157d fixed another python2.4 bug by Armin Ronacher · 16 years ago
  82. 371cb14 Automated merge with ssh://team@pocoo.org/jinja2-main by Armin Ronacher · 16 years ago
  83. 709f6e5 python2.4 compatibility and doc updates by Armin Ronacher · 16 years ago
  84. 228c183 small improvement by Benjamin Wiegand · 16 years ago
  85. a315274 fixed some NameErrors by Benjamin Wiegand · 16 years ago
  86. 157531b more docs and fixed bug in parser that assigned lineno for ExprStmt wrong by Armin Ronacher · 16 years ago
  87. 3c8b7ad first version of the jinja2 docs by Armin Ronacher · 16 years ago
  88. d134231 autoescaping is separate from finalize now and Markup is completely ignored if the environment is not in autoescape mode by Armin Ronacher · 16 years ago
  89. 083ae16 bootstrapped new documentation by Armin Ronacher · 16 years ago
  90. 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
  91. 32a910f added spitfire to bench and did some more refactoring by Armin Ronacher · 16 years ago
  92. 5304229 worked on the tests and made undefined fail on comparisons now by Armin Ronacher · 16 years ago
  93. 2feed1d there is now a workaround in the compiler that makes sure it's possible to call things with python keywords. {{ foo(class=42) }} works again by Armin Ronacher · 16 years ago
  94. de6bf71 some performance improvements by Armin Ronacher · 16 years ago
  95. 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
  96. 6ce170c `IncludedTemplate` uses getattr rather then getitem now by Armin Ronacher · 16 years ago
  97. 963f97d moved `IncludedTemplate` into the regular template API, fixed more unittests by Armin Ronacher · 16 years ago
  98. b5124e6 moved trans extension from jinja2.i18n to jinja2.ext and fixed some more unittests by Armin Ronacher · 16 years ago
  99. 203bfcb inheritance uses a less awkward hack for contexts now and subclassing templates is possible by Armin Ronacher · 16 years ago
  100. 07a21ba removed loop unrolling. for such optimizations we would need a separate syntax tree as far as i can see by Armin Ronacher · 16 years ago