chiark / gitweb /
documentation: initial version of the Python doc generator.
authorVladimír Vondruš <mosra@centrum.cz>
Fri, 19 Apr 2019 15:47:39 +0000 (17:47 +0200)
committerVladimír Vondruš <mosra@centrum.cz>
Mon, 22 Apr 2019 15:53:36 +0000 (17:53 +0200)
commit1e7927071f8cb48a011684948061469db34fbe8e
tree295ac1661831f76d70966a8f76be61d4fe2d1078
parent7fa367f1dc75be55962e5a22a0791b1ae323dc9d
documentation: initial version of the Python doc generator.

Inspecting modules, functions, classes, methods and properties, taking
the first line of the docstring for a brief docs. Nothing more at the
moment, no index or search is hooked up yet.
38 files changed:
doc/build-status.html.in
doc/documentation.rst
doc/documentation/doxygen.rst
doc/documentation/python.rst [new file with mode: 0644]
documentation/.gitignore
documentation/python.py [new file with mode: 0755]
documentation/templates/python/base.html [new file with mode: 0644]
documentation/templates/python/class.html [new file with mode: 0644]
documentation/templates/python/entry-class.html [new file with mode: 0644]
documentation/templates/python/entry-data.html [new file with mode: 0644]
documentation/templates/python/entry-function.html [new file with mode: 0644]
documentation/templates/python/entry-module.html [new file with mode: 0644]
documentation/templates/python/entry-property.html [new file with mode: 0644]
documentation/templates/python/module.html [new file with mode: 0644]
documentation/templates/python/page.html [new file with mode: 0644]
documentation/test_python/__init__.py [new file with mode: 0644]
documentation/test_python/inspect_all_property/inspect_all_property.html [new file with mode: 0644]
documentation/test_python/inspect_all_property/inspect_all_property/__init__.py [new file with mode: 0644]
documentation/test_python/inspect_all_property/inspect_all_property/_private_but_exposed.py [new file with mode: 0644]
documentation/test_python/inspect_all_property/inspect_all_property/hidden.py [new file with mode: 0644]
documentation/test_python/inspect_annotations/inspect_annotations.Foo.html [new file with mode: 0644]
documentation/test_python/inspect_annotations/inspect_annotations.html [new file with mode: 0644]
documentation/test_python/inspect_annotations/inspect_annotations.py [new file with mode: 0644]
documentation/test_python/inspect_annotations/math.html [new file with mode: 0644]
documentation/test_python/inspect_string/inspect_string.Foo.html [new file with mode: 0644]
documentation/test_python/inspect_string/inspect_string.Specials.html [new file with mode: 0644]
documentation/test_python/inspect_string/inspect_string.another_module.html [new file with mode: 0644]
documentation/test_python/inspect_string/inspect_string.html [new file with mode: 0644]
documentation/test_python/inspect_string/inspect_string/__init__.py [new file with mode: 0644]
documentation/test_python/inspect_string/inspect_string/_private_module.py [new file with mode: 0644]
documentation/test_python/inspect_string/inspect_string/another_module.py [new file with mode: 0644]
documentation/test_python/inspect_string/inspect_string/subpackage/__init__.py [new file with mode: 0644]
documentation/test_python/layout/index.html [new file with mode: 0644]
documentation/test_python/layout/sitemap.xml [new file with mode: 0644]
documentation/test_python/test_inspect.py [new file with mode: 0644]
documentation/test_python/test_layout.py [new file with mode: 0644]
package/ci/travis.yml
site/pelicanconf.py