summaryrefslogtreecommitdiff
path: root/jinja2/exceptions.py
Commit message (Collapse)AuthorAgeFilesLines
* Better repr for TemplateNotFound.Julien Palard2019-03-181-1/+1
|
* Bump up the copyright to 2017Armin Ronacher2017-01-071-1/+1
|
* Added missing method for template errorsArmin Ronacher2013-05-201-0/+2
|
* Unified constructor for template errors between 2.x and 3.xArmin Ronacher2013-05-201-0/+3
|
* Make the runtime leak less of the version hacksArmin Ronacher2013-05-201-5/+7
|
* Added unicode mixin for unified string logicArmin Ronacher2013-05-191-17/+3
|
* PY3 -> PY2 macroArmin Ronacher2013-05-191-6/+6
|
* Unified version checks where appropriateArmin Ronacher2013-05-191-2/+1
|
* Moved all six usages (ignoring testsuite) into jinja2._compatArmin Ronacher2013-05-191-8/+10
|
* Python 3 exceptions can handle unicode messagesAlex Morega2013-05-181-10/+20
|
* Remove unused importsDaniel Neuhäuser2013-05-181-1/+1
|
* python 3 port: manual fixes, remove 2to3 from setup.py, remove fixersThomas Waldmann2013-05-181-8/+4
|
* python 3 port: automated changes by a slightly modified python-modernizeThomas Waldmann2013-05-171-2/+5
| | | | (replacing unicode with six.text_type, but not replacing u"" by six.u(""))
* Typo fixSimon Sapin2011-12-031-1/+1
|
* Down to 7 failures for Python 3. We're onto something.Armin Ronacher2010-02-101-1/+1
| | | | | --HG-- branch : trunk
* Added comment to why __unicode__ goes after __str__.Armin Ronacher2010-02-101-0/+8
| | | | | --HG-- branch : trunk
* Approaching python3 compatibilityArmin Ronacher2010-02-101-6/+6
| | | | | --HG-- branch : trunk
* It's a new yearArmin Ronacher2010-01-221-1/+1
| | | | | --HG-- branch : trunk
* Fixed the choice include tests.Armin Ronacher2010-01-141-1/+1
| | | | | --HG-- branch : trunk
* include tags are now able to select between multiple templatesArmin Ronacher2010-01-141-2/+32
| | | | | | | | and take the first that exists, if a list of templates is given. --HG-- branch : trunk
* Improved Jinja's debugging support by introducing "@internalcode" which ↵Armin Ronacher2009-02-241-0/+9
| | | | | | | marks code objects that are skipped on tracebacks. Also template errors are now translated as well to help the pylons debugger. --HG-- branch : trunk
* Added a (ugly) hack to the exceptions so that they don't warn under 2.6Armin Ronacher2009-02-191-4/+13
| | | | | --HG-- branch : trunk
* Copyright switch to "The Jinja Team".Armin Ronacher2009-01-041-1/+1
| | | | | --HG-- branch : trunk
* Various cleanups and added custom cycler.Armin Ronacher2008-10-051-13/+26
| | | | | --HG-- branch : trunk
* end of line sequence is no configurableArmin Ronacher2008-05-231-14/+24
| | | | | --HG-- branch : trunk
* improved exception system. now both name (load name) and filename are passed.Armin Ronacher2008-05-161-2/+7
| | | | | --HG-- branch : trunk
* documentation updateArmin Ronacher2008-05-071-0/+6
| | | | | --HG-- branch : trunk
* improved debugging for syntax errorsArmin Ronacher2008-05-011-2/+2
| | | | | --HG-- branch : trunk
* fixed some NameErrorsBenjamin Wiegand2008-04-281-0/+6
| | | | | --HG-- branch : trunk
* autoescaping is separate from finalize now and Markup is completely ignored ↵Armin Ronacher2008-04-281-5/+3
| | | | | | | if the environment is not in autoescape mode --HG-- branch : trunk
* worked on the tests and made undefined fail on comparisons nowArmin Ronacher2008-04-261-5/+1
| | | | | --HG-- branch : trunk
* fixed two typosPriit Laes2008-04-171-1/+1
| | | | | --HG-- branch : trunk
* improved undefined behaviorArmin Ronacher2008-04-171-9/+12
| | | | | --HG-- branch : trunk
* various docstring changesArmin Ronacher2008-04-171-6/+6
| | | | | --HG-- branch : trunk
* updated a few docstrings and removed contribArmin Ronacher2008-04-171-2/+2
| | | | | --HG-- branch : trunk
* added first working pieces of compilerArmin Ronacher2008-04-071-2/+10
| | | | | --HG-- branch : trunk
* a clean restartArmin Ronacher2008-03-311-0/+42
--HG-- branch : trunk rename : jinja/__init__.py => jinja2/__init__.py rename : jinja/_debugger.c => jinja2/_debugger.c rename : jinja/_native.py => jinja2/_native.py rename : jinja/_speedups.c => jinja2/_speedups.c rename : jinja/constants.py => jinja2/constants.py rename : jinja/contrib/__init__.py => jinja2/contrib/__init__.py rename : jinja/contrib/_djangosupport.py => jinja2/contrib/_djangosupport.py rename : jinja/contrib/djangosupport.py => jinja2/contrib/djangosupport.py rename : jinja/datastructure.py => jinja2/datastructure.py rename : jinja/defaults.py => jinja2/defaults.py rename : jinja/environment.py => jinja2/environment.py rename : jinja/exceptions.py => jinja2/exceptions.py rename : jinja/filters.py => jinja2/filters.py rename : jinja/lexer.py => jinja2/lexer.py rename : jinja/loaders.py => jinja2/loaders.py rename : jinja/nodes.py => jinja2/nodes.py rename : jinja/parser.py => jinja2/parser.py rename : jinja/tests.py => jinja2/tests.py rename : jinja/translators/__init__.py => jinja2/translators/__init__.py rename : jinja/translators/python.py => jinja2/translators/python.py rename : jinja/utils.py => jinja2/utils.py