├── .dockerignore ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── CI.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CONTRIBUTORS ├── LICENSE ├── README.md ├── docs ├── Makefile ├── conf.py ├── index.rst ├── indexes.md ├── installation.md ├── make.bat ├── manager.md └── usage.md ├── poetry.lock ├── pyproject.toml ├── src └── django_ltree │ ├── __init__.py │ ├── apps.py │ ├── checks.py │ ├── fields.py │ ├── functions.py │ ├── lookups.py │ ├── managers.py │ ├── migrations │ ├── 0001_create_extension.py │ └── __init__.py │ ├── models.py │ ├── paths.py │ └── querysets.py └── tests ├── conftest.py ├── taxonomy ├── __init__.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py └── models.py ├── test_label.py ├── test_model.py ├── test_path_creation.py ├── test_path_field.py ├── test_path_value.py └── test_register.py /.dockerignore: -------------------------------------------------------------------------------- 1 | * 2 | !python-versions.txt 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/indexes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/docs/indexes.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/docs/manager.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/docs/usage.md -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/django_ltree/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/src/django_ltree/__init__.py -------------------------------------------------------------------------------- /src/django_ltree/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/src/django_ltree/apps.py -------------------------------------------------------------------------------- /src/django_ltree/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/src/django_ltree/checks.py -------------------------------------------------------------------------------- /src/django_ltree/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/src/django_ltree/fields.py -------------------------------------------------------------------------------- /src/django_ltree/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/src/django_ltree/functions.py -------------------------------------------------------------------------------- /src/django_ltree/lookups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/src/django_ltree/lookups.py -------------------------------------------------------------------------------- /src/django_ltree/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/src/django_ltree/managers.py -------------------------------------------------------------------------------- /src/django_ltree/migrations/0001_create_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/src/django_ltree/migrations/0001_create_extension.py -------------------------------------------------------------------------------- /src/django_ltree/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/django_ltree/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/src/django_ltree/models.py -------------------------------------------------------------------------------- /src/django_ltree/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/src/django_ltree/paths.py -------------------------------------------------------------------------------- /src/django_ltree/querysets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/src/django_ltree/querysets.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/taxonomy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/taxonomy/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/tests/taxonomy/apps.py -------------------------------------------------------------------------------- /tests/taxonomy/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/tests/taxonomy/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/taxonomy/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/taxonomy/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/tests/taxonomy/models.py -------------------------------------------------------------------------------- /tests/test_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/tests/test_label.py -------------------------------------------------------------------------------- /tests/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/tests/test_model.py -------------------------------------------------------------------------------- /tests/test_path_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/tests/test_path_creation.py -------------------------------------------------------------------------------- /tests/test_path_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/tests/test_path_field.py -------------------------------------------------------------------------------- /tests/test_path_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/tests/test_path_value.py -------------------------------------------------------------------------------- /tests/test_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baseplate-admin/django-ltree-2/HEAD/tests/test_register.py --------------------------------------------------------------------------------