├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── djangosphinx ├── __init__.py ├── admin.py ├── apis │ ├── __init__.py │ ├── api263 │ │ ├── __init__.py │ │ └── templates │ │ │ ├── index-multiple.conf │ │ │ ├── index.conf │ │ │ ├── source-multiple.conf │ │ │ └── source.conf │ ├── api275 │ │ └── __init__.py │ ├── api278 │ │ └── __init__.py │ └── current.py ├── config.py ├── constants.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── generate_sphinx_config.py ├── manager.py ├── models.py ├── templates │ ├── index-multiple.conf │ ├── index.conf │ ├── source-multiple.conf │ ├── source.conf │ └── sphinx.conf └── utils │ ├── __init__.py │ └── config.py ├── docs ├── Makefile ├── conf.py ├── index.rst └── make.bat ├── setup.py └── sphinxtest ├── __init__.py ├── manage.py ├── settings.py ├── tests ├── __init__.py ├── models.py └── views.py └── urls.py /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | dist/ 3 | *.pyc 4 | django_sphinx.egg-info/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/README.rst -------------------------------------------------------------------------------- /djangosphinx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/djangosphinx/__init__.py -------------------------------------------------------------------------------- /djangosphinx/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/djangosphinx/admin.py -------------------------------------------------------------------------------- /djangosphinx/apis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosphinx/apis/api263/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/djangosphinx/apis/api263/__init__.py -------------------------------------------------------------------------------- /djangosphinx/apis/api263/templates/index-multiple.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/djangosphinx/apis/api263/templates/index-multiple.conf -------------------------------------------------------------------------------- /djangosphinx/apis/api263/templates/index.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/djangosphinx/apis/api263/templates/index.conf -------------------------------------------------------------------------------- /djangosphinx/apis/api263/templates/source-multiple.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/djangosphinx/apis/api263/templates/source-multiple.conf -------------------------------------------------------------------------------- /djangosphinx/apis/api263/templates/source.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/djangosphinx/apis/api263/templates/source.conf -------------------------------------------------------------------------------- /djangosphinx/apis/api275/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/djangosphinx/apis/api275/__init__.py -------------------------------------------------------------------------------- /djangosphinx/apis/api278/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/djangosphinx/apis/api278/__init__.py -------------------------------------------------------------------------------- /djangosphinx/apis/current.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/djangosphinx/apis/current.py -------------------------------------------------------------------------------- /djangosphinx/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/djangosphinx/config.py -------------------------------------------------------------------------------- /djangosphinx/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/djangosphinx/constants.py -------------------------------------------------------------------------------- /djangosphinx/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosphinx/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangosphinx/management/commands/generate_sphinx_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/djangosphinx/management/commands/generate_sphinx_config.py -------------------------------------------------------------------------------- /djangosphinx/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/djangosphinx/manager.py -------------------------------------------------------------------------------- /djangosphinx/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/djangosphinx/models.py -------------------------------------------------------------------------------- /djangosphinx/templates/index-multiple.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/djangosphinx/templates/index-multiple.conf -------------------------------------------------------------------------------- /djangosphinx/templates/index.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/djangosphinx/templates/index.conf -------------------------------------------------------------------------------- /djangosphinx/templates/source-multiple.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/djangosphinx/templates/source-multiple.conf -------------------------------------------------------------------------------- /djangosphinx/templates/source.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/djangosphinx/templates/source.conf -------------------------------------------------------------------------------- /djangosphinx/templates/sphinx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/djangosphinx/templates/sphinx.conf -------------------------------------------------------------------------------- /djangosphinx/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from config import * -------------------------------------------------------------------------------- /djangosphinx/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/djangosphinx/utils/config.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/docs/make.bat -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/setup.py -------------------------------------------------------------------------------- /sphinxtest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sphinxtest/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/sphinxtest/manage.py -------------------------------------------------------------------------------- /sphinxtest/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/sphinxtest/settings.py -------------------------------------------------------------------------------- /sphinxtest/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sphinxtest/tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/sphinxtest/tests/models.py -------------------------------------------------------------------------------- /sphinxtest/tests/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /sphinxtest/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcramer/django-sphinx/HEAD/sphinxtest/urls.py --------------------------------------------------------------------------------