├── .gitignore ├── .travis.yml ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── cte_forest ├── __init__.py ├── fields.py ├── models.py └── query.py ├── cte_forest_test ├── __init__.py ├── manage.py ├── models.py ├── settings.py └── tests.py ├── docs ├── Makefile ├── advanced.rst ├── api.rst ├── basic.rst ├── conf.py ├── examples.rst ├── index.rst ├── make.bat └── technical.rst ├── requirements.docs.txt ├── requirements.txt ├── setup.cfg ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/README.rst -------------------------------------------------------------------------------- /cte_forest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/cte_forest/__init__.py -------------------------------------------------------------------------------- /cte_forest/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/cte_forest/fields.py -------------------------------------------------------------------------------- /cte_forest/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/cte_forest/models.py -------------------------------------------------------------------------------- /cte_forest/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/cte_forest/query.py -------------------------------------------------------------------------------- /cte_forest_test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/cte_forest_test/__init__.py -------------------------------------------------------------------------------- /cte_forest_test/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/cte_forest_test/manage.py -------------------------------------------------------------------------------- /cte_forest_test/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/cte_forest_test/models.py -------------------------------------------------------------------------------- /cte_forest_test/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/cte_forest_test/settings.py -------------------------------------------------------------------------------- /cte_forest_test/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/cte_forest_test/tests.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/advanced.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/docs/advanced.rst -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/basic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/docs/basic.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/docs/examples.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/technical.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/docs/technical.rst -------------------------------------------------------------------------------- /requirements.docs.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | 3 | Sphinx==1.5.3 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django>=1.10 2 | psycopg2-binary 3 | coverage 4 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiask/django-cte-forest/HEAD/tox.ini --------------------------------------------------------------------------------