diff --git a/docs/source/index.rst b/docs/source/index.rst index c717b16cdfefc488505425a5db5e10168285e341..754970f36353737aed7d08167810b2f0e41fcf96 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -23,6 +23,7 @@ Mantid Documentation algorithms/index algorithms/* concepts/index + techniques/index interfaces/index fitfunctions/* fitminimizers/index @@ -41,6 +42,7 @@ This is the documentation for Mantid |release|. * `Algorithms <algorithms/index.html>`_ * `Concepts <concepts/index.html>`_ +* `Techniques <techniques/index.html>`_ * `Interfaces <interfaces/index.html>`_ * `Fit Functions <fitfunctions/index.html>`_ * `Fit Minimizers <fitminimizers/index.html>`_ diff --git a/docs/source/techniques/index.rst b/docs/source/techniques/index.rst new file mode 100644 index 0000000000000000000000000000000000000000..cb730d2c3b78e33296f30ca37d120f5d4726995a --- /dev/null +++ b/docs/source/techniques/index.rst @@ -0,0 +1,19 @@ +.. Techniques master file + It contains a hidden root toctree directive so that Sphinx + has an internal index of all of the pages and doesn't + produce a plethora of warnings about most documents not being in + a toctree. + See http://sphinx-doc.org/tutorial.html#defining-document-structure + +.. _techniques contents: + +============ + Techniques +============ + +.. toctree:: + :hidden: + :glob: + :maxdepth: 1 + + * diff --git a/docs/sphinxext/mantiddoc/directives/categories.py b/docs/sphinxext/mantiddoc/directives/categories.py index d14921098bd85f9a708da9ab29c8318feb8b6266..633f489273d9224657c7ec2e65afd206db7efbf6 100644 --- a/docs/sphinxext/mantiddoc/directives/categories.py +++ b/docs/sphinxext/mantiddoc/directives/categories.py @@ -20,7 +20,7 @@ CATEGORIES_DIR = "categories" # List of category names that are considered the index for everything in that type # When this category is encountered an additional index.html is written to both the # directory of the document and the category directory -INDEX_CATEGORIES = ["Algorithms", "FitFunctions", "Concepts", "Interfaces"] +INDEX_CATEGORIES = ["Algorithms", "FitFunctions", "Concepts", "Techniques", "Interfaces"] class LinkItem(object): """