├── .coveragerc ├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── .tx └── config ├── CHANGES.rst ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.rst ├── docs ├── Makefile ├── conf.py ├── history.rst ├── index.rst └── make.bat ├── setup.cfg ├── setup.py ├── src └── robots │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── locale │ ├── da │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── el │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sk │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── uk │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_alter_id_fields.py │ ├── 0003_alter_url_pattern.py │ └── __init__.py │ ├── models.py │ ├── settings.py │ ├── templates │ └── robots │ │ └── rule_list.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── tests ├── __init__.py ├── requirements.txt ├── settings.py └── urls.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- 1 | [settings] 2 | profile = black 3 | known_first_party = robots 4 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/.tx/config -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/docs/history.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/docs/make.bat -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/setup.py -------------------------------------------------------------------------------- /src/robots/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/__init__.py -------------------------------------------------------------------------------- /src/robots/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/admin.py -------------------------------------------------------------------------------- /src/robots/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/apps.py -------------------------------------------------------------------------------- /src/robots/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/forms.py -------------------------------------------------------------------------------- /src/robots/locale/da/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/da/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/robots/locale/da/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/da/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/robots/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/robots/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/robots/locale/el/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/el/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/robots/locale/el/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/el/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/robots/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/robots/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/robots/locale/es_ES/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/es_ES/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/robots/locale/es_ES/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/es_ES/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/robots/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/robots/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/robots/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/robots/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/robots/locale/ja/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/ja/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/robots/locale/ja/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/ja/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/robots/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/robots/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/robots/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/robots/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/robots/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/robots/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/robots/locale/sk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/sk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/robots/locale/sk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/sk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/robots/locale/uk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/uk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /src/robots/locale/uk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/locale/uk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /src/robots/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/robots/migrations/0002_alter_id_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/migrations/0002_alter_id_fields.py -------------------------------------------------------------------------------- /src/robots/migrations/0003_alter_url_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/migrations/0003_alter_url_pattern.py -------------------------------------------------------------------------------- /src/robots/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/migrations/__init__.py -------------------------------------------------------------------------------- /src/robots/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/models.py -------------------------------------------------------------------------------- /src/robots/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/settings.py -------------------------------------------------------------------------------- /src/robots/templates/robots/rule_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/templates/robots/rule_list.html -------------------------------------------------------------------------------- /src/robots/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/tests.py -------------------------------------------------------------------------------- /src/robots/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/urls.py -------------------------------------------------------------------------------- /src/robots/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/src/robots/views.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- 1 | tox>=2.0 2 | coverage 3 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-robots/HEAD/tox.ini --------------------------------------------------------------------------------