Joey Armstrong | 2cab6b4 | 2022-09-08 12:59:42 -0400 | [diff] [blame] | 1 | Modify docs.voltha.org |
| 2 | ====================== |
| 3 | |
Joey Armstrong | bbd71d6 | 2022-10-12 11:51:35 -0400 | [diff] [blame] | 4 | Docs for VOLTHA can be found on the website or via web search |
| 5 | """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""" |
Joey Armstrong | 2cab6b4 | 2022-09-08 12:59:42 -0400 | [diff] [blame] | 6 | - https://docs.voltha.org |
| 7 | - https://docs.voltha.org/master/index.html |
| 8 | |
| 9 | - Note: Google search may return an older doc version for topics. |
| 10 | - Navigate to /master/index.html and use the builtin searchbox to always view current documentation for VOLTHA. |
| 11 | |
Joey Armstrong | bbd71d6 | 2022-10-12 11:51:35 -0400 | [diff] [blame] | 12 | Browse repository content |
| 13 | """"""""""""""""""""""""" |
| 14 | - :vol-ger:`voltha-docs` |
| 15 | - :vol-git:`voltha-docs` |
Joey Armstrong | 2cab6b4 | 2022-09-08 12:59:42 -0400 | [diff] [blame] | 16 | |
Joey Armstrong | 1a9b7d1 | 2022-12-19 14:13:07 -0500 | [diff] [blame] | 17 | Documentation Guide |
| 18 | =================== |
| 19 | |
| 20 | Building the Docs |
| 21 | """"""""""""""""" |
| 22 | |
| 23 | Building requires python, creates a virtualenv (``doc_venv``) which has all the |
| 24 | necessary tools. |
| 25 | |
| 26 | Run ``make html`` to generate html documentation in ``_build/html``. |
| 27 | |
| 28 | Run ``make reload`` to get a live reload in your browser (refreshes on document |
| 29 | save). |
| 30 | |
| 31 | Run ``make latexpdf`` to generate html documentation in ``_build/latex``. |
| 32 | Requires that you have a recent LaTeX installation and ``latexmk`` installed |
| 33 | |
| 34 | Writing Docs |
| 35 | """""""""""" |
| 36 | |
Joey Armstrong | a2fa658 | 2023-04-07 11:03:36 -0400 | [diff] [blame] | 37 | Docs written using sphinx: https://www.sphinx-doc.org/en/master/ |
Joey Armstrong | 1a9b7d1 | 2022-12-19 14:13:07 -0500 | [diff] [blame] | 38 | |
| 39 | Documentation is done in reStructuredText or Markdown, but only ``.rst`` files |
| 40 | can contain embedded diagrams. |
| 41 | |
| 42 | Guides for RST: |
| 43 | |
| 44 | - https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html |
Joey Armstrong | 8388b7f | 2023-01-23 11:20:04 -0500 | [diff] [blame] | 45 | - https://www.sphinx-doc.org/en/master/usage/restructuredtext/index.html |
Joey Armstrong | 1a9b7d1 | 2022-12-19 14:13:07 -0500 | [diff] [blame] | 46 | |
| 47 | RST has multiple heading formats possible, the ones we're using are in the |
| 48 | order for the HTML h1-h5: ``=``, ``-`` ``"``, ``'``, ``^``. |
| 49 | |
Joey Armstrong | 2cab6b4 | 2022-09-08 12:59:42 -0400 | [diff] [blame] | 50 | |
Joey Armstrong | bbd71d6 | 2022-10-12 11:51:35 -0400 | [diff] [blame] | 51 | Checkout, modify and test |
| 52 | """"""""""""""""""""""""" |
Joey Armstrong | 2cab6b4 | 2022-09-08 12:59:42 -0400 | [diff] [blame] | 53 | |
| 54 | .. sourcecode:: shell |
| 55 | |
| 56 | $ git clone ssh://gerrit.opencord.org:29418/voltha-docs |
| 57 | |
| 58 | $ cd voltha-docs |
| 59 | $ vi *.rst |
| 60 | $ make html # doc generation |
Joey Armstrong | bbd71d6 | 2022-10-12 11:51:35 -0400 | [diff] [blame] | 61 | $ make lint # syntax checking |
Joey Armstrong | 2cab6b4 | 2022-09-08 12:59:42 -0400 | [diff] [blame] | 62 | $ make test # syntax check *.rst files |
Joey Armstrong | 36592e3 | 2022-11-28 09:00:28 -0500 | [diff] [blame] | 63 | $ make docs # generate website pages |
Joey Armstrong | 2cab6b4 | 2022-09-08 12:59:42 -0400 | [diff] [blame] | 64 | |
| 65 | $ "$BROWSER" _build/html/index.html # BROWSER='firefox' |
Joey Armstrong | bbd71d6 | 2022-10-12 11:51:35 -0400 | [diff] [blame] | 66 | |
| 67 | |
Joey Armstrong | 7340999 | 2022-12-14 20:21:56 -0500 | [diff] [blame] | 68 | Interactive editing: real time updates |
| 69 | """""""""""""""""""""""""""""""""""""" |
| 70 | |
| 71 | Another useful convenience makefile target to try is the reload target. |
| 72 | "make reload" will invoke the sphinx-reload program, spawn a web page for |
| 73 | viewing html documentation pages followed by periodic regeneration of page |
| 74 | content. |
| 75 | |
| 76 | .. sourcecode:: shell |
| 77 | |
| 78 | $ git clone ssh://gerrit.opencord.org:29418/voltha-docs |
| 79 | |
| 80 | $ cd voltha-docs |
| 81 | $ make reload |
| 82 | $ vi *.rst |
| 83 | |
| 84 | |
Joey Armstrong | bbd71d6 | 2022-10-12 11:51:35 -0400 | [diff] [blame] | 85 | make lint (syntax checking) |
| 86 | """"""""""""""""""""""""""" |
| 87 | - `make help (pending) <https://gerrit.opencord.org/c/voltha-system-tests/+/33306>` |
| 88 | |
| 89 | .. sourcecode:: shell |
| 90 | |
| 91 | $ make help |
| 92 | $ USAGE: make target [, target(s)] |
| 93 | $ |
| 94 | $ [LINT] |
| 95 | $ lint-json Syntax check json sources |
| 96 | $ lint-python Syntax check using pylint and flake8 |
| 97 | $ lint-robot Syntax check robot sources using rflint |
| 98 | $ lint-yaml Syntax check yaml source using yamllint |
| 99 | $ |
| 100 | $ make lint |
| 101 | |
| 102 | |
| 103 | make html |
| 104 | """"""""" |
| 105 | - Install python packages: sphinx, pylint, flake8 |
| 106 | - Invoke sphinx to generate documentation. |
| 107 | |
| 108 | |
| 109 | See Also |
| 110 | """""""" |
| 111 | - `RST Markup Documentation <https://rstdoc.readthedocs.io/en/latest>` |
| 112 | - `Sphinx Documentation <https://www.sphinx-doc.org/en/master>` |
| 113 | - `RST Markup Specification <https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html>` |