From b0ed63db7dd82dee5c69500c6718a62f7873d0e8 Mon Sep 17 00:00:00 2001 From: Tetsuro Nakamura Date: Fri, 20 Sep 2019 12:03:51 +0000 Subject: [PATCH] Fix empty sections in pdf document The following sections were empty in the pdf document. 3. Installation Guide 4. Configuration Reference 5. CLI Reference 6. API Reference This was because it is already referred in the second section. 2. Admin Guide This patch fixes the empty sections by moving the admin guide after those sections. Change-Id: I96d8b2fa9475c097e9eda6ecfc7ebb5a9f471567 Story: 2006073 Task: 34795 --- .gitignore | 5 ++++- doc/source/index.rst | 31 +++++++++++++++---------------- 2 files changed, 19 insertions(+), 17 deletions(-) diff --git a/.gitignore b/.gitignore index f87f63cd..3a64ce30 100644 --- a/.gitignore +++ b/.gitignore @@ -38,4 +38,7 @@ ChangeLog .testrepository # generated policy file -etc/blazar/policy.yaml.sample \ No newline at end of file +etc/blazar/policy.yaml.sample + +# generated doc file +doc/source/_static/* diff --git a/doc/source/index.rst b/doc/source/index.rst index c8ff420b..09bd4294 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -5,22 +5,6 @@ Blazar is an OpenStack service to provide resource reservations in the OpenStack cloud for different resource types - both virtual (instances, volumes, stacks) and physical (hosts). -User Guide ----------- - -.. toctree:: - :maxdepth: 2 - - user/index - -Admin Guide ------------ - -.. toctree:: - :maxdepth: 2 - - admin/index - Installation Guide ------------------ @@ -52,6 +36,21 @@ API Reference restapi/index +User Guide +---------- + +.. toctree:: + :maxdepth: 2 + + user/index + +Admin Guide +----------- + +.. toctree:: + :maxdepth: 2 + + admin/index For Contributors ----------------