├── .codecov.yml ├── .github ├── dependabot.yml └── workflows │ ├── lint.yml │ ├── release.yml │ ├── scorecard.yml │ ├── test.yml │ ├── update_coc.yml │ └── zizmor.yml ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── doc ├── .readthedocs.yaml └── source │ ├── changelog.rst │ ├── commands.rst │ ├── conf.py │ ├── configuration.rst │ ├── index.rst │ ├── installation.rst │ ├── migration.rst │ ├── quick.rst │ ├── reference │ ├── backends.rst │ ├── context.rst │ ├── engine.rst │ ├── exceptions.rst │ ├── index.rst │ ├── loaders.rst │ ├── origin.rst │ ├── placeholders.rst │ ├── resource.rst │ ├── templatetags.rst │ └── transpilers │ │ ├── defines_to_js.rst │ │ ├── enums_to_js.rst │ │ ├── index.rst │ │ └── urls_to_js.rst │ ├── runtimes.rst │ └── templatetags.rst ├── justfile ├── pyproject.toml ├── src └── render_static │ ├── __init__.py │ ├── apps.py │ ├── backends │ ├── __init__.py │ ├── base.py │ ├── django.py │ └── jinja2.py │ ├── context.py │ ├── engine.py │ ├── exceptions.py │ ├── loaders │ ├── __init__.py │ ├── django.py │ ├── jinja2.py │ ├── mixins.py │ └── utils.py │ ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── renderstatic.py │ ├── origin.py │ ├── placeholders.py │ ├── resource.py │ ├── static_templates │ └── render_static │ │ ├── defines.js │ │ ├── enums.js │ │ └── urls.js │ ├── templatetags │ ├── __init__.py │ └── render_static.py │ └── transpilers │ ├── __init__.py │ ├── base.py │ ├── defines_to_js.py │ ├── enums_to_js.py │ └── urls_to_js.py ├── tests ├── __init__.py ├── app1 │ ├── __init__.py │ ├── apps.py │ ├── defines.py │ ├── static_jinja2 │ │ ├── app1 │ │ │ └── html │ │ │ │ └── app_jinja2.html │ │ └── batch_test │ │ │ ├── __init__.py │ │ │ └── {{ site_name }} │ │ │ ├── __init__.py │ │ │ ├── file1.py │ │ │ └── file2.html │ ├── static_templates │ │ ├── app1 │ │ │ └── html │ │ │ │ ├── base.html │ │ │ │ ├── hello.html │ │ │ │ └── nominal1.html │ │ ├── batch_test │ │ │ ├── __init__.py │ │ │ └── {{ site_name }} │ │ │ │ ├── __init__.py │ │ │ │ ├── file1.py │ │ │ │ └── file2.html │ │ └── exclusive │ │ │ ├── template1.html │ │ │ └── template6.html │ └── urls.py ├── app2 │ ├── __init__.py │ ├── apps.py │ ├── custom_jinja2 │ │ └── app1 │ │ │ └── html │ │ │ └── app_jinja2.html │ ├── custom_templates │ │ ├── nominal_fs.html │ │ └── nominal_fs2.html │ ├── static_jinja2 │ │ ├── app1 │ │ │ ├── glob1.js │ │ │ ├── glob2.js │ │ │ ├── html │ │ │ │ └── app_jinja2.html │ │ │ └── other.js │ │ └── app2 │ │ │ └── html │ │ │ └── inheritance.html │ ├── static_templates │ │ ├── app1 │ │ │ └── html │ │ │ │ ├── inheritance.html │ │ │ │ ├── nominal1.html │ │ │ │ └── nominal2.html │ │ └── exclusive │ │ │ ├── template1.html │ │ │ ├── template2.html │ │ │ └── template5.html │ └── urls.py ├── app3 │ ├── __init__.py │ ├── apps.py │ └── urls.py ├── bad_pattern.py ├── batch_templates │ ├── file.txt │ ├── folder1 │ │ ├── __pycache__ │ │ │ └── empty │ │ ├── file1_1.txt │ │ └── file1_2.txt │ └── folder2 │ │ ├── file2_1.txt │ │ └── file2_2.txt ├── chain │ ├── __init__.py │ ├── apps.py │ └── urls.py ├── context.py ├── defines.py ├── defines2.py ├── empty_defines.py ├── enum_app │ ├── __init__.py │ ├── apps.py │ ├── defines.py │ ├── enums.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── static_templates │ │ └── enum_app │ │ │ ├── enum.js │ │ │ └── test.js │ ├── templatetags │ │ ├── __init__.py │ │ └── enum_test.py │ └── urls.py ├── ex_urls.py ├── examples │ ├── __init__.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── static │ │ └── examples │ │ │ ├── defines.js │ │ │ ├── enums.js │ │ │ └── readme_url_usage.js │ ├── static_templates │ │ └── examples │ │ │ ├── defines.js │ │ │ ├── enums.js │ │ │ └── readme_url_usage.js │ └── urls.py ├── expected │ ├── HELLO_U.html │ ├── app1_jinja2.html │ ├── app1_template1.html │ ├── app1_template6.html │ ├── app2_jinja2.html │ ├── app2_template1.html │ ├── app2_template2.html │ ├── app2_template5.html │ ├── ctx_override.html │ ├── ctx_override2.html │ ├── ctx_override_cmdline.html │ ├── dest_override.html │ ├── glb2_template1.html │ ├── glb2_template4.html │ ├── glb_template1.html │ ├── glb_template2.html │ ├── glb_template3.html │ ├── hello_l.html │ ├── inheritance.html │ ├── inheritance_jinja2.html │ ├── multi_1_jinja2.html │ ├── multi_2_jinja2.html │ ├── nominal1.html │ ├── nominal2.html │ ├── nominal_fs.html │ ├── nominal_fs2.html │ ├── nominal_jinja2.html │ └── wildcard_test.js ├── js_reverse_urls.py ├── resources │ ├── __init__.py │ ├── bad.json │ ├── bad.yaml │ ├── bad_code.py │ ├── context.json │ ├── context.py │ ├── context.yaml │ ├── context_embedded.py │ └── override.yaml ├── settings.py ├── spa │ ├── __init__.py │ ├── apps.py │ ├── static_templates │ │ └── spa │ │ │ └── urls.js │ ├── templates │ │ └── spa │ │ │ └── index.html │ ├── urls.py │ └── views.py ├── spa_urls.py ├── static_templates │ ├── batch_fs_test0.html │ ├── batch_fs_test1.html │ ├── exclusive │ │ ├── template1.html │ │ ├── template2.html │ │ └── template3.html │ ├── multi_test.jinja2 │ ├── nominal.jinja2 │ ├── nominal_fs.html │ └── subdir │ │ └── batch_fs_test2.html ├── static_templates2 │ └── exclusive │ │ ├── template1.html │ │ └── template4.html ├── test_batch.py ├── test_batch_jinja2.py ├── test_core.py ├── test_examples.py ├── test_jinja2.py ├── test_js.py ├── test_traversal.py ├── test_web.py ├── test_yaml.py ├── traverse │ ├── __init__.py │ ├── models.py │ ├── module1.py │ └── sub_pkg │ │ ├── __init__.py │ │ └── module2.py ├── urls.py ├── urls2.py ├── urls3.py ├── urls4.py ├── urls5.py ├── urls_bug_13.py ├── urls_bug_65.py ├── urls_default_args.py ├── urls_precedence.py ├── verify_environment.py └── views.py └── uv.lock /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/update_coc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/.github/workflows/update_coc.yml -------------------------------------------------------------------------------- /.github/workflows/zizmor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/.github/workflows/zizmor.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/SECURITY.md -------------------------------------------------------------------------------- /doc/.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/.readthedocs.yaml -------------------------------------------------------------------------------- /doc/source/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/source/changelog.rst -------------------------------------------------------------------------------- /doc/source/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/source/commands.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/source/configuration.rst -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/source/installation.rst -------------------------------------------------------------------------------- /doc/source/migration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/source/migration.rst -------------------------------------------------------------------------------- /doc/source/quick.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/source/quick.rst -------------------------------------------------------------------------------- /doc/source/reference/backends.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/source/reference/backends.rst -------------------------------------------------------------------------------- /doc/source/reference/context.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/source/reference/context.rst -------------------------------------------------------------------------------- /doc/source/reference/engine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/source/reference/engine.rst -------------------------------------------------------------------------------- /doc/source/reference/exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/source/reference/exceptions.rst -------------------------------------------------------------------------------- /doc/source/reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/source/reference/index.rst -------------------------------------------------------------------------------- /doc/source/reference/loaders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/source/reference/loaders.rst -------------------------------------------------------------------------------- /doc/source/reference/origin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/source/reference/origin.rst -------------------------------------------------------------------------------- /doc/source/reference/placeholders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/source/reference/placeholders.rst -------------------------------------------------------------------------------- /doc/source/reference/resource.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/source/reference/resource.rst -------------------------------------------------------------------------------- /doc/source/reference/templatetags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/source/reference/templatetags.rst -------------------------------------------------------------------------------- /doc/source/reference/transpilers/defines_to_js.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/source/reference/transpilers/defines_to_js.rst -------------------------------------------------------------------------------- /doc/source/reference/transpilers/enums_to_js.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/source/reference/transpilers/enums_to_js.rst -------------------------------------------------------------------------------- /doc/source/reference/transpilers/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/source/reference/transpilers/index.rst -------------------------------------------------------------------------------- /doc/source/reference/transpilers/urls_to_js.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/source/reference/transpilers/urls_to_js.rst -------------------------------------------------------------------------------- /doc/source/runtimes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/source/runtimes.rst -------------------------------------------------------------------------------- /doc/source/templatetags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/doc/source/templatetags.rst -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/justfile -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/render_static/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/__init__.py -------------------------------------------------------------------------------- /src/render_static/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/apps.py -------------------------------------------------------------------------------- /src/render_static/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/backends/__init__.py -------------------------------------------------------------------------------- /src/render_static/backends/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/backends/base.py -------------------------------------------------------------------------------- /src/render_static/backends/django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/backends/django.py -------------------------------------------------------------------------------- /src/render_static/backends/jinja2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/backends/jinja2.py -------------------------------------------------------------------------------- /src/render_static/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/context.py -------------------------------------------------------------------------------- /src/render_static/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/engine.py -------------------------------------------------------------------------------- /src/render_static/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/exceptions.py -------------------------------------------------------------------------------- /src/render_static/loaders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/loaders/__init__.py -------------------------------------------------------------------------------- /src/render_static/loaders/django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/loaders/django.py -------------------------------------------------------------------------------- /src/render_static/loaders/jinja2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/loaders/jinja2.py -------------------------------------------------------------------------------- /src/render_static/loaders/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/loaders/mixins.py -------------------------------------------------------------------------------- /src/render_static/loaders/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/loaders/utils.py -------------------------------------------------------------------------------- /src/render_static/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/render_static/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/render_static/management/commands/renderstatic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/management/commands/renderstatic.py -------------------------------------------------------------------------------- /src/render_static/origin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/origin.py -------------------------------------------------------------------------------- /src/render_static/placeholders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/placeholders.py -------------------------------------------------------------------------------- /src/render_static/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/resource.py -------------------------------------------------------------------------------- /src/render_static/static_templates/render_static/defines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/static_templates/render_static/defines.js -------------------------------------------------------------------------------- /src/render_static/static_templates/render_static/enums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/static_templates/render_static/enums.js -------------------------------------------------------------------------------- /src/render_static/static_templates/render_static/urls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/static_templates/render_static/urls.js -------------------------------------------------------------------------------- /src/render_static/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/render_static/templatetags/render_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/templatetags/render_static.py -------------------------------------------------------------------------------- /src/render_static/transpilers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/transpilers/__init__.py -------------------------------------------------------------------------------- /src/render_static/transpilers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/transpilers/base.py -------------------------------------------------------------------------------- /src/render_static/transpilers/defines_to_js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/transpilers/defines_to_js.py -------------------------------------------------------------------------------- /src/render_static/transpilers/enums_to_js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/transpilers/enums_to_js.py -------------------------------------------------------------------------------- /src/render_static/transpilers/urls_to_js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/src/render_static/transpilers/urls_to_js.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/app1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/app1/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/app1/apps.py -------------------------------------------------------------------------------- /tests/app1/defines.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/app1/static_jinja2/app1/html/app_jinja2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/app1/static_jinja2/app1/html/app_jinja2.html -------------------------------------------------------------------------------- /tests/app1/static_jinja2/batch_test/__init__.py: -------------------------------------------------------------------------------- 1 | {{variable}} 2 | -------------------------------------------------------------------------------- /tests/app1/static_jinja2/batch_test/{{ site_name }}/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/app1/static_jinja2/batch_test/{{ site_name }}/file1.py: -------------------------------------------------------------------------------- 1 | {{variable1}} 2 | -------------------------------------------------------------------------------- /tests/app1/static_jinja2/batch_test/{{ site_name }}/file2.html: -------------------------------------------------------------------------------- 1 | {{ variable2 }} 2 | -------------------------------------------------------------------------------- /tests/app1/static_templates/app1/html/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/app1/static_templates/app1/html/base.html -------------------------------------------------------------------------------- /tests/app1/static_templates/app1/html/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/app1/static_templates/app1/html/hello.html -------------------------------------------------------------------------------- /tests/app1/static_templates/app1/html/nominal1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/app1/static_templates/app1/html/nominal1.html -------------------------------------------------------------------------------- /tests/app1/static_templates/batch_test/__init__.py: -------------------------------------------------------------------------------- 1 | {{variable}} 2 | -------------------------------------------------------------------------------- /tests/app1/static_templates/batch_test/{{ site_name }}/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/app1/static_templates/batch_test/{{ site_name }}/file1.py: -------------------------------------------------------------------------------- 1 | {{variable1}} 2 | -------------------------------------------------------------------------------- /tests/app1/static_templates/batch_test/{{ site_name }}/file2.html: -------------------------------------------------------------------------------- 1 | {{ variable2 }} 2 | -------------------------------------------------------------------------------- /tests/app1/static_templates/exclusive/template1.html: -------------------------------------------------------------------------------- 1 | app1 template1 -------------------------------------------------------------------------------- /tests/app1/static_templates/exclusive/template6.html: -------------------------------------------------------------------------------- 1 | app1 template6 -------------------------------------------------------------------------------- /tests/app1/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/app1/urls.py -------------------------------------------------------------------------------- /tests/app2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/app2/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/app2/apps.py -------------------------------------------------------------------------------- /tests/app2/custom_jinja2/app1/html/app_jinja2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/app2/custom_jinja2/app1/html/app_jinja2.html -------------------------------------------------------------------------------- /tests/app2/custom_templates/nominal_fs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/app2/custom_templates/nominal_fs.html -------------------------------------------------------------------------------- /tests/app2/custom_templates/nominal_fs2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/app2/custom_templates/nominal_fs2.html -------------------------------------------------------------------------------- /tests/app2/static_jinja2/app1/glob1.js: -------------------------------------------------------------------------------- 1 | {{ split("1,2,3", ",") }} 2 | -------------------------------------------------------------------------------- /tests/app2/static_jinja2/app1/glob2.js: -------------------------------------------------------------------------------- 1 | {{ split("1,2,3", ",") }} 2 | -------------------------------------------------------------------------------- /tests/app2/static_jinja2/app1/html/app_jinja2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/app2/static_jinja2/app1/html/app_jinja2.html -------------------------------------------------------------------------------- /tests/app2/static_jinja2/app1/other.js: -------------------------------------------------------------------------------- 1 | {{ split("1,2,3", ",") }} 2 | -------------------------------------------------------------------------------- /tests/app2/static_jinja2/app2/html/inheritance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/app2/static_jinja2/app2/html/inheritance.html -------------------------------------------------------------------------------- /tests/app2/static_templates/app1/html/inheritance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/app2/static_templates/app1/html/inheritance.html -------------------------------------------------------------------------------- /tests/app2/static_templates/app1/html/nominal1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/app2/static_templates/app1/html/nominal1.html -------------------------------------------------------------------------------- /tests/app2/static_templates/app1/html/nominal2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/app2/static_templates/app1/html/nominal2.html -------------------------------------------------------------------------------- /tests/app2/static_templates/exclusive/template1.html: -------------------------------------------------------------------------------- 1 | app2 template1 -------------------------------------------------------------------------------- /tests/app2/static_templates/exclusive/template2.html: -------------------------------------------------------------------------------- 1 | app2 template2 -------------------------------------------------------------------------------- /tests/app2/static_templates/exclusive/template5.html: -------------------------------------------------------------------------------- 1 | app2 template5 -------------------------------------------------------------------------------- /tests/app2/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/app2/urls.py -------------------------------------------------------------------------------- /tests/app3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/app3/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/app3/apps.py -------------------------------------------------------------------------------- /tests/app3/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/app3/urls.py -------------------------------------------------------------------------------- /tests/bad_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/bad_pattern.py -------------------------------------------------------------------------------- /tests/batch_templates/file.txt: -------------------------------------------------------------------------------- 1 | file.txt: {{ variable }} 2 | -------------------------------------------------------------------------------- /tests/batch_templates/folder1/__pycache__/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/batch_templates/folder1/file1_1.txt: -------------------------------------------------------------------------------- 1 | file1_1.txt: {{ variable }} 2 | -------------------------------------------------------------------------------- /tests/batch_templates/folder1/file1_2.txt: -------------------------------------------------------------------------------- 1 | file1_2.txt: {{ variable }} 2 | -------------------------------------------------------------------------------- /tests/batch_templates/folder2/file2_1.txt: -------------------------------------------------------------------------------- 1 | file2_1.txt: {{ variable }} 2 | -------------------------------------------------------------------------------- /tests/batch_templates/folder2/file2_2.txt: -------------------------------------------------------------------------------- 1 | file2_2.txt: {{ variable }} 2 | -------------------------------------------------------------------------------- /tests/chain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/chain/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/chain/apps.py -------------------------------------------------------------------------------- /tests/chain/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/chain/urls.py -------------------------------------------------------------------------------- /tests/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/context.py -------------------------------------------------------------------------------- /tests/defines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/defines.py -------------------------------------------------------------------------------- /tests/defines2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/defines2.py -------------------------------------------------------------------------------- /tests/empty_defines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/empty_defines.py -------------------------------------------------------------------------------- /tests/enum_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/enum_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/enum_app/apps.py -------------------------------------------------------------------------------- /tests/enum_app/defines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/enum_app/defines.py -------------------------------------------------------------------------------- /tests/enum_app/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/enum_app/enums.py -------------------------------------------------------------------------------- /tests/enum_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/enum_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/enum_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/enum_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/enum_app/models.py -------------------------------------------------------------------------------- /tests/enum_app/static_templates/enum_app/enum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/enum_app/static_templates/enum_app/enum.js -------------------------------------------------------------------------------- /tests/enum_app/static_templates/enum_app/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/enum_app/static_templates/enum_app/test.js -------------------------------------------------------------------------------- /tests/enum_app/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/enum_app/templatetags/enum_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/enum_app/templatetags/enum_test.py -------------------------------------------------------------------------------- /tests/enum_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/enum_app/urls.py -------------------------------------------------------------------------------- /tests/ex_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/ex_urls.py -------------------------------------------------------------------------------- /tests/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/examples/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/examples/apps.py -------------------------------------------------------------------------------- /tests/examples/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/examples/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/examples/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/examples/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/examples/models.py -------------------------------------------------------------------------------- /tests/examples/static/examples/defines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/examples/static/examples/defines.js -------------------------------------------------------------------------------- /tests/examples/static/examples/enums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/examples/static/examples/enums.js -------------------------------------------------------------------------------- /tests/examples/static/examples/readme_url_usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/examples/static/examples/readme_url_usage.js -------------------------------------------------------------------------------- /tests/examples/static_templates/examples/defines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/examples/static_templates/examples/defines.js -------------------------------------------------------------------------------- /tests/examples/static_templates/examples/enums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/examples/static_templates/examples/enums.js -------------------------------------------------------------------------------- /tests/examples/static_templates/examples/readme_url_usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/examples/static_templates/examples/readme_url_usage.js -------------------------------------------------------------------------------- /tests/examples/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/examples/urls.py -------------------------------------------------------------------------------- /tests/expected/HELLO_U.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/expected/HELLO_U.html -------------------------------------------------------------------------------- /tests/expected/app1_jinja2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/expected/app1_jinja2.html -------------------------------------------------------------------------------- /tests/expected/app1_template1.html: -------------------------------------------------------------------------------- 1 | app1 template1 -------------------------------------------------------------------------------- /tests/expected/app1_template6.html: -------------------------------------------------------------------------------- 1 | app1 template6 -------------------------------------------------------------------------------- /tests/expected/app2_jinja2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/expected/app2_jinja2.html -------------------------------------------------------------------------------- /tests/expected/app2_template1.html: -------------------------------------------------------------------------------- 1 | app2 template1 -------------------------------------------------------------------------------- /tests/expected/app2_template2.html: -------------------------------------------------------------------------------- 1 | app2 template2 -------------------------------------------------------------------------------- /tests/expected/app2_template5.html: -------------------------------------------------------------------------------- 1 | app2 template5 -------------------------------------------------------------------------------- /tests/expected/ctx_override.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/expected/ctx_override.html -------------------------------------------------------------------------------- /tests/expected/ctx_override2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/expected/ctx_override2.html -------------------------------------------------------------------------------- /tests/expected/ctx_override_cmdline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/expected/ctx_override_cmdline.html -------------------------------------------------------------------------------- /tests/expected/dest_override.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/expected/dest_override.html -------------------------------------------------------------------------------- /tests/expected/glb2_template1.html: -------------------------------------------------------------------------------- 1 | global2 template1 -------------------------------------------------------------------------------- /tests/expected/glb2_template4.html: -------------------------------------------------------------------------------- 1 | global2 template4 -------------------------------------------------------------------------------- /tests/expected/glb_template1.html: -------------------------------------------------------------------------------- 1 | global template1 -------------------------------------------------------------------------------- /tests/expected/glb_template2.html: -------------------------------------------------------------------------------- 1 | global template2 -------------------------------------------------------------------------------- /tests/expected/glb_template3.html: -------------------------------------------------------------------------------- 1 | global template3 -------------------------------------------------------------------------------- /tests/expected/hello_l.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/expected/hello_l.html -------------------------------------------------------------------------------- /tests/expected/inheritance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/expected/inheritance.html -------------------------------------------------------------------------------- /tests/expected/inheritance_jinja2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/expected/inheritance_jinja2.html -------------------------------------------------------------------------------- /tests/expected/multi_1_jinja2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/expected/multi_1_jinja2.html -------------------------------------------------------------------------------- /tests/expected/multi_2_jinja2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/expected/multi_2_jinja2.html -------------------------------------------------------------------------------- /tests/expected/nominal1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/expected/nominal1.html -------------------------------------------------------------------------------- /tests/expected/nominal2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/expected/nominal2.html -------------------------------------------------------------------------------- /tests/expected/nominal_fs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/expected/nominal_fs.html -------------------------------------------------------------------------------- /tests/expected/nominal_fs2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/expected/nominal_fs2.html -------------------------------------------------------------------------------- /tests/expected/nominal_jinja2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/expected/nominal_jinja2.html -------------------------------------------------------------------------------- /tests/expected/wildcard_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/expected/wildcard_test.js -------------------------------------------------------------------------------- /tests/js_reverse_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/js_reverse_urls.py -------------------------------------------------------------------------------- /tests/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/resources/bad.json: -------------------------------------------------------------------------------- 1 | invalid json -------------------------------------------------------------------------------- /tests/resources/bad.yaml: -------------------------------------------------------------------------------- 1 | %invalid yaml 2 | -------------------------------------------------------------------------------- /tests/resources/bad_code.py: -------------------------------------------------------------------------------- 1 | -afd = 'adfasdf' 2 | 3 | this_function_doesnt_exist(afd) 4 | -------------------------------------------------------------------------------- /tests/resources/context.json: -------------------------------------------------------------------------------- 1 | { 2 | "context": "json" 3 | } 4 | -------------------------------------------------------------------------------- /tests/resources/context.py: -------------------------------------------------------------------------------- 1 | context = "python" 2 | -------------------------------------------------------------------------------- /tests/resources/context.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/resources/context.yaml -------------------------------------------------------------------------------- /tests/resources/context_embedded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/resources/context_embedded.py -------------------------------------------------------------------------------- /tests/resources/override.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | to: "from the command line" 3 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/spa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/spa/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/spa/apps.py -------------------------------------------------------------------------------- /tests/spa/static_templates/spa/urls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/spa/static_templates/spa/urls.js -------------------------------------------------------------------------------- /tests/spa/templates/spa/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/spa/templates/spa/index.html -------------------------------------------------------------------------------- /tests/spa/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/spa/urls.py -------------------------------------------------------------------------------- /tests/spa/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/spa/views.py -------------------------------------------------------------------------------- /tests/spa_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/spa_urls.py -------------------------------------------------------------------------------- /tests/static_templates/batch_fs_test0.html: -------------------------------------------------------------------------------- 1 | {% extends "nominal_fs.html" %} 2 | -------------------------------------------------------------------------------- /tests/static_templates/batch_fs_test1.html: -------------------------------------------------------------------------------- 1 | {% extends "nominal_fs.html" %} 2 | -------------------------------------------------------------------------------- /tests/static_templates/exclusive/template1.html: -------------------------------------------------------------------------------- 1 | global template1 -------------------------------------------------------------------------------- /tests/static_templates/exclusive/template2.html: -------------------------------------------------------------------------------- 1 | global template2 -------------------------------------------------------------------------------- /tests/static_templates/exclusive/template3.html: -------------------------------------------------------------------------------- 1 | global template3 -------------------------------------------------------------------------------- /tests/static_templates/multi_test.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/static_templates/multi_test.jinja2 -------------------------------------------------------------------------------- /tests/static_templates/nominal.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/static_templates/nominal.jinja2 -------------------------------------------------------------------------------- /tests/static_templates/nominal_fs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/static_templates/nominal_fs.html -------------------------------------------------------------------------------- /tests/static_templates/subdir/batch_fs_test2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/static_templates/subdir/batch_fs_test2.html -------------------------------------------------------------------------------- /tests/static_templates2/exclusive/template1.html: -------------------------------------------------------------------------------- 1 | global2 template1 -------------------------------------------------------------------------------- /tests/static_templates2/exclusive/template4.html: -------------------------------------------------------------------------------- 1 | global2 template4 -------------------------------------------------------------------------------- /tests/test_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/test_batch.py -------------------------------------------------------------------------------- /tests/test_batch_jinja2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/test_batch_jinja2.py -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/test_examples.py -------------------------------------------------------------------------------- /tests/test_jinja2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/test_jinja2.py -------------------------------------------------------------------------------- /tests/test_js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/test_js.py -------------------------------------------------------------------------------- /tests/test_traversal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/test_traversal.py -------------------------------------------------------------------------------- /tests/test_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/test_web.py -------------------------------------------------------------------------------- /tests/test_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/test_yaml.py -------------------------------------------------------------------------------- /tests/traverse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/traverse/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/traverse/models.py -------------------------------------------------------------------------------- /tests/traverse/module1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/traverse/module1.py -------------------------------------------------------------------------------- /tests/traverse/sub_pkg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/traverse/sub_pkg/__init__.py -------------------------------------------------------------------------------- /tests/traverse/sub_pkg/module2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/traverse/sub_pkg/module2.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tests/urls2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/urls2.py -------------------------------------------------------------------------------- /tests/urls3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/urls3.py -------------------------------------------------------------------------------- /tests/urls4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/urls4.py -------------------------------------------------------------------------------- /tests/urls5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/urls5.py -------------------------------------------------------------------------------- /tests/urls_bug_13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/urls_bug_13.py -------------------------------------------------------------------------------- /tests/urls_bug_65.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/urls_bug_65.py -------------------------------------------------------------------------------- /tests/urls_default_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/urls_default_args.py -------------------------------------------------------------------------------- /tests/urls_precedence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/urls_precedence.py -------------------------------------------------------------------------------- /tests/verify_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/verify_environment.py -------------------------------------------------------------------------------- /tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/tests/views.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bckohan/django-render-static/HEAD/uv.lock --------------------------------------------------------------------------------