Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 1 | .. This work is licensed under a Creative Commons Attribution 4.0 |
| 2 | .. International License. http://creativecommons.org/licenses/by/4.0 |
| 3 | .. Copyright 2017 AT&T Intellectual Property. All rights reserved. |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 4 | |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 5 | Introduction |
| 6 | ============ |
| 7 | This guide describes how to create documentation for the Open Network |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 8 | Automation Platform (ONAP). ONAP projects create a variety of |
| 9 | content depending on the nature of the project. For example projects |
| 10 | delivering a platform component may have different types of content than |
Rich Bennett | 5baea46 | 2017-09-13 03:19:19 -0400 | [diff] [blame] | 11 | a project that creates libraries for a software development kit. |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 12 | The content from each project may be used together as a reference for |
Rich Bennett | 7fc6d94 | 2018-11-27 09:36:32 -0500 | [diff] [blame] | 13 | that project and/or be used in documents that are tailored to a specific |
| 14 | user audience and tasks they are performing. |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 15 | |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 16 | Much of the content in this document is derived from similar |
| 17 | documentation processes used in other Linux Foundation |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 18 | Projects including OPNFV and Open Daylight. |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 19 | |
Spencer Seidel | f710065 | 2017-09-06 12:39:15 -0400 | [diff] [blame] | 20 | Why reStructuredText/Sphinx? |
| 21 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 22 | |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 23 | In the past, standard documentation methods included ad-hoc Word documents, |
| 24 | PDFs, poorly organized Wikis, and other, often closed, tools like |
| 25 | Adobe FrameMaker. The rise of DevOps, Agile, and Continuous Integration, |
| 26 | however, created a paradigm shift for those who care about documentation |
| 27 | because: |
Spencer Seidel | f710065 | 2017-09-06 12:39:15 -0400 | [diff] [blame] | 28 | |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 29 | 1. Documentation must be tightly coupled with code/product releases. |
| 30 | In many cases, particularly with open-source products, many different |
| 31 | versions of the same code can be installed in various production |
| 32 | environments. DevOps personnel must have access to the correct version |
| 33 | of documentation. |
Spencer Seidel | f710065 | 2017-09-06 12:39:15 -0400 | [diff] [blame] | 34 | |
| 35 | 2. Resources are often tight, volunteers scarce. With a large software base |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 36 | like ONAP, a small team of technical writers, even if they are also |
| 37 | developers, cannot keep up with a constantly changing, large code base. |
| 38 | Therefore, those closest to the code should document it as best they can, |
| 39 | and let professional writers edit for style, grammar, and consistency. |
Spencer Seidel | f710065 | 2017-09-06 12:39:15 -0400 | [diff] [blame] | 40 | |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 41 | Plain-text formatting syntaxes, such as reStructuredText, Markdown, |
| 42 | and Textile, are a good choice for documentation because: |
Rich Bennett | 5baea46 | 2017-09-13 03:19:19 -0400 | [diff] [blame] | 43 | |
| 44 | a. They are editor agnostic |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 45 | |
Rich Bennett | 5baea46 | 2017-09-13 03:19:19 -0400 | [diff] [blame] | 46 | b. The source is nearly as easy to read as the rendered text |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 47 | |
Rich Bennett | 5baea46 | 2017-09-13 03:19:19 -0400 | [diff] [blame] | 48 | c. Documentation can be treated exactly as source code is (e.g. versioned, |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 49 | diff'ed, associated with commit messages that can be included |
| 50 | in rendered docs) |
| 51 | |
Rich Bennett | 5baea46 | 2017-09-13 03:19:19 -0400 | [diff] [blame] | 52 | d. Shallow learning curve |
Spencer Seidel | f710065 | 2017-09-06 12:39:15 -0400 | [diff] [blame] | 53 | |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 54 | The documentation team chose reStructuredText largely because of Sphinx, |
| 55 | a Python-based documentation build system, which uses reStructuredText |
| 56 | natively. In a code base as large as ONAP's, cross-referencing between |
| 57 | component documentation was deemed critical. Sphinx and reStructuredText |
| 58 | have built-in functionality that makes collating and cross-referencing |
| 59 | component documentation easier. |
Spencer Seidel | f710065 | 2017-09-06 12:39:15 -0400 | [diff] [blame] | 60 | |
| 61 | Which docs should go where? |
| 62 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 63 | |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 64 | Frequently, developers ask where documentation should be created. Should |
| 65 | they always use reStructuredText/Sphinx? Not necessarily. Is the wiki |
| 66 | appropriate for anything at all? Yes. |
Spencer Seidel | f710065 | 2017-09-06 12:39:15 -0400 | [diff] [blame] | 67 | |
| 68 | It's really up to the development team. Here is a simple rule: |
| 69 | |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 70 | The more tightly coupled the documentation is to a particular version |
| 71 | of the code, the more likely it is that it should be stored with the |
| 72 | code in reStructuredText. |
Spencer Seidel | f710065 | 2017-09-06 12:39:15 -0400 | [diff] [blame] | 73 | |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 74 | The doc team encourages component teams to store as much documentation |
| 75 | as reStructuredText as possible because: |
Spencer Seidel | f710065 | 2017-09-06 12:39:15 -0400 | [diff] [blame] | 76 | |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 77 | 1. It is easier to edit component documentation for grammar, |
| 78 | spelling, clarity, and consistency. |
Spencer Seidel | f710065 | 2017-09-06 12:39:15 -0400 | [diff] [blame] | 79 | |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 80 | 2. A consistent formatting syntax across components will allow |
| 81 | flexibility in producing different kinds of output. |
Spencer Seidel | f710065 | 2017-09-06 12:39:15 -0400 | [diff] [blame] | 82 | |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 83 | 3. It is easier to re-organize the documentation. |
Spencer Seidel | f710065 | 2017-09-06 12:39:15 -0400 | [diff] [blame] | 84 | |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 85 | 4. Wiki articles tend to grow in size and not maintained making it hard |
| 86 | to find current information. |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 87 | |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 88 | Structure |
| 89 | --------- |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 90 | A top level master document structure is used to organize all |
| 91 | documents created by ONAP projects and this resides in the gerrit doc |
| 92 | repository. Complete documents or guides may reside here and |
| 93 | reference parts of source for documentation from other project |
| 94 | repositories. Other ONAP projects will provide content that |
| 95 | is referenced from this structure. |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 96 | |
| 97 | :: |
| 98 | |
Rich Bennett | 7fc6d94 | 2018-11-27 09:36:32 -0500 | [diff] [blame] | 99 | docs |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 100 | ├── guides |
| 101 | │ ├── onap-developer |
| 102 | │ │ ├── apiref |
| 103 | │ │ ├── architecture |
| 104 | │ │ ├── developing |
| 105 | │ │ ├── how-to-use-docs |
| 106 | │ │ ├── settingup |
Rich Bennett | 7fc6d94 | 2018-11-27 09:36:32 -0500 | [diff] [blame] | 107 | │ │ ├── tutorials |
| 108 | │ │ └── use-cases |
| 109 | │ ├── onap-provider |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 110 | │ └── onap-user |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 111 | ├── release |
Rich Bennett | 7fc6d94 | 2018-11-27 09:36:32 -0500 | [diff] [blame] | 112 | └── templates |
| 113 | ├── collections |
| 114 | └── sections |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 115 | |
| 116 | Source Files |
| 117 | ------------ |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 118 | All documentation for project repositories should be structured and stored |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 119 | in or below `<your_project_repo>/docs/` directory as Restructured Text. |
| 120 | ONAP jenkins jobs that verify and merge documentation are triggered by |
Rich Bennett | 5baea46 | 2017-09-13 03:19:19 -0400 | [diff] [blame] | 121 | RST file changes in the top level docs directory and below. |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 122 | |
Rich Bennett | 5baea46 | 2017-09-13 03:19:19 -0400 | [diff] [blame] | 123 | Licensing |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 124 | --------- |
| 125 | All contributions to the ONAP project are done in accordance with the |
| 126 | ONAP licensing requirements. Documentation in ONAP is contributed |
| 127 | in accordance with the `Creative Commons 4.0 <https://creativecommons.org/licenses/by/4.0/>`_ license. |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 128 | All documentation files need to be licensed using the text below. |
| 129 | The license may be applied in the first lines of all contributed RST |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 130 | files: |
| 131 | |
| 132 | .. code-block:: bash |
| 133 | |
| 134 | .. This work is licensed under a Creative Commons Attribution 4.0 International License. |
Rich Bennett | c599566 | 2017-10-18 15:27:52 -0400 | [diff] [blame] | 135 | .. http://creativecommons.org/licenses/by/4.0 |
| 136 | .. Copyright YEAR ONAP or COMPANY or INDIVIDUAL |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 137 | |
| 138 | These lines will not be rendered in the html and pdf files. |
| 139 | |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 140 | When there are subsequent, significant contributions to a source file |
| 141 | from a different contributor, a new copyright line may be appended |
| 142 | after the last existing copyright line. |