From: Rene_Robert Date: Mon, 1 Jul 2019 16:12:40 +0000 (+0200) Subject: Issue-ID: DOC-493 X-Git-Tag: elalto.1.5.2~2228^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=bf4ab4ebfcf6df173db758e29e3c5503f670639d;p=doc.git Issue-ID: DOC-493 correcting procedure to test documentation change before submitting the change replacing mv command by cp command mainly Signed-off-by: Rene_Robert Change-Id: I546a1beb82a23e51cdbb6e4f38e77bad2da3e6d7 --- diff --git a/docs/guides/onap-developer/how-to-use-docs/include-documentation.rst b/docs/guides/onap-developer/how-to-use-docs/include-documentation.rst index 89959914c..6909cceb1 100644 --- a/docs/guides/onap-developer/how-to-use-docs/include-documentation.rst +++ b/docs/guides/onap-developer/how-to-use-docs/include-documentation.rst @@ -432,7 +432,12 @@ Install virtual environment. .. code-block:: bash sudo pip install virtualenv - cd /local/repo/path/to/project + +Download a project repository. + +.. code-block:: bash + + git clone http://gerrit.onap.org/r/ Download the doc repository. @@ -447,28 +452,31 @@ Change directory to doc & install requirements. cd doc sudo pip install -r etc/requirements.txt -Move the conf.py file to your project folder where RST files have been kept: +Copy the conf.py file to your project folder where RST files have been kept: .. code-block:: bash - mv doc/docs/conf.py / + cp docs/conf.py / -Move the static files to your project folder: +Copy the static files to the project folder where RST files have been kept: .. code-block:: bash - mv docs/_static/ / + cp -r docs/_static/ / Build the documentation from within your project folder: .. code-block:: bash - sphinx-build -b html + sphinx-build -b html / Your documentation shall be built as HTML inside the specified output folder directory. -.. note:: Be sure to remove the `conf.py`, the static/ files and the output folder from the `/docs/`. This is for testing only. Only commit the rst files and related content. +You can use your Web Browser to open +and check resulting html pages in the output folder. + +.. note:: Be sure to remove the `conf.py`, the static/ files and the output folder from the `/docs/`.This is for testing only. Only commit the rst files and related content. .. _building-all-documentation: @@ -502,7 +510,7 @@ Build documentation using tox local environment & then open using any browser. by the doc project. There are additional tox environment options for checking External -URLs and Spelling. Use the tox environment options below and then +URLs and Spelling. Use the tox environment options below and then look at the output with the Linux `more` or similar command scan for output that applies to the files you are validating.