summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed a bug in the documentation toolArmin Ronacher2011-01-241-1/+2
|
* Updated documentation for operator interceptingArmin Ronacher2010-11-291-1/+49
|
* Documentation update. Documentation will become the new Jinja2 websiteArmin Ronacher2010-10-173-57/+110
|
* Fixed link to gitArmin Ronacher2010-10-171-1/+1
|
* Changed links to githubArmin Ronacher2010-10-171-12/+3
|
* Documented switch to MarkupSafeArmin Ronacher2010-08-172-29/+46
| | | | | --HG-- branch : trunk
* Meh. Fixed a typoArmin Ronacher2010-08-161-1/+1
| | | | | --HG-- branch : trunk
* Fixed spellingArmin Ronacher2010-08-081-2/+2
| | | | | --HG-- branch : trunk
* Added docs for comparisionsArmin Ronacher2010-08-081-0/+21
| | | | | --HG-- branch : trunk
* Fixed a typo in the docsArmin Ronacher2010-05-291-1/+1
| | | | | --HG-- branch : trunk
* it's now possible to register extensions after an environmentArmin Ronacher2010-05-292-4/+81
| | | | | | | was created. --HG-- branch : trunk
* three is the new twoArmin Ronacher2010-04-101-1/+1
| | | | | --HG-- branch : trunk
* Added missing reference.Armin Ronacher2010-04-051-0/+1
| | | | | --HG-- branch : trunk
* autoescape no longer is a plain boolean value but can also be a functionArmin Ronacher2010-04-051-0/+32
| | | | | | | | to enable or disable autoescaping for certain filenames (or file extensions for that matter) --HG-- branch : trunk
* Hopefully fixed EvalContext documentation.Armin Ronacher2010-03-151-1/+1
| | | | | --HG-- branch : trunk
* More documentation updates.Armin Ronacher2010-03-151-0/+12
| | | | | --HG-- branch : trunk
* Updated copyright. It's 2010!Armin Ronacher2010-03-151-1/+1
| | | | | --HG-- branch : trunk
* Documented autoescaping behavior and eval contexts.Armin Ronacher2010-03-153-4/+98
| | | | | --HG-- branch : trunk
* the environment template loading functions now transparentlyArmin Ronacher2010-02-161-0/+24
| | | | | | | | | pass through a template object if it was passed to it. This makes it possible to import or extend from a template object that was passed to the template. --HG-- branch : trunk
* Added Python 3 section to the documentation.Armin Ronacher2010-02-101-0/+16
| | | | | --HG-- branch : trunk
* Documentation recommends distribute now.Armin Ronacher2010-02-101-8/+9
| | | | | --HG-- branch : trunk
* Some tiny documentation fixes (unicode -> Unicode)Armin Ronacher2010-02-092-10/+10
| | | | | --HG-- branch : trunk
* added with-statement extension.Armin Ronacher2010-02-072-0/+46
| | | | | --HG-- branch : trunk
* Documentation no longer mentiones "no multiple inheritance" support. thatArmin Ronacher2010-02-061-5/+1
| | | | | | | just confuses people. --HG-- branch : trunk
* Fixed typo in documentation.Armin Ronacher2010-02-061-1/+1
| | | | | --HG-- branch : trunk
* include tags are now able to select between multiple templatesArmin Ronacher2010-01-142-1/+16
| | | | | | | | and take the first that exists, if a list of templates is given. --HG-- branch : trunk
* Reverted [73b04625ab54]. The old behavior is the new behavior, the otherArmin Ronacher2009-10-261-19/+8
| | | | | | | is not consistenly implementable. --HG-- branch : trunk
* Fix typo.Georg Brandl2009-10-191-2/+2
| | | | | --HG-- branch : trunk
* added a deprecation warning for a variable assignment, scope bugArmin Ronacher2009-09-181-0/+37
| | | | | | | | | | that exists since 2.0, code could depend on. See :ref:`jinja-scoping-bug` for more information on this problem. Tip is 2.3 as this will be the next release (will happen soon!) --HG-- branch : trunk
* Fixed the install docs.Armin Ronacher2009-09-131-5/+2
| | | | | --HG-- branch : trunk
* speedup extension is now disabled by default (added message) and fixed aArmin Ronacher2009-09-131-1/+1
| | | | | | | line in the docs. --HG-- branch : trunk
* Disabled speedups by default.2.2Armin Ronacher2009-09-131-12/+13
| | | | | --HG-- branch : trunk
* (codename Kong, released on September 12th 2009)Armin Ronacher2009-09-131-4/+8
| | | | | --HG-- branch : trunk
* Added the `meta` module.Armin Ronacher2009-07-263-13/+14
| | | | | --HG-- branch : trunk
* MergedArmin Ronacher2009-05-041-2/+2
|\ | | | | | | | | --HG-- branch : trunk
| * typo fixChristopher Denter2009-05-031-1/+1
| | | | | | | | | | --HG-- branch : trunk
| * Automated merge with ssh://team@pocoo.org/jinja2-mainArmin Ronacher2009-05-021-1/+1
| |\ | | | | | | | | | | | | --HG-- branch : trunk
| | * Fixed typo.Armin Ronacher2009-05-021-1/+1
| | | | | | | | | | | | | | | --HG-- branch : trunk
* | | Improved changelog renderingArmin Ronacher2009-04-282-17/+2
|/ / | | | | | | | | --HG-- branch : trunk
* | Fix typo. Closes #343Christopher Denter2009-04-281-1/+1
|/ | | | | --HG-- branch : trunk
* Added support for line-based comments.Armin Ronacher2009-03-301-0/+8
| | | | | --HG-- branch : trunk
* Applied documentation patches by Clemens Hermann.Armin Ronacher2009-03-183-17/+16
| | | | | --HG-- branch : trunk
* Added support for optional `scoped` modifier to blocks.Armin Ronacher2009-02-191-0/+26
| | | | | --HG-- branch : trunk
* Fixed a documenation bug in the cache extension.Armin Ronacher2009-02-081-1/+1
| | | | | --HG-- branch : trunk
* Priority of `not` raised. It's now possible to write `not foo in bar`Armin Ronacher2009-02-042-2/+3
| | | | | | | | as an alias to `foo not in bar` like in python. Previously the grammar required parentheses (`not (foo in bar)`) which was odd. --HG-- branch : trunk
* Include statements can now be marked with ``ignore missing`` to skipArmin Ronacher2008-12-271-0/+10
| | | | | | | non existing templates. --HG-- branch : trunk
* Fixed a typoArmin Ronacher2008-12-081-1/+1
| | | | | --HG-- branch : trunk
* Updated documentation to reflect the new speedups installation behavior.2.1Armin Ronacher2008-11-231-1/+33
| | | | | --HG-- branch : trunk
* Added support for `Environment.compile_expression`.Armin Ronacher2008-11-021-1/+1
| | | | | --HG-- branch : trunk
* Implemented and documented "joiner"Armin Ronacher2008-10-131-0/+20
| | | | | --HG-- branch : trunk