summaryrefslogtreecommitdiffstats
path: root/docs/enable_docu_gen.rst
blob: 639ea4920c72c81bfed9c2e2d663da0bc318ef14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
How to setup the workflow of automatic documentation build for your project
----------------------------------------------------------------------------

**Setup you repository and then clone locally**::

 ssh-add your-ssh.key

 git clone ssh://<username>@gerrit.opnfv.org:29418/<project>

 cd <project>


**Inside the repository create the following structure:**::

   gerrit.opnfv.org/<project>
                        |-- docs/
                        |    |-- some-project-description.rst
                        |    |-- other-doc-1.rst
                        |    |-- images/
                        |         |-- *.png|*.jpg
                        |-- release/
                        |    |-- some-release-doc.rst
                        |    |-- images/
                        |         |-- *.png|*.jpg
                        |-- requirements/
                        |    |-- requirements.rst
                        |    |-- images/
                        |         |-- *.png|*.jpg
                        |-- design_docs/
                        |    |-- some-design-doc.rst
                        |    |-- images/
                        |         |-- *.png|*.jpg
                        |-- some_project_file.py
                        |-- some_shell_script.sh
                        |-- INFO
                        `-- README


More details about the default structure you can find `here <https://wiki.opnfv.org/documentation>`_ at paragraph "How and where to store the document content files in your repository".

**In order to obtain a nice .html & .pdf at then end you must write you documentation using reSt markup**

quick guides:

* http://docutils.sourceforge.net/docs/user/rst/quickref.html
* http://rest-sphinx-memo.readthedocs.org/en/latest/ReST.html
* http://www.math.uiuc.edu/~gfrancis/illimath/windows/aszgard_mini/movpy-2.0.0-py2.4.4/manuals/docutils/ref/rst/directives.html

An `nice online editor <http://rst.ninjs.org/>`_ that will help you write reSt and see your changes live. After done editing you can copy the source document in the repository and follow the workflow.


**Clone the releng repository so you can created jobs for JJB**::

 git clone ssh://<username>@gerrit.opnfv.org:29418/releng


Enter the project settings::

 cd releng/jjb/<project>/


**Create the verify & build scripts**

The scripts are the same for most projects and if you need customizations copy them under your project in releng/jjb/<project>/::

 cp releng/jjb/opnfvdocs/build-docu.sh releng/jjb/<your-project>/

and change according to you needs.

If standard will suffice for you skip this step and jump to **Edit <your-project>.yml**, **Variant 1 - standard**

**docu-build.sh**::

 #!/bin/bash
 set -e
 set -o pipefail

 project="$(git remote -v | head -n1 | awk '{{print $2}}' | sed -e 's,.*:\(.*/\)\?,,' -e 's/\.git$//')"
 export PATH=$PATH:/usr/local/bin/

 git_sha1="$(git rev-parse HEAD)"
 docu_build_date="$(date)"

 files=()
 while read -r -d ''; do
         files+=("$REPLY")
 done < <(find * -type f -iname '*.rst' -print0)

 for file in "${{files[@]}}"; do

         file_cut="${{file%.*}}"
         gs_cp_folder="${{file_cut}}"

         # sed part
         sed -i "s/_sha1_/$git_sha1/g" $file
         sed -i "s/_date_/$docu_build_date/g" $file

         # rst2html part
         echo "rst2html $file"
         rst2html --halt=2 $file | gsutil cp -L gsoutput.txt - \
         gs://artifacts.opnfv.org/"$project"/"$gs_cp_folder".html
         gsutil setmeta -h "Content-Type:text/html" \
                        -h "Cache-Control:private, max-age=0, no-transform" \
                        gs://artifacts.opnfv.org/"$project"/"$gs_cp_folder".html
         cat gsoutput.txt
         rm -f gsoutput.txt

         echo "rst2pdf $file"
         rst2pdf $file -o - | gsutil cp -L gsoutput.txt - \
         gs://artifacts.opnfv.org/"$project"/"$gs_cp_folder".pdf
         gsutil setmeta -h "Content-Type:application/pdf" \
                        -h "Cache-Control:private, max-age=0, no-transform" \
                        gs://artifacts.opnfv.org/"$project"/"$gs_cp_folder".pdf
         cat gsoutput.txt
         rm -f gsoutput.txt

 done

 images=()
 while read -r -d ''; do
         images+=("$REPLY")
 done < <(find * -type f \( -iname \*.jpg -o -iname \*.png \) -print0)

 for img in "${{images[@]}}"; do

         # uploading found images
         echo "uploading $img"
         cat "$img" | gsutil cp -L gsoutput.txt - \
         gs://artifacts.opnfv.org/"$project"/"$img"
         gsutil setmeta -h "Content-Type:image/jpeg" \
                         -h "Cache-Control:private, max-age=0, no-transform" \
                         gs://artifacts.opnfv.org/"$project"/"$img"
         cat gsoutput.txt
         rm -f gsoutput.txt

 done

 #the double {{ in file_cut="${{file%.*}}" is to escape jjb's yaml


**docu-verify.sh**::

 #!/bin/bash
 set -e
 set -o pipefail

 project="$(git remote -v | head -n1 | awk '{{print $2}}' | sed -e 's,.*:\(.*/\)\?,,' -e 's/\.git$//')"
 export PATH=$PATH:/usr/local/bin/

 git_sha1="$(git rev-parse HEAD)"
 docu_build_date="$(date)"

 files=()
 while read -r -d ''; do
         files+=("$REPLY")
 done < <(find * -type f -iname '*.rst' -print0)

 for file in "${{files[@]}}"; do

         file_cut="${{file%.*}}"
         gs_cp_folder="${{file_cut}}"

         # sed part
         sed -i "s/_sha1_/$git_sha1/g" $file
         sed -i "s/_date_/$docu_build_date/g" $file

         # rst2html part
         echo "rst2html $file"
         rst2html --exit-status=2 $file > $file_cut".html"

         echo "rst2pdf $file"
         rst2pdf $file -o $file_cut".pdf"

 done

 #the double {{ in file_cut="${{file%.*}}" is to escape jjb's yaml


**Edit <your-project>.yml**::

 vi releng/jjb/<your-project>/<your-project>.yml


Make sure you have the job-templates set correctly as below.

example::
 vi releng/jjb/opnfvdocs/opnfvdocs.yml
 # make sure you are using one of the variants below and that !include-raw directive is present

Variant 1 - standard
---------------------

By chosing **Variant 1** you will use the scripts from opnfvdocs project.

**<your-project>.yml**::

 - job-template:
    name: 'opnfvdocs-daily-{stream}'

    node: master
    ...
    builders:
        - shell:
            !include-raw ../opnfvdocs/docu-build.sh

 - job-template:
    name: 'opnfvdocs-verify'

    node: master
    ...
    builders:
        - shell:
            !include-raw ../opnfvdocs/docu-verify.sh

 - job-template:
    name: 'opnfvdocs-merge'

    node: master
    ...
    builders:
        - shell:
            !include-raw ../opnfvdocs/docu-build.sh


Variant 2 - custom
-------------------

**<your-project>.yml**::

 - job-template:
    name: 'opnfvdocs-daily-{stream}'

    node: master
    ...
    builders:
        - shell:
            !include-raw docu-build.sh

 - job-template:
    name: 'opnfvdocs-verify'

    node: master
    ...
    builders:
        - shell:
            !include-raw docu-verify.sh

 - job-template:
    name: 'opnfvdocs-merge'

    node: master
    ...
    builders:
        - shell:
            !include-raw docu-build.sh


"node: master" is important here as all documentations are built on Jenkins master node for now.

Please reffer to the releng repository for the correct indentation as JJB is very picky with those and also for the rest of the code that is missing in the example code and replaced by "...".
Also you must have your documentation under docs/ in the repository or gsutil will fail to copy them; for customizations you might need to addapt build-docu.sh as we did for genesis project as different documents need to go into different places.


Stage files example::

 git add docu-build.sh docu-verify.sh <project>.yml


Commit change with --signoff::

 git commit --signoff


Send code for review in Gerrit::

 git review -v


Create the documentation using the recommended structure in your repository and submit to gerrit for review


**Jenkins will take over and produce artifacts in the form of .html & .pdf**

Jenkins has the proper packages installed in order to produce the artifacts.


**Artifacts are stored on Google Storage (still to decide where, structure and how to present them)**

http://artifacts.opnfv.org/


`Here you can download the PDF version <http://artifacts.opnfv.org/opnfvdocs/docs/enable_docu_gen.pdf>`_ of this guide.


**Scrape content from html artifacts on wiki**

This section describes how the html build artifacts can be made visible on Wiki using he scrape method.
In order to have you documentation on Wiki you need to create a wiki page and include an adaption of the code below:

example::

 {{scrape>http://artifacts.opnfv.org/opnfvdocs/docs/enable_docu_gen.html}}


Please try to write documentation as accurate and clear as possible as once reviewed and merged it will be automatically built and displayed on Wiki and everyone would apreciate a good written/nice looking guide.

If you want to see on wiki what code is scraped from the built artifacts click "Show pagesource" in the right (it will appear if you hover over the magnifier icon); this way you know what is written straight on wiki and what is embedded with "scrape". By knowing these details you will be able to prevent damages by manually updating wiki.


**Wiki update - how it works**

Edit Wiki page https://wiki.opnfv.org/<page> and look for {{scrape>http://artifacts.opnfv.org/<project>/<folder>/<doc-file>.html}}
Click "Preview" and see if the change you submitted to Git is present; add a short description in "Edit summary" field, then click "Save" to update the page. This extra step is needed as Wiki does not auto update content for now.


**How to track documentation**

You must include at the bottom of every document that you want to track the following::

 **Documentation tracking**

 Revision: _sha1

 Build date:  _date

 # add one "_" at the end of each trigger variable (they have also a prefix "_") when inserting them into documents to enable auto-replacement


**Image inclusion for artifacts**

Create a folder called images in the same folder where you documentation resides and copy .jpg or .png files there, according to the guide here: https://wiki.opnfv.org/documentation

Here is an example of what you need to include in the .rst files to include an image::

 .. image:: images/smiley.png
    :height: 200
    :width: 200
    :alt: Just a smiley face!
    :align: left

The image will be shown in both .html and .pdf resulting artifacts.


NOTE:
------

In order to generate html & pdf documentation the needed packages are rst2pdf & python-docutils if the Jenkins is CentOS/RHEL; many variants have been tested but this is the cleanest solution found.
For html generation it also supports css styles if needed.


**Documentation tracking**

Revision: _sha1_

Build date:  _date_