├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── .gitignore ├── Makefile ├── conf.py ├── index.rst ├── make.bat └── ref │ ├── middleware.rst │ ├── templatetags │ └── subdomainurls.rst │ └── utils.rst ├── setup.py ├── subdomains ├── __init__.py ├── middleware.py ├── models.py ├── templatetags │ ├── __init__.py │ └── subdomainurls.py ├── tests │ ├── __init__.py │ ├── tests.py │ ├── urls │ │ ├── __init__.py │ │ ├── api.py │ │ ├── application.py │ │ ├── default.py │ │ └── marketing.py │ └── views.py └── utils.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- 1 | *.egg* 2 | *.py[co] 3 | .tox/ 4 | build/ 5 | dist/ 6 | pip-log.txt 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaemming/django-subdomains/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaemming/django-subdomains/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaemming/django-subdomains/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaemming/django-subdomains/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaemming/django-subdomains/HEAD/README.rst -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaemming/django-subdomains/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaemming/django-subdomains/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaemming/django-subdomains/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaemming/django-subdomains/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/ref/middleware.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaemming/django-subdomains/HEAD/docs/ref/middleware.rst -------------------------------------------------------------------------------- /docs/ref/templatetags/subdomainurls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaemming/django-subdomains/HEAD/docs/ref/templatetags/subdomainurls.rst -------------------------------------------------------------------------------- /docs/ref/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaemming/django-subdomains/HEAD/docs/ref/utils.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaemming/django-subdomains/HEAD/setup.py -------------------------------------------------------------------------------- /subdomains/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = (2, 1, '0') 2 | -------------------------------------------------------------------------------- /subdomains/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaemming/django-subdomains/HEAD/subdomains/middleware.py -------------------------------------------------------------------------------- /subdomains/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /subdomains/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /subdomains/templatetags/subdomainurls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaemming/django-subdomains/HEAD/subdomains/templatetags/subdomainurls.py -------------------------------------------------------------------------------- /subdomains/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaemming/django-subdomains/HEAD/subdomains/tests/__init__.py -------------------------------------------------------------------------------- /subdomains/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaemming/django-subdomains/HEAD/subdomains/tests/tests.py -------------------------------------------------------------------------------- /subdomains/tests/urls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /subdomains/tests/urls/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaemming/django-subdomains/HEAD/subdomains/tests/urls/api.py -------------------------------------------------------------------------------- /subdomains/tests/urls/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaemming/django-subdomains/HEAD/subdomains/tests/urls/application.py -------------------------------------------------------------------------------- /subdomains/tests/urls/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaemming/django-subdomains/HEAD/subdomains/tests/urls/default.py -------------------------------------------------------------------------------- /subdomains/tests/urls/marketing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaemming/django-subdomains/HEAD/subdomains/tests/urls/marketing.py -------------------------------------------------------------------------------- /subdomains/tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaemming/django-subdomains/HEAD/subdomains/tests/views.py -------------------------------------------------------------------------------- /subdomains/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaemming/django-subdomains/HEAD/subdomains/utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkaemming/django-subdomains/HEAD/tox.ini --------------------------------------------------------------------------------