diff options
Diffstat (limited to 'doc/source')
-rw-r--r-- | doc/source/_templates/indexcontent.html | 2 | ||||
-rw-r--r-- | doc/source/contents.rst | 1 | ||||
-rw-r--r-- | doc/source/dev/gitwash_links.txt | 3 | ||||
-rw-r--r-- | doc/source/dev/index.rst | 8 |
4 files changed, 14 insertions, 0 deletions
diff --git a/doc/source/_templates/indexcontent.html b/doc/source/_templates/indexcontent.html index 49d955d8c..b497c93dd 100644 --- a/doc/source/_templates/indexcontent.html +++ b/doc/source/_templates/indexcontent.html @@ -7,6 +7,8 @@ <span class="linkdescr">start here</span></p> <p class="biglink"><a class="biglink" href="{{ pathto("reference/index") }}">Numpy Reference</a><br/> <span class="linkdescr">reference 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> </td></tr> </table> diff --git a/doc/source/contents.rst b/doc/source/contents.rst index 31ade2306..04ee229b2 100644 --- a/doc/source/contents.rst +++ b/doc/source/contents.rst @@ -6,6 +6,7 @@ Numpy manual contents user/index reference/index + dev/index release about bugs diff --git a/doc/source/dev/gitwash_links.txt b/doc/source/dev/gitwash_links.txt new file mode 100644 index 000000000..c598ba4aa --- /dev/null +++ b/doc/source/dev/gitwash_links.txt @@ -0,0 +1,3 @@ +.. _NumPy: http://numpy.scipy.org +.. _`NumPy github`: http://github.com/numpy/numpy +.. _`NumPy mailing list`: http://scipy.org/Mailing_Lists diff --git a/doc/source/dev/index.rst b/doc/source/dev/index.rst new file mode 100644 index 000000000..727c2f4f2 --- /dev/null +++ b/doc/source/dev/index.rst @@ -0,0 +1,8 @@ +##################### +Contributing to Numpy +##################### + +.. toctree:: + :maxdepth: 1 + + gitwash/index |