1. ea847c5 added "with context" or "without context" import/include modifiers by Armin Ronacher · 16 years ago
  2. 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
  3. c851607 reactivated syntax error translations by Armin Ronacher · 16 years ago
  4. 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
  5. 000b491 made LRUCache thread safe -.- by Armin Ronacher · 16 years ago
  6. ad48a2e Fixed typos in documentation by Lukas Meuser · 16 years ago
  7. 187bde1 added cache_clear function by Armin Ronacher · 16 years ago
  8. aaf010d improved debugging for syntax errors by Armin Ronacher · 16 years ago
  9. 19cf9c2 small performance improvements by Armin Ronacher · 16 years ago
  10. 7259c76 moved caching from loaders to environment and added environment overlays by Armin Ronacher · 16 years ago
  11. 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
  12. 1ae4fdf added python2.4 workaround for unicode.join bug by Armin Ronacher · 16 years ago
  13. 8b085c3 fixed xmlattr again by Armin Ronacher · 16 years ago
  14. b2a36aa updated jinja docs by Armin Ronacher · 16 years ago
  15. 316157d fixed another python2.4 bug by Armin Ronacher · 16 years ago
  16. 371cb14 Automated merge with ssh://team@pocoo.org/jinja2-main by Armin Ronacher · 16 years ago
  17. 709f6e5 python2.4 compatibility and doc updates by Armin Ronacher · 16 years ago
  18. 228c183 small improvement by Benjamin Wiegand · 16 years ago
  19. a315274 fixed some NameErrors by Benjamin Wiegand · 16 years ago
  20. 157531b more docs and fixed bug in parser that assigned lineno for ExprStmt wrong by Armin Ronacher · 16 years ago
  21. 3c8b7ad first version of the jinja2 docs by Armin Ronacher · 16 years ago
  22. 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
  23. 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
  24. 32a910f added spitfire to bench and did some more refactoring by Armin Ronacher · 16 years ago
  25. 5304229 worked on the tests and made undefined fail on comparisons now by Armin Ronacher · 16 years ago
  26. 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
  27. de6bf71 some performance improvements by Armin Ronacher · 16 years ago
  28. 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
  29. 6ce170c `IncludedTemplate` uses getattr rather then getitem now by Armin Ronacher · 16 years ago
  30. 963f97d moved `IncludedTemplate` into the regular template API, fixed more unittests by Armin Ronacher · 16 years ago
  31. b5124e6 moved trans extension from jinja2.i18n to jinja2.ext and fixed some more unittests by Armin Ronacher · 16 years ago
  32. 203bfcb inheritance uses a less awkward hack for contexts now and subclassing templates is possible by Armin Ronacher · 16 years ago
  33. 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
  34. 4f7d2d5 fixed more unittests by Armin Ronacher · 16 years ago
  35. 2b60fe5 fixed setup.py, a type and removed the possibility to use multiple statements per block. The latter makes it easier to write custom tags by Armin Ronacher · 16 years ago
  36. 7324eb8 removed custom nodes again by Armin Ronacher · 16 years ago
  37. 0553093 refactored extensions a bit by Armin Ronacher · 16 years ago
  38. f59bac2 added first code for parser extensions and moved some code in speedups around by Armin Ronacher · 16 years ago
  39. f41d139 fixed more unittests by Armin Ronacher · 16 years ago
  40. 10f3ba2 loops and `tests` tests pass now by Armin Ronacher · 16 years ago
  41. f64efb8 removed loop.parent. If this variable is wanted you can get it by doing something like `{% parent_looo = loop %}` before the iteration by Armin Ronacher · 16 years ago
  42. 4c81b16 samp and friends from char* to const char* by Priit Laes · 16 years ago
  43. be4ae24 fixed a few bugs from the unittests by Armin Ronacher · 16 years ago
  44. bd33f11 added C escape and tb_set_next functions by Armin Ronacher · 16 years ago
  45. 284f200 improved wordcount by removing pointless test by Priit Laes · 16 years ago
  46. 8464ab1 added missing indent filter by Priit Laes · 16 years ago
  47. 4149a0e fixed two typos by Priit Laes · 16 years ago
  48. 9a82205 improved undefined behavior by Armin Ronacher · 16 years ago
  49. 814f6c2 simplified loader api and added builtin caching by Armin Ronacher · 16 years ago
  50. 68f7767 various docstring changes by Armin Ronacher · 16 years ago
  51. 5236d8c `TemplateData` -> `Markup` by Armin Ronacher · 16 years ago
  52. 26c0f51 updated a few docstrings and removed contrib by Armin Ronacher · 16 years ago
  53. 9a027f4 improved filters by Armin Ronacher · 16 years ago
  54. 18c6ca0 added autoescaping by Armin Ronacher · 16 years ago
  55. 6cc8dd0 debugger skips two internal frames now by Armin Ronacher · 16 years ago
  56. 8e8d071 better debugging information. compiler knows about name and filename now (the first one is the load name, the second the estimated filename on the file system if such a name exists) by Armin Ronacher · 16 years ago
  57. ba3757b added new python only debug hack by Armin Ronacher · 16 years ago
  58. 577ad38 ported the tests by Armin Ronacher · 16 years ago
  59. 5f51488 updated a few filters and improved i18n by Armin Ronacher · 16 years ago
  60. 2e9396b reimplemented {% trans %} by Armin Ronacher · 16 years ago
  61. b9bed15 removed unusde __delitem__ for context by Armin Ronacher · 16 years ago
  62. b6fc38c Automated merge with ssh://team@pocoo.org/jinja2-main by Armin Ronacher · 16 years ago
  63. c63243e added sandbox and exchageable undefined objects by Armin Ronacher · 16 years ago
  64. 8090986 continued convertig filters by Christoph Hack · 16 years ago
  65. f437fa3 hopefully fixed `Template` by Armin Ronacher · 16 years ago
  66. 4f11d74 Automated merge with ssh://dev.pocoo.org/jinja2-main by Christoph Hack · 16 years ago
  67. e9e43bb converted unit tests, started rewriting filters by Christoph Hack · 16 years ago
  68. 62f8a29 added super() by Armin Ronacher · 16 years ago
  69. fed44b5 added globals by Armin Ronacher · 16 years ago
  70. 625215e optimizer can optimize filtered for loops now by Armin Ronacher · 16 years ago
  71. 3d8b784 added loop filtering by Armin Ronacher · 16 years ago
  72. 00d5d21 some more stuff for jinja2 by Armin Ronacher · 16 years ago
  73. fa865fb filter tag works now by Armin Ronacher · 16 years ago
  74. 7108207 added support for new call statement by Armin Ronacher · 16 years ago
  75. bf7c4ad added support for line statement prefixes (cheetah/mako/erb like) by Armin Ronacher · 16 years ago
  76. 7c0116f fixed include by Armin Ronacher · 16 years ago
  77. f059ec1 implemented includes by Armin Ronacher · 16 years ago
  78. 41ef36f basic inheritance works now by Armin Ronacher · 16 years ago
  79. 449167d fixed a bug in the compiler by Armin Ronacher · 16 years ago
  80. d4c64f7 filters are always used as locals now and we don't do any post-loop cleanup by Armin Ronacher · 16 years ago
  81. 46f5f98 w000t. first template by Armin Ronacher · 16 years ago
  82. bcb7c53 work on tha runtime by Armin Ronacher · 16 years ago
  83. 7a52df8 fixed a small bug by Armin Ronacher · 16 years ago
  84. 7fb3897 *now* we have no overhead :) by Armin Ronacher · 16 years ago
  85. 75cfb86 optimized child template code generation. we now have zero overhead for the most common inheritance case by Armin Ronacher · 16 years ago
  86. 2ba4c92 removed debug print by Armin Ronacher · 16 years ago
  87. ebe55aa assignments are traversed in the correct order now by Armin Ronacher · 16 years ago
  88. 8edbe49 fixed one bug with blocks, one to go by Armin Ronacher · 16 years ago
  89. d436e98 fixed deepcopy by Armin Ronacher · 16 years ago
  90. 0ecb859 added broken copy method by Armin Ronacher · 16 years ago
  91. cb3bd65 Automated merge with ssh://team@pocoo.org/jinja2-main by Armin Ronacher · 16 years ago
  92. d55ab53 nodes have access to environment now by Armin Ronacher · 16 years ago
  93. f9f029c render templates by Christoph Hack · 16 years ago
  94. 96beb07 Automated merge with ssh://team@pocoo.org/jinja2-main by Armin Ronacher · 16 years ago
  95. 4dfc975 simplified undefined behavior for better compile time processing by Armin Ronacher · 16 years ago
  96. d1d2f3d improved loop unrolling by Armin Ronacher · 16 years ago
  97. ca12b71 merged again by Christoph Hack · 16 years ago
  98. bfe7a6b merged by Christoph Hack · 16 years ago
  99. 2751d94 converted some filters by Christoph Hack · 16 years ago
  100. 180a1bd tuple unpacking at compile time is handled properly now by Armin Ronacher · 16 years ago