├── .github ├── FUNDING.yml └── workflows │ └── ci.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── Pipfile ├── README.md ├── SECURITY.md ├── django_distill ├── __init__.py ├── backends │ ├── __init__.py │ ├── amazon_s3.py │ ├── google_storage.py │ └── microsoft_azure_storage.py ├── distill.py ├── errors.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── distill-local.py │ │ ├── distill-publish.py │ │ └── distill-test-publish.py ├── publisher.py └── renderer.py ├── requirements.txt ├── run-tests.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── i18n_urls.py ├── media └── media-test.txt ├── namespaced_sub_urls.py ├── namespaced_urls.py ├── no_namespaced_urls.py ├── settings.py ├── static ├── admin │ └── admin-test.txt ├── appdir │ └── appdir-test.txt └── static-test.txt ├── templates ├── flatpage.html └── humanize.html ├── test_commands.py ├── test_interface.py ├── test_redirects.py ├── test_renderer.py ├── test_static.py └── urls.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [meeb] 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.txt 2 | -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/SECURITY.md -------------------------------------------------------------------------------- /django_distill/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/django_distill/__init__.py -------------------------------------------------------------------------------- /django_distill/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/django_distill/backends/__init__.py -------------------------------------------------------------------------------- /django_distill/backends/amazon_s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/django_distill/backends/amazon_s3.py -------------------------------------------------------------------------------- /django_distill/backends/google_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/django_distill/backends/google_storage.py -------------------------------------------------------------------------------- /django_distill/backends/microsoft_azure_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/django_distill/backends/microsoft_azure_storage.py -------------------------------------------------------------------------------- /django_distill/distill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/django_distill/distill.py -------------------------------------------------------------------------------- /django_distill/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/django_distill/errors.py -------------------------------------------------------------------------------- /django_distill/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_distill/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_distill/management/commands/distill-local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/django_distill/management/commands/distill-local.py -------------------------------------------------------------------------------- /django_distill/management/commands/distill-publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/django_distill/management/commands/distill-publish.py -------------------------------------------------------------------------------- /django_distill/management/commands/distill-test-publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/django_distill/management/commands/distill-test-publish.py -------------------------------------------------------------------------------- /django_distill/publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/django_distill/publisher.py -------------------------------------------------------------------------------- /django_distill/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/django_distill/renderer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | django 2 | requests 3 | -------------------------------------------------------------------------------- /run-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/run-tests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/i18n_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/tests/i18n_urls.py -------------------------------------------------------------------------------- /tests/media/media-test.txt: -------------------------------------------------------------------------------- 1 | media 2 | -------------------------------------------------------------------------------- /tests/namespaced_sub_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/tests/namespaced_sub_urls.py -------------------------------------------------------------------------------- /tests/namespaced_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/tests/namespaced_urls.py -------------------------------------------------------------------------------- /tests/no_namespaced_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/tests/no_namespaced_urls.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/static/admin/admin-test.txt: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /tests/static/appdir/appdir-test.txt: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /tests/static/static-test.txt: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /tests/templates/flatpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/tests/templates/flatpage.html -------------------------------------------------------------------------------- /tests/templates/humanize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/tests/templates/humanize.html -------------------------------------------------------------------------------- /tests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/tests/test_commands.py -------------------------------------------------------------------------------- /tests/test_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/tests/test_interface.py -------------------------------------------------------------------------------- /tests/test_redirects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/tests/test_redirects.py -------------------------------------------------------------------------------- /tests/test_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/tests/test_renderer.py -------------------------------------------------------------------------------- /tests/test_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/tests/test_static.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeb/django-distill/HEAD/tests/urls.py --------------------------------------------------------------------------------