├── .circleci └── config.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── django_stuff ├── __init__.py ├── backends │ ├── __init__.py │ └── auth.py ├── fields.py ├── forms.py ├── logging_tools.py ├── models │ ├── __init__.py │ ├── exceptions.py │ ├── generic.py │ ├── history.py │ ├── managers.py │ └── signals.py ├── utils │ ├── __init__.py │ ├── generators.py │ ├── generic.py │ └── string.py ├── validators.py └── version.py ├── docs ├── Makefile ├── make.bat └── source │ ├── backends │ ├── auth.rst │ └── index.rst │ ├── changelog.rst │ ├── conf.py │ ├── development │ ├── installation.rst │ └── release.rst │ ├── fields.rst │ ├── forms.rst │ ├── index.rst │ ├── models │ ├── generic.rst │ ├── history.rst │ ├── index.rst │ └── signals.rst │ ├── quickstart │ └── installation.rst │ └── utils.rst ├── pytest.ini ├── requirements-ci.txt ├── requirements-dev.txt ├── requirements.txt ├── setup.py └── test-django-project ├── django_stuff ├── manage.py ├── pytest.ini ├── test_django_project ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── testapp ├── __init__.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── templates │ └── view.html ├── urls.py └── views.py └── tests ├── __init__.py ├── conftest.py ├── test_fields.py ├── test_forms.py ├── test_models.py ├── test_utils.py └── vcr.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/README.rst -------------------------------------------------------------------------------- /django_stuff/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/django_stuff/__init__.py -------------------------------------------------------------------------------- /django_stuff/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_stuff/backends/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/django_stuff/backends/auth.py -------------------------------------------------------------------------------- /django_stuff/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/django_stuff/fields.py -------------------------------------------------------------------------------- /django_stuff/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/django_stuff/forms.py -------------------------------------------------------------------------------- /django_stuff/logging_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/django_stuff/logging_tools.py -------------------------------------------------------------------------------- /django_stuff/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/django_stuff/models/__init__.py -------------------------------------------------------------------------------- /django_stuff/models/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/django_stuff/models/exceptions.py -------------------------------------------------------------------------------- /django_stuff/models/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/django_stuff/models/generic.py -------------------------------------------------------------------------------- /django_stuff/models/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/django_stuff/models/history.py -------------------------------------------------------------------------------- /django_stuff/models/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/django_stuff/models/managers.py -------------------------------------------------------------------------------- /django_stuff/models/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/django_stuff/models/signals.py -------------------------------------------------------------------------------- /django_stuff/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/django_stuff/utils/__init__.py -------------------------------------------------------------------------------- /django_stuff/utils/generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/django_stuff/utils/generators.py -------------------------------------------------------------------------------- /django_stuff/utils/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/django_stuff/utils/generic.py -------------------------------------------------------------------------------- /django_stuff/utils/string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/django_stuff/utils/string.py -------------------------------------------------------------------------------- /django_stuff/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/django_stuff/validators.py -------------------------------------------------------------------------------- /django_stuff/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.7.2" 2 | 3 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/backends/auth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/docs/source/backends/auth.rst -------------------------------------------------------------------------------- /docs/source/backends/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/docs/source/backends/index.rst -------------------------------------------------------------------------------- /docs/source/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../CHANGES.rst 2 | -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/development/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/docs/source/development/installation.rst -------------------------------------------------------------------------------- /docs/source/development/release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/docs/source/development/release.rst -------------------------------------------------------------------------------- /docs/source/fields.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/docs/source/fields.rst -------------------------------------------------------------------------------- /docs/source/forms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/docs/source/forms.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/models/generic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/docs/source/models/generic.rst -------------------------------------------------------------------------------- /docs/source/models/history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/docs/source/models/history.rst -------------------------------------------------------------------------------- /docs/source/models/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/docs/source/models/index.rst -------------------------------------------------------------------------------- /docs/source/models/signals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/docs/source/models/signals.rst -------------------------------------------------------------------------------- /docs/source/quickstart/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/docs/source/quickstart/installation.rst -------------------------------------------------------------------------------- /docs/source/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/docs/source/utils.rst -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-ci.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/requirements-ci.txt -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/setup.py -------------------------------------------------------------------------------- /test-django-project/django_stuff: -------------------------------------------------------------------------------- 1 | ../django_stuff -------------------------------------------------------------------------------- /test-django-project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/test-django-project/manage.py -------------------------------------------------------------------------------- /test-django-project/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/test-django-project/pytest.ini -------------------------------------------------------------------------------- /test-django-project/test_django_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-django-project/test_django_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/test-django-project/test_django_project/settings.py -------------------------------------------------------------------------------- /test-django-project/test_django_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/test-django-project/test_django_project/urls.py -------------------------------------------------------------------------------- /test-django-project/test_django_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/test-django-project/test_django_project/wsgi.py -------------------------------------------------------------------------------- /test-django-project/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-django-project/testapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/test-django-project/testapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /test-django-project/testapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-django-project/testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/test-django-project/testapp/models.py -------------------------------------------------------------------------------- /test-django-project/testapp/templates/view.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-django-project/testapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/test-django-project/testapp/urls.py -------------------------------------------------------------------------------- /test-django-project/testapp/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-django-project/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-django-project/tests/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-django-project/tests/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/test-django-project/tests/test_fields.py -------------------------------------------------------------------------------- /test-django-project/tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/test-django-project/tests/test_forms.py -------------------------------------------------------------------------------- /test-django-project/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/test-django-project/tests/test_models.py -------------------------------------------------------------------------------- /test-django-project/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/test-django-project/tests/test_utils.py -------------------------------------------------------------------------------- /test-django-project/tests/vcr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhenter/django-stuff/HEAD/test-django-project/tests/vcr.py --------------------------------------------------------------------------------