From 41a20c145b30e9eebf395742b986bfed2ed7ca60 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Petr=20Ospal=C3=BD?= Date: Tue, 26 Feb 2019 11:42:16 +0100 Subject: [PATCH] Add support for ONAP documentation project MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Provided the mandatory doc structure: docs/ index.rst ... Added a couple of .gitignore for better testing and development. Change-Id: I722806681e4844e0ea915006bc7de6018d3073d7 Issue-ID: OOM-1672 Signed-off-by: Petr Ospalý --- .gitignore | 1 + docs/.gitignore | 2 ++ {doc => docs}/BuildGuide.rst | 0 {doc => docs}/InstallGuide.rst | 0 docs/index.rst | 11 +++++++++++ 5 files changed, 14 insertions(+) create mode 100644 .gitignore create mode 100644 docs/.gitignore rename {doc => docs}/BuildGuide.rst (100%) mode change 100755 => 100644 rename {doc => docs}/InstallGuide.rst (100%) mode change 100755 => 100644 create mode 100644 docs/index.rst diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..8e695ec8 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +doc diff --git a/docs/.gitignore b/docs/.gitignore new file mode 100644 index 00000000..19fe1aa0 --- /dev/null +++ b/docs/.gitignore @@ -0,0 +1,2 @@ +conf.py* +_static diff --git a/doc/BuildGuide.rst b/docs/BuildGuide.rst old mode 100755 new mode 100644 similarity index 100% rename from doc/BuildGuide.rst rename to docs/BuildGuide.rst diff --git a/doc/InstallGuide.rst b/docs/InstallGuide.rst old mode 100755 new mode 100644 similarity index 100% rename from doc/InstallGuide.rst rename to docs/InstallGuide.rst diff --git a/docs/index.rst b/docs/index.rst new file mode 100644 index 00000000..a43eedf5 --- /dev/null +++ b/docs/index.rst @@ -0,0 +1,11 @@ +.. This work is licensed under a Creative Commons Attribution 4.0 International License. + +OOM offline-installer +===================== + +.. toctree:: + :maxdepth: 2 + + BuildGuide.rst + InstallGuide.rst + -- 2.16.6