summaryrefslogtreecommitdiff
path: root/jinja2/loaders.py
Commit message (Collapse)AuthorAgeFilesLines
* use fspath instead of strDavid Lord2019-10-211-13/+18
|
* support pathlib in FileSystemLoader and ModuleLoaderAlex Chan2019-10-211-6/+11
|
* PackageLoader doesn't depend on setuptoolsDavid Lord2019-10-171-47/+92
|
* Bump up the copyright to 2017Armin Ronacher2017-01-071-1/+1
|
* Fixed typo in jinja2/loaders.py (#606)Marcelo Jorge Vieira2016-09-021-2/+2
| | | Replaced 'fileame' with 'filename'
* Fix typoÉric Araujo2015-06-011-1/+1
|
* Issue #71: Add `followlinks` parameter to FileSystemLoader.Berker Peksag2013-09-131-3/+13
|
* Fixed prefix loader now properly forward globals.Armin Ronacher2013-08-071-1/+1
| | | | This fixes #238
* Moved all six usages (ignoring testsuite) into jinja2._compatArmin Ronacher2013-05-191-9/+6
|
* Merge pull request #162 from mgax/fix-cachingArmin Ronacher2013-05-191-1/+1
|\ | | | | fix DictLoader `uptodate` callback
| * fix DictLoader `uptodate` callbackAlex Morega2012-11-181-1/+1
| |
* | Remove unused importsDaniel Neuhäuser2013-05-181-1/+1
| |
* | python 3 port: manual fixes, remove 2to3 from setup.py, remove fixersThomas Waldmann2013-05-181-3/+3
| |
* | python 3 port: automated changes by a slightly modified python-modernizeThomas Waldmann2013-05-171-1/+2
|/ | | | (replacing unicode with six.text_type, but not replacing u"" by six.u(""))
* Improved choice and prefix loaders.Armin Ronacher2011-09-131-1/+24
| | | | | | Choice and prefix loaders now dispatch source and template lookup separately in order to work in combination with module loaders as advertised.
* Fix list_modules for PackageLoaderBryan Berg2011-06-131-2/+1
|
* Reference to compile_templatesArmin Ronacher2011-01-291-0/+2
|
* Streamlined code. Removed an unnecessary leftover.Armin Ronacher2010-03-121-9/+2
| | | | | --HG-- branch : trunk
* added a :class:`ModuleLoader` that can load templates fromArmin Ronacher2010-03-121-0/+141
| | | | | | | | | | precompiled sources. The environment now features a method to compile the templates from a configured loader into a zip file or folder. --HG-- branch : trunk extra : rebase_source : 4824f663e4ff58ca3d2176c65fc1b7494e1f0c43
* PrefixLoader raises correct error message now. This fixes #358.Armin Ronacher2010-02-091-2/+7
| | | | | --HG-- branch : trunk
* Improved test invokation. Picks up doctests within Jinja now, changedArmin Ronacher2010-02-071-9/+9
| | | | | | | | doctests that just show usage that would not work on their own so that they are standard code blocks now and do not disturb testing. --HG-- branch : trunk
* It's a new yearArmin Ronacher2010-01-221-1/+1
| | | | | --HG-- branch : trunk
* Improved Jinja's debugging support by introducing "@internalcode" which ↵Armin Ronacher2009-02-241-1/+2
| | | | | | | marks code objects that are skipped on tracebacks. Also template errors are now translated as well to help the pylons debugger. --HG-- branch : trunk
* Copyright switch to "The Jinja Team".Armin Ronacher2009-01-041-1/+1
| | | | | --HG-- branch : trunk
* Implemented and documented "joiner"Armin Ronacher2008-10-131-3/+12
| | | | | --HG-- branch : trunk
* Various cleanups and added custom cycler.Armin Ronacher2008-10-051-4/+5
| | | | | --HG-- branch : trunk
* Fixed bytecode cache and added support for memcached (tests still missing)Armin Ronacher2008-09-181-4/+4
| | | | | --HG-- branch : trunk
* Fixed FileSystemBytecodeCache.clearArmin Ronacher2008-09-171-1/+1
| | | | | --HG-- branch : trunk
* Improved bbcache and documented it.Armin Ronacher2008-09-171-6/+16
| | | | | --HG-- branch : trunk
* Added experimental and undocumented bytecode cache supportArmin Ronacher2008-09-171-1/+14
| | | | | --HG-- branch : trunk
* Disabled iron python support until new lexer is implemented.Armin Ronacher2008-09-131-5/+1
| | | | | --HG-- branch : trunk
* More work on the ironpython supportArmin Ronacher2008-08-171-1/+5
| | | | | --HG-- branch : trunk
* Added non-babel output mode to extract_from_ast, integreated jinja2 doctests ↵Armin Ronacher2008-06-271-1/+1
| | | | | | | directly into the py.test suite (ugh, that's an ugly hack) --HG-- branch : trunk
* Fixed some minor glitches.Armin Ronacher2008-06-201-2/+5
| | | | | --HG-- branch : trunk
* data files are optional nowArmin Ronacher2008-05-281-1/+1
| | | | | --HG-- branch : trunk
* fixed a bug in error reporting and some small documentation updatesArmin Ronacher2008-05-261-1/+1
| | | | | --HG-- branch : trunk
* removed unused importsArmin Ronacher2008-05-131-1/+1
| | | | | --HG-- branch : trunk
* fixed template reloadingArmin Ronacher2008-05-041-3/+3
| | | | | --HG-- branch : trunk
* updated filters: wordwraps uses the wordwrap module and urlize marks the ↵Armin Ronacher2008-05-031-5/+1
| | | | | | | result as HTML now if in autoescape mode --HG-- branch : trunk
* moved caching from loaders to environment and added environment overlaysArmin Ronacher2008-04-301-40/+16
| | | | | --HG-- branch : trunk
* autoescaping is separate from finalize now and Markup is completely ignored ↵Armin Ronacher2008-04-281-22/+115
| | | | | | | if the environment is not in autoescape mode --HG-- branch : trunk
* moved `IncludedTemplate` into the regular template API, fixed more unittestsArmin Ronacher2008-04-251-5/+8
| | | | | --HG-- branch : trunk
* inheritance uses a less awkward hack for contexts now and subclassing ↵Armin Ronacher2008-04-241-4/+63
| | | | | | | templates is possible --HG-- branch : trunk
* fixed more unittestsArmin Ronacher2008-04-181-4/+7
| | | | | --HG-- branch : trunk
* improved undefined behaviorArmin Ronacher2008-04-171-18/+44
| | | | | --HG-- branch : trunk
* simplified loader api and added builtin cachingArmin Ronacher2008-04-171-17/+75
| | | | | --HG-- branch : trunk
* better debugging information. compiler knows about name and filename now ↵Armin Ronacher2008-04-161-2/+2
| | | | | | | (the first one is the load name, the second the estimated filename on the file system if such a name exists) --HG-- branch : trunk
* added new python only debug hackArmin Ronacher2008-04-161-2/+2
| | | | | --HG-- branch : trunk
* added globalsArmin Ronacher2008-04-131-3/+3
| | | | | --HG-- branch : trunk
* basic inheritance works nowArmin Ronacher2008-04-111-0/+11
| | | | | --HG-- branch : trunk