diff options
author | mattip <matti.picus@gmail.com> | 2018-04-10 17:03:27 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2018-04-10 19:08:32 +0300 |
commit | b00cdbc3e194ae5c8528a8ed1ee93bdbadc6bb82 (patch) | |
tree | f0cbaa8cc0c1495b85cb29256bec84a751de9334 | |
parent | 953e78f56e70033a74df6a2b1a0e51972f30c5ab (diff) | |
download | numpy-b00cdbc3e194ae5c8528a8ed1ee93bdbadc6bb82.tar.gz |
DOC: promote development_workflow, make howtos visible
-rw-r--r-- | doc/source/_templates/indexcontent.html | 2 | ||||
-rw-r--r-- | doc/source/dev/gitwash/git_development.rst | 1 | ||||
-rw-r--r-- | doc/source/dev/gitwash/index.rst | 1 | ||||
-rw-r--r-- | doc/source/docs/howto_build_docs.rst (renamed from doc/HOWTO_BUILD_DOCS.rst.txt) | 0 | ||||
-rw-r--r-- | doc/source/docs/howto_document.rst (renamed from doc/HOWTO_DOCUMENT.rst.txt) | 0 | ||||
-rw-r--r-- | doc/source/docs/index.rst | 11 |
6 files changed, 14 insertions, 1 deletions
diff --git a/doc/source/_templates/indexcontent.html b/doc/source/_templates/indexcontent.html index dc305feb6..659da4abe 100644 --- a/doc/source/_templates/indexcontent.html +++ b/doc/source/_templates/indexcontent.html @@ -11,6 +11,8 @@ <span class="linkdescr">f2py documentation</span></p> <p class="biglink"><a class="biglink" href="{{ pathto("dev/index") }}">NumPy Developer Guide</a><br/> <span class="linkdescr">contributing to NumPy</span></p> + <p class="biglink"><a class="biglink" href="{{ pathto("docs/index") }}">Building and Extending the Documentation</a><br/> + <span class="linkdescr">about this documentation</span></p> </td></tr> </table> diff --git a/doc/source/dev/gitwash/git_development.rst b/doc/source/dev/gitwash/git_development.rst index ee7787fec..c53de2e43 100644 --- a/doc/source/dev/gitwash/git_development.rst +++ b/doc/source/dev/gitwash/git_development.rst @@ -11,4 +11,3 @@ Contents: development_setup configure_git - development_workflow diff --git a/doc/source/dev/gitwash/index.rst b/doc/source/dev/gitwash/index.rst index ae7ce69de..b867bbd97 100644 --- a/doc/source/dev/gitwash/index.rst +++ b/doc/source/dev/gitwash/index.rst @@ -11,4 +11,5 @@ Contents: git_intro following_latest git_development + development_workflow git_resources diff --git a/doc/HOWTO_BUILD_DOCS.rst.txt b/doc/source/docs/howto_build_docs.rst index 5ce226ad4..5ce226ad4 100644 --- a/doc/HOWTO_BUILD_DOCS.rst.txt +++ b/doc/source/docs/howto_build_docs.rst diff --git a/doc/HOWTO_DOCUMENT.rst.txt b/doc/source/docs/howto_document.rst index 813626ea0..813626ea0 100644 --- a/doc/HOWTO_DOCUMENT.rst.txt +++ b/doc/source/docs/howto_document.rst diff --git a/doc/source/docs/index.rst b/doc/source/docs/index.rst new file mode 100644 index 000000000..9890823c3 --- /dev/null +++ b/doc/source/docs/index.rst @@ -0,0 +1,11 @@ +.. _documentation: + +Numpy's Documentation +===================== + +.. toctree:: + :maxdepth: 2 + + howto_document + howto_build_docs + |