├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── setup.py └── sphinx_http_domain ├── __init__.py ├── directives.py ├── docfields.py ├── nodes.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deceze/Sphinx-HTTP-domain/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deceze/Sphinx-HTTP-domain/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE README.rst 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deceze/Sphinx-HTTP-domain/HEAD/README.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deceze/Sphinx-HTTP-domain/HEAD/setup.py -------------------------------------------------------------------------------- /sphinx_http_domain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deceze/Sphinx-HTTP-domain/HEAD/sphinx_http_domain/__init__.py -------------------------------------------------------------------------------- /sphinx_http_domain/directives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deceze/Sphinx-HTTP-domain/HEAD/sphinx_http_domain/directives.py -------------------------------------------------------------------------------- /sphinx_http_domain/docfields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deceze/Sphinx-HTTP-domain/HEAD/sphinx_http_domain/docfields.py -------------------------------------------------------------------------------- /sphinx_http_domain/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deceze/Sphinx-HTTP-domain/HEAD/sphinx_http_domain/nodes.py -------------------------------------------------------------------------------- /sphinx_http_domain/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deceze/Sphinx-HTTP-domain/HEAD/sphinx_http_domain/utils.py --------------------------------------------------------------------------------