diff options
author | Ralf Gommers <ralf.gommers@googlemail.com> | 2013-06-04 21:08:36 +0200 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@googlemail.com> | 2013-06-04 21:18:51 +0200 |
commit | ab2741aed23ae5241c047c7159fa7f636753d7f9 (patch) | |
tree | e70139abadf79abbd5451c6bd845df4c75400df8 | |
parent | e9e490a54a87cfdbc9618b8547a7ecc81a6e2fac (diff) | |
download | numpy-ab2741aed23ae5241c047c7159fa7f636753d7f9.tar.gz |
DOC: remove module index from reference guide.
It was broken, and after fixing it looked quite useless.
Update in conf.py is because `html_use_modindex` is deprecated.
-rw-r--r-- | doc/source/_templates/indexcontent.html | 2 | ||||
-rw-r--r-- | doc/source/conf.py | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/doc/source/_templates/indexcontent.html b/doc/source/_templates/indexcontent.html index b497c93dd..55229a86d 100644 --- a/doc/source/_templates/indexcontent.html +++ b/doc/source/_templates/indexcontent.html @@ -15,8 +15,6 @@ <p><strong>Indices and tables:</strong></p> <table class="contentstable" align="center"><tr> <td width="50%"> - <p class="biglink"><a class="biglink" href="{{ pathto("modindex") }}">Module Index</a><br/> - <span class="linkdescr">quick access to all modules</span></p> <p class="biglink"><a class="biglink" href="{{ pathto("genindex") }}">General Index</a><br/> <span class="linkdescr">all functions, classes, terms</span></p> <p class="biglink"><a class="biglink" href="{{ pathto("glossary") }}">Glossary</a><br/> diff --git a/doc/source/conf.py b/doc/source/conf.py index 0fa905111..42e46c4f8 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -121,7 +121,7 @@ html_additional_pages = { } # If false, no module index is generated. -html_use_modindex = True +html_domain_indices = False # If true, the reST sources are included in the HTML build as _sources/<name>. #html_copy_source = True |