├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── create-release.yml │ ├── pre-commit-autoupdate.yml │ └── test-package.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── SECURITY.md ├── pyproject.toml ├── redirects ├── __init__.py ├── admin.py ├── apps.py ├── http.py ├── locale │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── ru │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── metadata.py ├── middleware.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_add_priority.py │ ├── 0003_redirect_created_at_redirect_updated_at.py │ ├── 0004_alter_redirect_new_path_alter_redirect_old_path.py │ ├── 0005_redirect_note.py │ └── __init__.py └── models.py ├── requirements-test.txt ├── requirements.txt ├── runtests.py ├── setup.py ├── tests ├── __init__.py ├── settings.py ├── test_admin.py ├── test_metadata.py ├── test_models.py └── urls.py └── tox.ini /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit-autoupdate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/.github/workflows/pre-commit-autoupdate.yml -------------------------------------------------------------------------------- /.github/workflows/test-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/.github/workflows/test-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/SECURITY.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/pyproject.toml -------------------------------------------------------------------------------- /redirects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/redirects/__init__.py -------------------------------------------------------------------------------- /redirects/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/redirects/admin.py -------------------------------------------------------------------------------- /redirects/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/redirects/apps.py -------------------------------------------------------------------------------- /redirects/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/redirects/http.py -------------------------------------------------------------------------------- /redirects/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/redirects/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /redirects/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/redirects/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /redirects/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/redirects/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /redirects/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/redirects/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /redirects/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/redirects/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /redirects/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/redirects/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /redirects/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/redirects/metadata.py -------------------------------------------------------------------------------- /redirects/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/redirects/middleware.py -------------------------------------------------------------------------------- /redirects/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/redirects/migrations/0001_initial.py -------------------------------------------------------------------------------- /redirects/migrations/0002_add_priority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/redirects/migrations/0002_add_priority.py -------------------------------------------------------------------------------- /redirects/migrations/0003_redirect_created_at_redirect_updated_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/redirects/migrations/0003_redirect_created_at_redirect_updated_at.py -------------------------------------------------------------------------------- /redirects/migrations/0004_alter_redirect_new_path_alter_redirect_old_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/redirects/migrations/0004_alter_redirect_new_path_alter_redirect_old_path.py -------------------------------------------------------------------------------- /redirects/migrations/0005_redirect_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/redirects/migrations/0005_redirect_note.py -------------------------------------------------------------------------------- /redirects/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redirects/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/redirects/models.py -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | django 2 | -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/tests/test_admin.py -------------------------------------------------------------------------------- /tests/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/tests/test_metadata.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabiocaccamo/django-redirects/HEAD/tox.ini --------------------------------------------------------------------------------