├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── MANIFEST.in ├── README.rst ├── custom_anonymous ├── __init__.py └── middleware.py ├── example ├── example │ ├── __init__.py │ ├── models.py │ ├── settings.py │ ├── tests.py │ ├── urls.py │ └── views.py └── manage.py ├── requirements-dev.txt ├── requirements.txt ├── runtests.py ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugov/django-custom-anonymous/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugov/django-custom-anonymous/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugov/django-custom-anonymous/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst 2 | 3 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugov/django-custom-anonymous/HEAD/README.rst -------------------------------------------------------------------------------- /custom_anonymous/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.5.0" 2 | 3 | -------------------------------------------------------------------------------- /custom_anonymous/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugov/django-custom-anonymous/HEAD/custom_anonymous/middleware.py -------------------------------------------------------------------------------- /example/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/example/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugov/django-custom-anonymous/HEAD/example/example/models.py -------------------------------------------------------------------------------- /example/example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugov/django-custom-anonymous/HEAD/example/example/settings.py -------------------------------------------------------------------------------- /example/example/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugov/django-custom-anonymous/HEAD/example/example/tests.py -------------------------------------------------------------------------------- /example/example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugov/django-custom-anonymous/HEAD/example/example/urls.py -------------------------------------------------------------------------------- /example/example/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugov/django-custom-anonymous/HEAD/example/example/views.py -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugov/django-custom-anonymous/HEAD/example/manage.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | tox 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | django 2 | -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugov/django-custom-anonymous/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugov/django-custom-anonymous/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugov/django-custom-anonymous/HEAD/tox.ini --------------------------------------------------------------------------------