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 | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 5 | |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 6 | Setting Up |
| 7 | ========== |
jsseidel | da2324a | 2017-09-15 10:43:14 -0400 | [diff] [blame] | 8 | |
Rich Bennett | a9d6a44 | 2017-08-25 02:37:15 -0400 | [diff] [blame] | 9 | Some initial set up is required to connect a project with |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 10 | the master document structure and enable automated publishing of |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 11 | changes as summarized in the following diagram and description below |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 12 | below. |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 13 | |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 14 | .. seqdiag:: |
Rich Bennett | a9d6a44 | 2017-08-25 02:37:15 -0400 | [diff] [blame] | 15 | :height: 700 |
| 16 | :width: 1000 |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 17 | |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 18 | seqdiag { |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 19 | DA [label = "Doc Project\nAuthor/Committer", color=lightblue]; |
| 20 | DR [label = "Doc Gerrit Repo" , color=pink]; |
| 21 | PR [label = "Other Project\nGerrit Repo", color=pink ]; |
| 22 | PA [label = "Other Project\nAuthor/Committer", color=lightblue]; |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 23 | |
Rich Bennett | e4c4251 | 2017-09-06 08:07:22 -0400 | [diff] [blame] | 24 | PA -> DR [label = "Add project repo as\ngit submodule" ]; |
| 25 | DR -> DA [label = "Review & Plan to\nIntegrate Content with\nTocTree Structure" ]; |
| 26 | DR <-- DA [label = "Vote +2/Merge" ]; |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 27 | PA <-- DR [label = "Merge Notification" ]; |
Rich Bennett | e4c4251 | 2017-09-06 08:07:22 -0400 | [diff] [blame] | 28 | PA -> PR [label = "Create in project repo\ntop level directory and index.rst" ]; |
Rich Bennett | 358472a | 2017-08-31 08:05:36 -0400 | [diff] [blame] | 29 | PR -> DA [label = "Add as Reviewer" ]; |
| 30 | PR <-- DA [label = "Approve and Integrate" ]; |
| 31 | PA <-- PR [label = "Merge" ]; |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 32 | } |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 33 | |
Rich Bennett | e4c4251 | 2017-09-06 08:07:22 -0400 | [diff] [blame] | 34 | Setup project repositories(s) |
| 35 | ----------------------------- |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 36 | These steps are performed for each project repository that |
| 37 | provides documentation. |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 38 | |
Rich Bennett | 5baea46 | 2017-09-13 03:19:19 -0400 | [diff] [blame] | 39 | First let's set two variables that will be used in the subsequent steps. |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 40 | Set *reponame* to the project repository you are setting up |
| 41 | just as it appears in the **Project Name** column of |
| 42 | the Gerrit projects page. |
| 43 | Set *lfid* to your Linux Foundation identity that you use to |
| 44 | login to gerrit or for git clone requests over ssh. |
Rich Bennett | e4c4251 | 2017-09-06 08:07:22 -0400 | [diff] [blame] | 45 | |
| 46 | .. code-block:: bash |
| 47 | |
| 48 | reponame= |
| 49 | lfid= |
| 50 | |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 51 | The next step is to add a directory in the doc project where your |
| 52 | project will be included as a submodule and at least one reference |
| 53 | from the doc project to the documentation index in your repository. |
Krzysztof Opasiak | 6688fd0 | 2019-07-09 23:31:00 +0200 | [diff] [blame] | 54 | The following sequence will do this over ssh. Please note that the |
| 55 | reference to your project in *repolist.rst* should be considered |
| 56 | temporary and removed when you reference it from more appropriate |
| 57 | place. |
Rich Bennett | 5baea46 | 2017-09-13 03:19:19 -0400 | [diff] [blame] | 58 | |
| 59 | .. caution:: |
| 60 | |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 61 | If your access network restricts ssh, you will need to use equivalent |
| 62 | git commands and HTTP Passwords as described `here <http://wiki.onap.org/x/X4AP>`_. |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 63 | |
Krzysztof Opasiak | 8b43b97 | 2019-05-29 17:29:48 +0200 | [diff] [blame] | 64 | .. caution:: |
| 65 | |
| 66 | Don't replace ../ in *git submodule add* with any relative path on |
| 67 | your local file system. It refers to the location of your repository |
| 68 | on the server. |
| 69 | |
Rich Bennett | 358472a | 2017-08-31 08:05:36 -0400 | [diff] [blame] | 70 | .. code-block:: bash |
| 71 | |
Rich Bennett | e4c4251 | 2017-09-06 08:07:22 -0400 | [diff] [blame] | 72 | git clone ssh://$lfid@gerrit.onap.org:29418/doc |
Rich Bennett | 358472a | 2017-08-31 08:05:36 -0400 | [diff] [blame] | 73 | cd doc |
| 74 | mkdir -p `dirname docs/submodules/$reponame` |
Rich Bennett | 2360e21 | 2017-09-20 08:26:05 -0400 | [diff] [blame] | 75 | git submodule add ../$reponame docs/submodules/$reponame.git |
Rich Bennett | e4c4251 | 2017-09-06 08:07:22 -0400 | [diff] [blame] | 76 | git submodule init docs/submodules/$reponame.git |
| 77 | git submodule update docs/submodules/$reponame.git |
Rich Bennett | 358472a | 2017-08-31 08:05:36 -0400 | [diff] [blame] | 78 | |
Rich Bennett | e4c4251 | 2017-09-06 08:07:22 -0400 | [diff] [blame] | 79 | echo " $reponame <../submodules/$reponame.git/docs/index>" >> docs/release/repolist.rst |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 80 | |
Rich Bennett | 358472a | 2017-08-31 08:05:36 -0400 | [diff] [blame] | 81 | git add . |
Rich Bennett | e4c4251 | 2017-09-06 08:07:22 -0400 | [diff] [blame] | 82 | git commit -s |
Rich Bennett | 358472a | 2017-08-31 08:05:36 -0400 | [diff] [blame] | 83 | git review |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 84 | |
Rich Bennett | 5baea46 | 2017-09-13 03:19:19 -0400 | [diff] [blame] | 85 | .. caution:: |
| 86 | Wait for the above change to be merged before any merge to the |
| 87 | project repository that you have just added as a submodule. |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 88 | If the project repository added as submodule changes before the |
| 89 | doc project merge, git may not automatically update the submodule |
| 90 | reference on changes and/or the verify job will fail in the step below. |
Rich Bennett | 358472a | 2017-08-31 08:05:36 -0400 | [diff] [blame] | 91 | |
| 92 | |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 93 | The last step is to create a docs directory in your repository with |
| 94 | an index.rst file. The following sequence will complete the minimum |
| 95 | required over ssh. As you have time to convert or add new content you |
| 96 | can update the index and add files under the docs folder. |
Rich Bennett | 5baea46 | 2017-09-13 03:19:19 -0400 | [diff] [blame] | 97 | |
| 98 | .. hint:: |
| 99 | If you have additional content, you can include it by editing the |
| 100 | index.rst file and/or adding other files before the git commit. |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 101 | See `Templates and Examples`_ below and :ref:`converting-to-rst` |
| 102 | for more information. |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 103 | |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 104 | |
| 105 | .. code-block:: bash |
| 106 | |
Rich Bennett | e4c4251 | 2017-09-06 08:07:22 -0400 | [diff] [blame] | 107 | git clone ssh://$lfid@gerrit.onap.org:29418/$reponame |
Rich Bennett | a9d6a44 | 2017-08-25 02:37:15 -0400 | [diff] [blame] | 108 | cd $reponame |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 109 | mkdir docs |
| 110 | echo ".. This work is licensed under a Creative Commons Attribution 4.0 International License. |
| 111 | |
Rich Bennett | a9d6a44 | 2017-08-25 02:37:15 -0400 | [diff] [blame] | 112 | TODO Add files to toctree and delete this header |
| 113 | ------------------------------------------------ |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 114 | .. toctree:: |
| 115 | :maxdepth: 1 |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 116 | |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 117 | " > docs/index.rst |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 118 | |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 119 | git add . |
Rich Bennett | e4c4251 | 2017-09-06 08:07:22 -0400 | [diff] [blame] | 120 | git commit -s |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 121 | git review |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 122 | |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 123 | |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 124 | The diagram below illustrates what is accomplished in the setup steps |
Rich Bennett | a9d6a44 | 2017-08-25 02:37:15 -0400 | [diff] [blame] | 125 | above from the perspective of a file structure created for a local test, |
Rich Bennett | 358472a | 2017-08-31 08:05:36 -0400 | [diff] [blame] | 126 | a jenkins verify job, and/or published release documentation including: |
Rich Bennett | 0c82643 | 2017-09-18 17:28:09 -0400 | [diff] [blame] | 127 | |
| 128 | - ONAP gerrit project repositories, |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 129 | |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 130 | - doc project repository master document index.rst, templates, |
| 131 | configuration, and other documents |
| 132 | |
| 133 | - submodules directory where other project repositories and |
| 134 | directories/files are referenced |
| 135 | |
| 136 | - file structure: directories (ellipses), files(boxes) |
| 137 | |
| 138 | - references: directory/files (solid edges), git submodule |
| 139 | (dotted edges), sphinx toctree (dashed edges) |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 140 | |
| 141 | .. graphviz:: |
| 142 | |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 143 | |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 144 | digraph docstructure { |
| 145 | size="8,12"; |
| 146 | node [fontname = "helvetica"]; |
| 147 | // Align gerrit repos and docs directories |
Rich Bennett | a9d6a44 | 2017-08-25 02:37:15 -0400 | [diff] [blame] | 148 | {rank=same doc aaf aai reponame repoelipse vnfsdk vvp} |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 149 | {rank=same confpy release templates masterindex submodules otherdocdocumentelipse} |
Rich Bennett | 358472a | 2017-08-31 08:05:36 -0400 | [diff] [blame] | 150 | {rank=same releasedocumentindex releaserepolist} |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 151 | |
| 152 | //Illustrate Gerrit Repos and provide URL/Link for complete repo list |
| 153 | gerrit [label="gerrit.onap.org/r", href="https://gerrit.onap.org/r/#/admin/projects/" ]; |
Rich Bennett | 358472a | 2017-08-31 08:05:36 -0400 | [diff] [blame] | 154 | doc [href="https://gerrit.onap.org/r/gitweb?p=doc.git;a=tree"]; |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 155 | gerrit -> doc; |
| 156 | gerrit -> aaf; |
| 157 | gerrit -> aai; |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 158 | gerrit -> reponame; |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 159 | gerrit -> repoelipse; |
| 160 | repoelipse [label=". . . ."]; |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 161 | gerrit -> vnfsdk; |
| 162 | gerrit -> vvp; |
| 163 | |
Rich Bennett | a9d6a44 | 2017-08-25 02:37:15 -0400 | [diff] [blame] | 164 | //Show example of local reponame instance of component info |
| 165 | reponame -> reponamedocsdir; |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 166 | reponamesm -> reponamedocsdir; |
Rich Bennett | a9d6a44 | 2017-08-25 02:37:15 -0400 | [diff] [blame] | 167 | reponamedocsdir [label="docs"]; |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 168 | reponamedocsdir -> repnamedocsdirindex; |
Rich Bennett | e4c4251 | 2017-09-06 08:07:22 -0400 | [diff] [blame] | 169 | repnamedocsdirindex [label="index.rst", shape=box]; |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 170 | |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 171 | //Show detail structure of a portion of doc/docs |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 172 | doc -> docs; |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 173 | docs -> confpy; |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 174 | confpy [label="conf.py",shape=box]; |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 175 | docs -> masterindex; |
Rich Bennett | 358472a | 2017-08-31 08:05:36 -0400 | [diff] [blame] | 176 | masterindex [label="Master\nindex.rst", shape=box]; |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 177 | docs -> release; |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 178 | docs -> templates; |
| 179 | docs -> otherdocdocumentelipse; |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 180 | otherdocdocumentelipse [label="...other\ndocuments"]; |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 181 | docs -> submodules |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 182 | |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 183 | masterindex -> releasedocumentindex [style=dashed, label="sphinx\ntoctree\nreference"]; |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 184 | |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 185 | //Show submodule linkage to docs directory |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 186 | submodules -> reponamesm [style=dotted,label="git\nsubmodule\nreference"]; |
Rich Bennett | e4c4251 | 2017-09-06 08:07:22 -0400 | [diff] [blame] | 187 | reponamesm [label="reponame.git"]; |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 188 | |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 189 | //Example Release document index that references component info provided in other project repo |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 190 | release -> releasedocumentindex; |
Rich Bennett | 1da3046 | 2017-08-24 12:11:36 -0400 | [diff] [blame] | 191 | releasedocumentindex [label="index.rst", shape=box]; |
Rich Bennett | 358472a | 2017-08-31 08:05:36 -0400 | [diff] [blame] | 192 | releasedocumentindex -> releaserepolist [style=dashed, label="sphinx\ntoctree\nreference"]; |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 193 | releaserepolist [label="repolist.rst", shape=box]; |
Rich Bennett | 358472a | 2017-08-31 08:05:36 -0400 | [diff] [blame] | 194 | release -> releaserepolist; |
Rich Bennett | e4c4251 | 2017-09-06 08:07:22 -0400 | [diff] [blame] | 195 | releaserepolist -> repnamedocsdirindex [style=dashed, label="sphinx\ntoctree\nreference"]; |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 196 | |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 197 | } |
| 198 | |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 199 | Branches in the DOC Project |
| 200 | --------------------------- |
| 201 | |
| 202 | The DOC project 'master' branch aggregates the 'latest' content |
| 203 | from all ONAP project repositories contributing documentation into a |
| 204 | single tree file structure as described in the previous section. This |
| 205 | branch is continuously integrated and deployed at Read The |
| 206 | Docs as the 'latest' ONAP Documentation by: |
| 207 | |
| 208 | * Jenkins doc-verify-rtd and doc-merge-rtd jobs triggered whenever patches on |
| 209 | contributing repositories contain rst files at or below a top level |
| 210 | 'docs' folder. |
| 211 | |
| 212 | * Subscription in the DOC project to changes in submodule repositories. |
| 213 | These changes appear in the DOC project as commits with title |
| 214 | 'Updated git submodules' when a change to a contributing project |
| 215 | repository is merged. No DOC project code review occurs, only a |
| 216 | submodule repository commit hash is updated to track the head of each |
| 217 | contributing master branch. |
| 218 | |
| 219 | For each ONAP named release the DOC project creates a branch with the |
| 220 | release name. The timing of the release branch is determined by |
| 221 | work needed in the DOC project to prepare the release branch and the |
| 222 | amount of change unrelated to the release in the master branch. |
| 223 | For example contributing projects that create named release branches |
| 224 | early to begin work on the next release and/or contributing projects |
| 225 | to the master that are not yet part of the named release would result |
| 226 | in an earlier named release branch to cleanly separate work to stabilize |
| 227 | a release from other changes in the master branch. |
| 228 | |
| 229 | A named release branch is integrated and deployed at Read The Docs |
| 230 | as the 'named release' by aggregating content from contributing |
| 231 | project repositories. A contributing project repository can |
| 232 | choose one of the following for the 'named release' branch: |
| 233 | |
| 234 | * Remove the contributing project repository submodule and RST |
| 235 | references when not part of the named release. |
| 236 | |
| 237 | * Provide a commit hash or tag for the contributing project master |
| 238 | branch to be used for the life of the release branch or until a |
| 239 | request is submitted to change the commit hash or tag. |
| 240 | |
| 241 | * Provide the commit hash for the head of a named release branch |
| 242 | created in the contributing project repository. This option |
| 243 | may be appropriate if frequent changes are expected over the |
| 244 | life of the named release and work the same way as the continuous |
| 245 | integration and deployment described for the master branch. |
| 246 | |
| 247 | The decision on option for each contributing project repository |
| 248 | can be made or changed before the final release is approved. The |
| 249 | amount of change and expected differences between master and a |
| 250 | named release branch for each repository should drive the choice of |
| 251 | option and timing. |
| 252 | |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 253 | About GIT branches |
| 254 | ------------------ |
| 255 | |
| 256 | GIT is a powerful tool allowing many actions, but without respecting some rules |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 257 | the GIT structure can be quickly hard to maintain. |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 258 | |
| 259 | Here are some conventions about GIT branches: |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 260 | |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 261 | - ALWAYS create a local branch to edit or create any file. This local branch |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 262 | will be considered as a topic in Gerrit and allow contributors to |
| 263 | work at the same time on the same project. |
| 264 | |
| 265 | - 1 feature = 1 branch. In the case of documentation, a new chapter |
| 266 | or page about a new code feature can be considered as a 'doc feature' |
| 267 | |
| 268 | - 1 bug = 1 branch. In the case of documentation, a correction on an |
| 269 | existing sentence can be considered as a 'doc bug' |
| 270 | |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 271 | - the master branch is considered as "unstable", containing new features that |
| 272 | will converge to a stable situation for the release date. |
| 273 | |
| 274 | The day of the release, the repository owner will create a new branch to |
| 275 | fix the code and documentation. This will represent the 'stable' code of the |
| 276 | release. In this context: |
Rich Bennett | 7e34ab3 | 2018-04-18 11:03:25 -0400 | [diff] [blame] | 277 | |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 278 | - NEVER push a new feature on a stable branch |
Rich Bennett | 7e34ab3 | 2018-04-18 11:03:25 -0400 | [diff] [blame] | 279 | |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 280 | - Only bug correction are authorized on a stable branch using |
| 281 | cherry pick method |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 282 | |
| 283 | .. image:: git_branches.png |
| 284 | |
Rich Bennett | a9d6a44 | 2017-08-25 02:37:15 -0400 | [diff] [blame] | 285 | Creating Restructured Text |
| 286 | ========================== |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 287 | |
Rich Bennett | 5baea46 | 2017-09-13 03:19:19 -0400 | [diff] [blame] | 288 | Templates and Examples |
| 289 | ---------------------- |
Rich Bennett | 7134cba | 2017-10-10 07:39:06 -0400 | [diff] [blame] | 290 | Templates are available that capture the kinds of information |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 291 | useful for different types of projects and provide some examples of |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 292 | restructured text. We organize templates in the following way to: |
Rich Bennett | 7134cba | 2017-10-10 07:39:06 -0400 | [diff] [blame] | 293 | |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 294 | - help authors understand relationships between documents |
| 295 | |
| 296 | - keep the user audience context in mind when writing and |
| 297 | |
| 298 | - tailor sections for different kinds of projects. |
| 299 | |
| 300 | |
| 301 | **Sections** Represent a certain type of content. A section |
| 302 | is **provided** in an project repository, to describe something about |
| 303 | the characteristics, use, capability, etc. of things in that repository. |
| 304 | A section may also be **referenced** from other sections and in |
| 305 | other repositories. For example, an API specification provided in a project |
| 306 | repository might be referenced to in a Platform API Reference Guide. |
Rich Bennett | 7134cba | 2017-10-10 07:39:06 -0400 | [diff] [blame] | 307 | The notes in the beginning of each section template provide |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 308 | additional detail about what is typically covered and where |
| 309 | there may be references to the section. |
Rich Bennett | 7134cba | 2017-10-10 07:39:06 -0400 | [diff] [blame] | 310 | |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 311 | **Collections** Are a set of sections that are typically provided |
| 312 | for a particular type of project, repository, guide, reference manual, etc. |
| 313 | For example, a collection for a platform component, an SDK, etc. |
Rich Bennett | 7134cba | 2017-10-10 07:39:06 -0400 | [diff] [blame] | 314 | |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 315 | You can: browse the template *collections* and *sections* below; |
| 316 | show source to look at the Restructured Text and Sphinx directives used; |
| 317 | copy the source either from a browser window or by downloading the |
| 318 | file in raw form from |
Rich Bennett | 7134cba | 2017-10-10 07:39:06 -0400 | [diff] [blame] | 319 | the `gerrit doc repository <https://gerrit.onap.org/r/gitweb?p=doc.git;a=tree;f=docs/templates;/>`_ and |
| 320 | then add them to your repository docs folder and index.rst. |
| 321 | |
| 322 | |
| 323 | Sections |
| 324 | ++++++++ |
Rich Bennett | 5baea46 | 2017-09-13 03:19:19 -0400 | [diff] [blame] | 325 | |
| 326 | .. toctree:: |
| 327 | :maxdepth: 1 |
| 328 | :glob: |
| 329 | |
Rich Bennett | 7134cba | 2017-10-10 07:39:06 -0400 | [diff] [blame] | 330 | ../../../templates/sections/* |
| 331 | |
| 332 | |
| 333 | Collections |
| 334 | +++++++++++ |
| 335 | |
| 336 | .. toctree:: |
| 337 | :maxdepth: 1 |
| 338 | :glob: |
| 339 | |
| 340 | ../../../templates/collections/* |
| 341 | |
| 342 | |
Rich Bennett | 5baea46 | 2017-09-13 03:19:19 -0400 | [diff] [blame] | 343 | |
Blaisonneau David | 2963ece | 2017-11-27 10:07:18 +0100 | [diff] [blame] | 344 | In addition to these simple templates and examples |
Rich Bennett | 5baea46 | 2017-09-13 03:19:19 -0400 | [diff] [blame] | 345 | there are many open source projects (e.g. Open Daylight, Open Stack) |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 346 | that are using Sphinx and Readthedocs where you may find examples |
| 347 | to start with. Working with project teams we will continue to enhance |
| 348 | templates here and capture frequently asked questions on the developer |
| 349 | wiki question topic `documentation <https://wiki.onap.org/questions/topics/16384055/documentation>`_. |
Rich Bennett | 5baea46 | 2017-09-13 03:19:19 -0400 | [diff] [blame] | 350 | |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 351 | Each project should: |
| 352 | |
| 353 | - decide what is relevant content |
| 354 | |
| 355 | - determine the best way to create/maintain it in the CI/CD process and |
| 356 | |
| 357 | - work with the documentation team to reference content from the |
| 358 | master index and guides. |
| 359 | |
| 360 | Consider options including filling in a template, identifying existing |
| 361 | content that can be used as is or easily converted, and use of Sphinx |
| 362 | directives/extensions to automatically generate restructured text |
| 363 | from other source you already have. |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 364 | |
Rich Bennett | a9d6a44 | 2017-08-25 02:37:15 -0400 | [diff] [blame] | 365 | Links and References |
Rich Bennett | 5baea46 | 2017-09-13 03:19:19 -0400 | [diff] [blame] | 366 | -------------------- |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 367 | It's pretty common to want to reference another location in the |
| 368 | ONAP documentation and it's pretty easy to do with |
| 369 | reStructuredText. This is a quick primer, more information is in the |
| 370 | `Sphinx section on Cross-referencing arbitrary locations |
| 371 | <http://www.sphinx-doc.org/en/stable/markup/inline.html#ref-role>`_. |
| 372 | |
| 373 | Within a single document, you can reference another section simply by:: |
| 374 | |
| 375 | This is a reference to `The title of a section`_ |
| 376 | |
| 377 | Assuming that somewhere else in the same file there a is a section |
| 378 | title something like:: |
| 379 | |
| 380 | The title of a section |
| 381 | ^^^^^^^^^^^^^^^^^^^^^^ |
| 382 | |
| 383 | It's typically better to use ``:ref:`` syntax and labels to provide |
| 384 | links as they work across files and are resilient to sections being |
| 385 | renamed. First, you need to create a label something like:: |
| 386 | |
| 387 | .. _a-label: |
| 388 | |
| 389 | The title of a section |
| 390 | ^^^^^^^^^^^^^^^^^^^^^^ |
| 391 | |
| 392 | .. note:: The underscore (_) before the label is required. |
| 393 | |
| 394 | Then you can reference the section anywhere by simply doing:: |
| 395 | |
| 396 | This is a reference to :ref:`a-label` |
| 397 | |
| 398 | or:: |
| 399 | |
| 400 | This is a reference to :ref:`a section I really liked <a-label>` |
| 401 | |
| 402 | .. note:: When using ``:ref:``-style links, you don't need a trailing |
| 403 | underscore (_). |
| 404 | |
| 405 | Because the labels have to be unique, it usually makes sense to prefix |
| 406 | the labels with the project name to help share the label space, e.g., |
| 407 | ``sfc-user-guide`` instead of just ``user-guide``. |
| 408 | |
Rich Bennett | a9d6a44 | 2017-08-25 02:37:15 -0400 | [diff] [blame] | 409 | Testing |
| 410 | ======= |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 411 | |
Rich Bennett | a9d6a44 | 2017-08-25 02:37:15 -0400 | [diff] [blame] | 412 | One RST File |
| 413 | ------------ |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 414 | It is recommended that all rst content is validated by `doc8 <https://pypi.python.org/pypi/doc8>`_ standards. |
| 415 | To validate your rst files using doc8, install doc8. |
| 416 | |
| 417 | .. code-block:: bash |
| 418 | |
| 419 | sudo pip install doc8 |
| 420 | |
| 421 | doc8 can now be used to check the rst files. Execute as, |
| 422 | |
| 423 | .. code-block:: bash |
| 424 | |
| 425 | doc8 --ignore D000,D001 <file> |
| 426 | |
| 427 | |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 428 | |
Rich Bennett | a9d6a44 | 2017-08-25 02:37:15 -0400 | [diff] [blame] | 429 | One Project |
| 430 | ----------- |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 431 | To test how the documentation renders in HTML, follow these steps: |
| 432 | |
Pawel Wieczorek | 1a3294f | 2019-07-10 16:20:22 +0200 | [diff] [blame] | 433 | Install `virtual environment <https://pypi.org/project/virtualenv>`_ & create one. |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 434 | |
| 435 | .. code-block:: bash |
| 436 | |
| 437 | sudo pip install virtualenv |
Pawel Wieczorek | 1a3294f | 2019-07-10 16:20:22 +0200 | [diff] [blame] | 438 | virtualenv onap_docs |
| 439 | |
| 440 | Activate `onap_docs` virtual environment. |
| 441 | |
| 442 | .. code-block:: bash |
| 443 | |
| 444 | source onap_docs/bin/activate |
| 445 | |
| 446 | .. note:: Virtual environment activation has to be performed before attempting to build documentation. |
| 447 | Otherwise, tools necessary for the process might not be available. |
Rene_Robert | bf4ab4e | 2019-07-01 18:12:40 +0200 | [diff] [blame] | 448 | |
| 449 | Download a project repository. |
| 450 | |
| 451 | .. code-block:: bash |
| 452 | |
Pawel Wieczorek | 1a3294f | 2019-07-10 16:20:22 +0200 | [diff] [blame] | 453 | git clone http://gerrit.onap.org/r/<project> |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 454 | |
| 455 | Download the doc repository. |
| 456 | |
| 457 | .. code-block:: bash |
| 458 | |
| 459 | git clone http://gerrit.onap.org/r/doc |
| 460 | |
| 461 | Change directory to doc & install requirements. |
| 462 | |
| 463 | .. code-block:: bash |
| 464 | |
| 465 | cd doc |
Pawel Wieczorek | 1a3294f | 2019-07-10 16:20:22 +0200 | [diff] [blame] | 466 | pip install -r etc/requirements.txt |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 467 | |
Rene_Robert | bf4ab4e | 2019-07-01 18:12:40 +0200 | [diff] [blame] | 468 | Copy the conf.py file to your project folder where RST files have been kept: |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 469 | |
| 470 | .. code-block:: bash |
| 471 | |
Rene_Robert | bf4ab4e | 2019-07-01 18:12:40 +0200 | [diff] [blame] | 472 | cp docs/conf.py <path-to-project-folder>/<folder where are rst files> |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 473 | |
Rene_Robert | bf4ab4e | 2019-07-01 18:12:40 +0200 | [diff] [blame] | 474 | Copy the static files to the project folder where RST files have been kept: |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 475 | |
| 476 | .. code-block:: bash |
| 477 | |
Rene_Robert | bf4ab4e | 2019-07-01 18:12:40 +0200 | [diff] [blame] | 478 | cp -r docs/_static/ <path-to-project-folder>/<folder where are rst files> |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 479 | |
| 480 | Build the documentation from within your project folder: |
| 481 | |
| 482 | .. code-block:: bash |
| 483 | |
Rene_Robert | bf4ab4e | 2019-07-01 18:12:40 +0200 | [diff] [blame] | 484 | sphinx-build -b html <path-to-project-folder>/<folder where are rst files> <path-to-output-folder> |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 485 | |
| 486 | Your documentation shall be built as HTML inside the |
| 487 | specified output folder directory. |
| 488 | |
Rene_Robert | bf4ab4e | 2019-07-01 18:12:40 +0200 | [diff] [blame] | 489 | You can use your Web Browser to open |
| 490 | and check resulting html pages in the output folder. |
| 491 | |
Pawel Wieczorek | 1a3294f | 2019-07-10 16:20:22 +0200 | [diff] [blame] | 492 | .. note:: Be sure to remove the `conf.py`, the static/ files and the output folder from the `<project>/docs/`. This is for testing only. Only commit the rst files and related content. |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 493 | |
jsseidel | 8066619 | 2017-09-19 13:29:23 -0400 | [diff] [blame] | 494 | .. _building-all-documentation: |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 495 | |
Rich Bennett | a9d6a44 | 2017-08-25 02:37:15 -0400 | [diff] [blame] | 496 | All Documentation |
| 497 | ----------------- |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 498 | To build the all documentation under doc/, follow these steps: |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 499 | |
Pawel Wieczorek | 6e82383 | 2019-07-10 16:31:27 +0200 | [diff] [blame] | 500 | Install `tox <https://pypi.org/project/tox>`_. |
Rich Bennett | ac93e0e | 2017-07-19 01:36:52 -0400 | [diff] [blame] | 501 | |
| 502 | .. code-block:: bash |
| 503 | |
Pawel Wieczorek | 6e82383 | 2019-07-10 16:31:27 +0200 | [diff] [blame] | 504 | sudo pip install tox |
Rich Bennett | a9d6a44 | 2017-08-25 02:37:15 -0400 | [diff] [blame] | 505 | |
| 506 | Download the DOC repository. |
| 507 | |
| 508 | .. code-block:: bash |
| 509 | |
| 510 | git clone http://gerrit.onap.org/r/doc |
| 511 | |
Rich Bennett | 9c3af50 | 2018-04-26 09:30:57 -0400 | [diff] [blame] | 512 | Build documentation using tox local environment & then open using any browser. |
Rich Bennett | a9d6a44 | 2017-08-25 02:37:15 -0400 | [diff] [blame] | 513 | |
| 514 | .. code-block:: bash |
| 515 | |
| 516 | cd doc |
Cédric Ollivier | 268209c | 2017-11-10 11:31:53 +0100 | [diff] [blame] | 517 | tox -elocal |
Rich Bennett | a9d6a44 | 2017-08-25 02:37:15 -0400 | [diff] [blame] | 518 | firefox docs/_build/html/index.html |
| 519 | |
Cédric Ollivier | 268209c | 2017-11-10 11:31:53 +0100 | [diff] [blame] | 520 | .. note:: Make sure to run `tox -elocal` and not just `tox`. |
Rich Bennett | 50d0d88 | 2019-03-08 17:03:58 -0500 | [diff] [blame] | 521 | This updates all submodule repositories that are integrated |
| 522 | by the doc project. |
Rich Bennett | 9c3af50 | 2018-04-26 09:30:57 -0400 | [diff] [blame] | 523 | |
Rich Bennett | d504dc8 | 2018-05-31 08:40:36 -0400 | [diff] [blame] | 524 | There are additional tox environment options for checking External |
Rene_Robert | bf4ab4e | 2019-07-01 18:12:40 +0200 | [diff] [blame] | 525 | URLs and Spelling. Use the tox environment options below and then |
Rich Bennett | 50d0d88 | 2019-03-08 17:03:58 -0500 | [diff] [blame] | 526 | look at the output with the Linux `more` or similar command |
| 527 | scan for output that applies to the files you are validating. |
Rich Bennett | 9c3af50 | 2018-04-26 09:30:57 -0400 | [diff] [blame] | 528 | |
| 529 | .. code-block:: bash |
| 530 | |
| 531 | tox -elinkcheck |
| 532 | more < docs/_build/linkcheck/output.txt |
| 533 | |
| 534 | tox -espellcheck |
| 535 | more < docs/_build/spellcheck/output.txt |