├── .coveragerc ├── .gitignore ├── .travis.yml ├── CHANGELOG.txt ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── conf.py └── index.rst ├── setup.py ├── tagging ├── __init__.py ├── admin.py ├── apps.py ├── fields.py ├── forms.py ├── generic.py ├── managers.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_on_delete.py │ ├── 0003_adapt_max_tag_length.py │ └── __init__.py ├── models.py ├── registry.py ├── settings.py ├── templatetags │ ├── __init__.py │ └── tagging_tags.py ├── tests │ ├── __init__.py │ ├── models.py │ ├── settings.py │ ├── tags.txt │ ├── tests.py │ ├── urls.py │ └── utils.py ├── utils.py └── views.py └── versions.cfg /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | docs/_build 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/docs/index.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/setup.py -------------------------------------------------------------------------------- /tagging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/tagging/__init__.py -------------------------------------------------------------------------------- /tagging/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/tagging/admin.py -------------------------------------------------------------------------------- /tagging/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/tagging/apps.py -------------------------------------------------------------------------------- /tagging/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/tagging/fields.py -------------------------------------------------------------------------------- /tagging/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/tagging/forms.py -------------------------------------------------------------------------------- /tagging/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/tagging/generic.py -------------------------------------------------------------------------------- /tagging/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/tagging/managers.py -------------------------------------------------------------------------------- /tagging/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/tagging/migrations/0001_initial.py -------------------------------------------------------------------------------- /tagging/migrations/0002_on_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/tagging/migrations/0002_on_delete.py -------------------------------------------------------------------------------- /tagging/migrations/0003_adapt_max_tag_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/tagging/migrations/0003_adapt_max_tag_length.py -------------------------------------------------------------------------------- /tagging/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Migrations for tagging. 3 | """ 4 | -------------------------------------------------------------------------------- /tagging/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/tagging/models.py -------------------------------------------------------------------------------- /tagging/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/tagging/registry.py -------------------------------------------------------------------------------- /tagging/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/tagging/settings.py -------------------------------------------------------------------------------- /tagging/templatetags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/tagging/templatetags/__init__.py -------------------------------------------------------------------------------- /tagging/templatetags/tagging_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/tagging/templatetags/tagging_tags.py -------------------------------------------------------------------------------- /tagging/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Tests for tagging. 3 | """ 4 | -------------------------------------------------------------------------------- /tagging/tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/tagging/tests/models.py -------------------------------------------------------------------------------- /tagging/tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/tagging/tests/settings.py -------------------------------------------------------------------------------- /tagging/tests/tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/tagging/tests/tags.txt -------------------------------------------------------------------------------- /tagging/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/tagging/tests/tests.py -------------------------------------------------------------------------------- /tagging/tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/tagging/tests/urls.py -------------------------------------------------------------------------------- /tagging/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/tagging/tests/utils.py -------------------------------------------------------------------------------- /tagging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/tagging/utils.py -------------------------------------------------------------------------------- /tagging/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/tagging/views.py -------------------------------------------------------------------------------- /versions.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fantomas42/django-tagging/HEAD/versions.cfg --------------------------------------------------------------------------------