├── .github ├── dependabot.yml └── workflows │ └── develop.yml ├── .gitignore ├── CHANGES.txt ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.rst ├── VERSION ├── example ├── README.rst ├── __init__.py ├── manage.py ├── requirements.txt ├── settings.py ├── templates │ └── index.html └── urls.py ├── pytest.ini ├── requirements ├── dev.txt ├── py310-django32.txt ├── py310-django40.txt ├── py37-django22.txt ├── py37-django30.txt ├── py37-django31.txt ├── py37-django32.txt ├── py38-django22.txt ├── py38-django30.txt ├── py38-django31.txt ├── py38-django32.txt ├── py38-django40.txt ├── py39-django22.txt ├── py39-django30.txt ├── py39-django31.txt ├── py39-django32.txt └── py39-django40.txt ├── setup.py ├── test_settings.py ├── tox.ini └── tz_detect ├── __init__.py ├── defaults.py ├── middleware.py ├── models.py ├── static └── tz_detect │ └── js │ ├── tzdetect.js │ └── tzdetect.min.js ├── templates └── tz_detect │ └── detector.html ├── templatetags ├── __init__.py └── tz_detect.py ├── tests.py ├── urls.py ├── utils.py └── views.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/develop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/.github/workflows/develop.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/README.rst -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.5.0 2 | -------------------------------------------------------------------------------- /example/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/example/README.rst -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/example/manage.py -------------------------------------------------------------------------------- /example/requirements.txt: -------------------------------------------------------------------------------- 1 | django>=1.10 2 | pytz 3 | -------------------------------------------------------------------------------- /example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/example/settings.py -------------------------------------------------------------------------------- /example/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/example/templates/index.html -------------------------------------------------------------------------------- /example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/example/urls.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /requirements/py310-django32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/requirements/py310-django32.txt -------------------------------------------------------------------------------- /requirements/py310-django40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/requirements/py310-django40.txt -------------------------------------------------------------------------------- /requirements/py37-django22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/requirements/py37-django22.txt -------------------------------------------------------------------------------- /requirements/py37-django30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/requirements/py37-django30.txt -------------------------------------------------------------------------------- /requirements/py37-django31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/requirements/py37-django31.txt -------------------------------------------------------------------------------- /requirements/py37-django32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/requirements/py37-django32.txt -------------------------------------------------------------------------------- /requirements/py38-django22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/requirements/py38-django22.txt -------------------------------------------------------------------------------- /requirements/py38-django30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/requirements/py38-django30.txt -------------------------------------------------------------------------------- /requirements/py38-django31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/requirements/py38-django31.txt -------------------------------------------------------------------------------- /requirements/py38-django32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/requirements/py38-django32.txt -------------------------------------------------------------------------------- /requirements/py38-django40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/requirements/py38-django40.txt -------------------------------------------------------------------------------- /requirements/py39-django22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/requirements/py39-django22.txt -------------------------------------------------------------------------------- /requirements/py39-django30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/requirements/py39-django30.txt -------------------------------------------------------------------------------- /requirements/py39-django31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/requirements/py39-django31.txt -------------------------------------------------------------------------------- /requirements/py39-django32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/requirements/py39-django32.txt -------------------------------------------------------------------------------- /requirements/py39-django40.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/requirements/py39-django40.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/setup.py -------------------------------------------------------------------------------- /test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/test_settings.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/tox.ini -------------------------------------------------------------------------------- /tz_detect/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tz_detect/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/tz_detect/defaults.py -------------------------------------------------------------------------------- /tz_detect/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/tz_detect/middleware.py -------------------------------------------------------------------------------- /tz_detect/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tz_detect/static/tz_detect/js/tzdetect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/tz_detect/static/tz_detect/js/tzdetect.js -------------------------------------------------------------------------------- /tz_detect/static/tz_detect/js/tzdetect.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/tz_detect/static/tz_detect/js/tzdetect.min.js -------------------------------------------------------------------------------- /tz_detect/templates/tz_detect/detector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/tz_detect/templates/tz_detect/detector.html -------------------------------------------------------------------------------- /tz_detect/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tz_detect/templatetags/tz_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/tz_detect/templatetags/tz_detect.py -------------------------------------------------------------------------------- /tz_detect/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/tz_detect/tests.py -------------------------------------------------------------------------------- /tz_detect/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/tz_detect/urls.py -------------------------------------------------------------------------------- /tz_detect/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/tz_detect/utils.py -------------------------------------------------------------------------------- /tz_detect/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamcharnock/django-tz-detect/HEAD/tz_detect/views.py --------------------------------------------------------------------------------