Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
.gitattributes | D | 12-May-2024 | 631 | 16 | 15 | |
.gitignore | D | 12-May-2024 | 18 | 3 | 2 | |
LICENSE.rst | D | 12-May-2024 | 1.4 KiB | 29 | 23 | |
NOTICE | D | 12-May-2024 | 1.4 KiB | 29 | 23 | |
OAT.xml | D | 12-May-2024 | 3.8 KiB | 66 | 11 | |
README.OpenSource | D | 12-May-2024 | 455 | 12 | 11 | |
README.modification | D | 12-May-2024 | 597 | 20 | 14 | |
README.rst | D | 12-May-2024 | 1.8 KiB | 67 | 49 | |
__init__.py | D | 12-May-2024 | 1.5 KiB | 45 | 41 | |
_compat.py | D | 12-May-2024 | 3.1 KiB | 133 | 93 | |
_identifier.py | D | 12-May-2024 | 1.7 KiB | 7 | 4 | |
asyncfilters.py | D | 12-May-2024 | 4.2 KiB | 159 | 113 | |
asyncsupport.py | D | 12-May-2024 | 7 KiB | 265 | 192 | |
bccache.py | D | 12-May-2024 | 11.9 KiB | 351 | 274 | |
bundle.json | D | 12-May-2024 | 905 | 35 | 34 | |
compiler.py | D | 12-May-2024 | 64.7 KiB | 1,844 | 1,463 | |
constants.py | D | 12-May-2024 | 1.4 KiB | 22 | 19 | |
debug.py | D | 12-May-2024 | 8.3 KiB | 269 | 173 | |
defaults.py | D | 12-May-2024 | 1.1 KiB | 45 | 36 | |
environment.py | D | 12-May-2024 | 49.4 KiB | 1,363 | 1,107 | |
exceptions.py | D | 12-May-2024 | 5.3 KiB | 178 | 119 | |
ext.py | D | 12-May-2024 | 25.8 KiB | 705 | 549 | |
filters.py | D | 12-May-2024 | 40.5 KiB | 1,383 | 1,047 | |
idtracking.py | D | 12-May-2024 | 9 KiB | 291 | 228 | |
jinja2.gni | D | 12-May-2024 | 1 KiB | 30 | 29 | |
lexer.py | D | 12-May-2024 | 29.6 KiB | 849 | 683 | |
loaders.py | D | 12-May-2024 | 17.3 KiB | 505 | 372 | |
meta.py | D | 12-May-2024 | 4 KiB | 102 | 76 | |
nativetypes.py | D | 12-May-2024 | 2.7 KiB | 95 | 68 | |
nodes.py | D | 12-May-2024 | 30.4 KiB | 1,089 | 756 | |
optimizer.py | D | 12-May-2024 | 1.4 KiB | 42 | 30 | |
parser.py | D | 12-May-2024 | 34.8 KiB | 940 | 828 | |
runtime.py | D | 12-May-2024 | 29.9 KiB | 1,012 | 794 | |
sandbox.py | D | 12-May-2024 | 16.7 KiB | 511 | 379 | |
tests.py | D | 12-May-2024 | 4.7 KiB | 216 | 154 | |
utils.py | D | 12-May-2024 | 21.9 KiB | 738 | 572 | |
visitor.py | D | 12-May-2024 | 3.2 KiB | 82 | 69 |
README.OpenSource
1[ 2 { 3 "Name": "Jinja2", 4 "License": "BSD 3-clause License", 5 "License File": "LICENSE.rst", 6 "Version Number": "2.11.3", 7 "Owner": "anguanglin@huawei.com", 8 "Upstream URL": "https://github.com/pallets/jinja", 9 "Description": "Jinja2 is a template engine written in pure Python. It provides a Django inspired non-XML syntax but supports inline expressions and an optional sandboxed environment." 10 } 11] 12
README.modification
1Name: Jinja2 2Version: 2.11.1 3License: BSD 3-clause License 4 5Website: http://jinja.pocoo.org/ 6 7Description:(from Website) 8Jinja2 is a full-featured template engine for Python. It has full unicode 9support, an optional integrated sandboxed execution environment, widely used 10and BSD licensed. 11 12 13Source: 14https://files.pythonhosted.org/packages/d8/03/e491f423379ea14bb3a02a5238507f7d446de639b623187bccc111fbecdf/Jinja2-2.11.1.tar.gz 15MD5: 5d88c7e77aa63fc852a04f65dbfe5594 16 17Local Modifications: 18Only includes the jinja2 directory from the tarball and the LICENSE and 19AUTHORS files, removing other stuff. 20
README.rst
1Jinja 2===== 3 4Jinja is a fast, expressive, extensible templating engine. Special 5placeholders in the template allow writing code similar to Python 6syntax. Then the template is passed data to render the final document. 7 8It includes: 9 10- Template inheritance and inclusion. 11- Define and import macros within templates. 12- HTML templates can use autoescaping to prevent XSS from untrusted 13 user input. 14- A sandboxed environment can safely render untrusted templates. 15- AsyncIO support for generating templates and calling async 16 functions. 17- I18N support with Babel. 18- Templates are compiled to optimized Python code just-in-time and 19 cached, or can be compiled ahead-of-time. 20- Exceptions point to the correct line in templates to make debugging 21 easier. 22- Extensible filters, tests, functions, and even syntax. 23 24Jinja's philosophy is that while application logic belongs in Python if 25possible, it shouldn't make the template designer's job difficult by 26restricting functionality too much. 27 28 29Installing 30---------- 31 32Install and update using `pip`_: 33 34.. code-block:: text 35 36 $ pip install -U Jinja2 37 38.. _pip: https://pip.pypa.io/en/stable/quickstart/ 39 40 41In A Nutshell 42------------- 43 44.. code-block:: jinja 45 46 {% extends "base.html" %} 47 {% block title %}Members{% endblock %} 48 {% block content %} 49 <ul> 50 {% for user in users %} 51 <li><a href="{{ user.url }}">{{ user.username }}</a></li> 52 {% endfor %} 53 </ul> 54 {% endblock %} 55 56 57Links 58----- 59 60- Website: https://palletsprojects.com/p/jinja/ 61- Documentation: https://jinja.palletsprojects.com/ 62- Releases: https://pypi.org/project/Jinja2/ 63- Code: https://github.com/pallets/jinja 64- Issue tracker: https://github.com/pallets/jinja/issues 65- Test status: https://dev.azure.com/pallets/jinja/_build 66- Official chat: https://discord.gg/t6rrQZH 67