├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── redirect_urls ├── __init__.py ├── apps.py ├── decorators.py ├── middleware.py ├── models.py └── utils.py ├── runtests.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── settings.py ├── test__utils.py ├── test_middleware.py └── urls.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozmeao/django-redirect-urls/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozmeao/django-redirect-urls/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozmeao/django-redirect-urls/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozmeao/django-redirect-urls/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozmeao/django-redirect-urls/HEAD/README.md -------------------------------------------------------------------------------- /redirect_urls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozmeao/django-redirect-urls/HEAD/redirect_urls/__init__.py -------------------------------------------------------------------------------- /redirect_urls/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozmeao/django-redirect-urls/HEAD/redirect_urls/apps.py -------------------------------------------------------------------------------- /redirect_urls/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozmeao/django-redirect-urls/HEAD/redirect_urls/decorators.py -------------------------------------------------------------------------------- /redirect_urls/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozmeao/django-redirect-urls/HEAD/redirect_urls/middleware.py -------------------------------------------------------------------------------- /redirect_urls/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redirect_urls/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozmeao/django-redirect-urls/HEAD/redirect_urls/utils.py -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozmeao/django-redirect-urls/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | 4 | [metadata] 5 | license_file = LICENSE 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozmeao/django-redirect-urls/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozmeao/django-redirect-urls/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test__utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozmeao/django-redirect-urls/HEAD/tests/test__utils.py -------------------------------------------------------------------------------- /tests/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozmeao/django-redirect-urls/HEAD/tests/test_middleware.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- 1 | urlpatterns = [] 2 | -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozmeao/django-redirect-urls/HEAD/tox.ini --------------------------------------------------------------------------------