├── .gitignore ├── .travis.yml ├── CHANGELOG ├── CONTRIBUTORS ├── LICENSE ├── MANIFEST.in ├── README.rst ├── contribute.json ├── docs ├── Makefile ├── conf.py └── index.rst ├── examples └── jingo-project │ ├── __init__.py │ ├── locale │ └── xx │ │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po │ └── settings.py ├── fake_settings.py ├── jingo ├── __init__.py ├── ext.py ├── monkey.py └── tests │ ├── __init__.py │ ├── django_app │ ├── __init__.py │ ├── helpers.py │ └── templates │ │ └── django_app │ │ ├── test_nonoverride.html │ │ └── test_override.html │ ├── jinja_app │ ├── __init__.py │ └── templates │ │ └── jinja_app │ │ ├── test_nonoverride.html │ │ └── test_override.html │ ├── templates │ ├── django_app │ │ ├── test.html │ │ └── test_override.html │ └── jinja_app │ │ ├── test.html │ │ └── test_override.html │ ├── test_basics.py │ ├── test_helpers.py │ ├── test_loader.py │ ├── test_monkey.py │ ├── test_views.py │ ├── urls.py │ └── utils.py ├── requirements.txt ├── run_tests.py ├── setup.cfg ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/README.rst -------------------------------------------------------------------------------- /contribute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/contribute.json -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/docs/index.rst -------------------------------------------------------------------------------- /examples/jingo-project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/jingo-project/locale/xx/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/examples/jingo-project/locale/xx/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /examples/jingo-project/locale/xx/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/examples/jingo-project/locale/xx/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /examples/jingo-project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/examples/jingo-project/settings.py -------------------------------------------------------------------------------- /fake_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/fake_settings.py -------------------------------------------------------------------------------- /jingo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/jingo/__init__.py -------------------------------------------------------------------------------- /jingo/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/jingo/ext.py -------------------------------------------------------------------------------- /jingo/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/jingo/monkey.py -------------------------------------------------------------------------------- /jingo/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jingo/tests/django_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jingo/tests/django_app/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/jingo/tests/django_app/helpers.py -------------------------------------------------------------------------------- /jingo/tests/django_app/templates/django_app/test_nonoverride.html: -------------------------------------------------------------------------------- 1 | {{ 'HELLO WORLD'|truncatewords:"1" }} 2 | -------------------------------------------------------------------------------- /jingo/tests/django_app/templates/django_app/test_override.html: -------------------------------------------------------------------------------- 1 | {{ 'GOODBYE CRUEL WORLD'|truncatewords:"1" }} 2 | -------------------------------------------------------------------------------- /jingo/tests/jinja_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jingo/tests/jinja_app/templates/jinja_app/test_nonoverride.html: -------------------------------------------------------------------------------- 1 | {{ 'hello'.upper() }} 2 | -------------------------------------------------------------------------------- /jingo/tests/jinja_app/templates/jinja_app/test_override.html: -------------------------------------------------------------------------------- 1 | {{ 'goodbye'.upper() }} 2 | -------------------------------------------------------------------------------- /jingo/tests/templates/django_app/test.html: -------------------------------------------------------------------------------- 1 | {{ 'HELLO WORLD'|truncatewords:"1" }} 2 | -------------------------------------------------------------------------------- /jingo/tests/templates/django_app/test_override.html: -------------------------------------------------------------------------------- 1 | {{ 'HELLO WORLD'|truncatewords:"1" }} 2 | -------------------------------------------------------------------------------- /jingo/tests/templates/jinja_app/test.html: -------------------------------------------------------------------------------- 1 | {{ 'hello'.upper() }} 2 | -------------------------------------------------------------------------------- /jingo/tests/templates/jinja_app/test_override.html: -------------------------------------------------------------------------------- 1 | {{ 'hello'.upper() }} 2 | -------------------------------------------------------------------------------- /jingo/tests/test_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/jingo/tests/test_basics.py -------------------------------------------------------------------------------- /jingo/tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/jingo/tests/test_helpers.py -------------------------------------------------------------------------------- /jingo/tests/test_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/jingo/tests/test_loader.py -------------------------------------------------------------------------------- /jingo/tests/test_monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/jingo/tests/test_monkey.py -------------------------------------------------------------------------------- /jingo/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/jingo/tests/test_views.py -------------------------------------------------------------------------------- /jingo/tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/jingo/tests/urls.py -------------------------------------------------------------------------------- /jingo/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/jingo/tests/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/run_tests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbalogh/jingo/HEAD/tox.ini --------------------------------------------------------------------------------