aboutsummaryrefslogtreecommitdiffstats
path: root/doc/appendix/Meta.rst
blob: 19deb791ad3fa496e65d810ec5d94fb1e9ee9faa (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
.. _CHANGE:Roadmap:

Meta
####

General guidelines to edit the documentation
********************************************

   1) It’s better for version control systems and diff tools to break lines at a sensible number of characters. Long lines appear as one diff. Also merging is more complex because merges are line based. Long unbreakable items may be longer (links, refs, …). We chose to use 160 chars.
   2) Please indent all directive content by 3 spaces (not 2, and no tabs).
   3) Please use ``*`` as an itemize character, since ``-`` and ``+`` are supported by docutils, but not officially supported by Sphinx`.
   4) Please underline all headlines with at least as many characters as the headline is long. Following the Python pattern for headline the levels are:

      .. code::
	  
         ############
         ************ (sometimes skipped in small documents)
         ============
         -------------------
         ‘’’’’’’’’’’’’’’’’’’’’’’’
	  
   5) It’s not required to write
   
      .. code::
	    
		 :samp:`code`
	   
      The default role for
	   
	  .. code::
	   
	     ``…``
		  
      is samp. ``:samp:`` is only required when you want to write italic text in code text.
	  
	  .. code::

         :samp:`print 1+{variable}`

      Now, variable becomes italic.

      Please simplify all usages of :samp:`…`to ``…`` for readability. Here are the regular expressions for an editor like Notepad++:
	  
      - Search pattern:: :samp:`(.+?)`
		 
      - Replace pattern:: ``\1`` 

   6) Each backend has one folder and each platform/compiler has one file. Please note that page headlines are different from ToC headline: 

      .. code::   

         .. toctree::
            :hidden:

            ToC entry <file1>
            file2

   7) A documentation should not use “you”, “we”, …, because it’s not an interactive conversation or informal letter. It’s like a thesis, everything is structured and formal. However, to make it more friendly to newcomers, we agree to allow informal language in section ':ref:`USING:QuickStart`'.

   8) Please keep errors low.
	  

Guidelines to edit section 'Building'
*************************************

I prefer a text block, which explains how a compilation works, what I can configure for that backend, etc. After that, I prefer a code block with e.g. bash instructions on how to compile a backend. A list of instructions with embedded bash lines is not helpful. An experienced, as well as novice user, would like to copy a set of instructions into the shell. But it should be stated what these instructions will do. Complex flows like for GCC, can be split into multiple shell code blocks. Moreover, I find it essential, to demonstrate when and where to change directories.

We would like to see a list like

* gcc (Gnu Compiler Collection)
* gcc-gnat (Ada compiler for GCC)
* llvm-del (LLVM development package)
* ...

The goal is to also explain what a user is installing and what the few lines in the build description do. Now they know the name, can search for similar names if the have another package manager or distro or can ask Google/Wikipedia. We often find many build receipts with cryptic shell code and to execute this unknown stuff with sudo is not comfortable. We would like to know what it does before hiting enter.
	  
Documentation configuration
***************************
	  
* Python snippet for Sphinx's `conf.py` to extract the current version number from Git (latest tag name). [:ghdlsharp:`200`, :ghdlsharp:`221`]

* Reference ``genindex.html`` from the navigation bar. [:ghdlsharp:`200`]

* Create "parts" (LaTeX terminology / chapter headlines) in navigation bar. [:ghdlsharp:`200`]
	
* Intersphinx files [:ghdlsharp:`200`]
	* To decompress the inventory file: `curl -s http://ghdl.readthedocs.io/en/latest/objects.inv | tail -n+5 | openssl zlib -d`. From `how-to-uncompress-zlib-data-in-unix <http://unix.stackexchange.com/questions/22834/how-to-uncompress-zlib-data-in-unix>`_.
	* External ref and link to section::
	
		:ref:`GHDL Roadmap <ghdl:CHANGE:Roadmap>`
		
	* External ref to option (no link)::
	
		:ghdl:option:`--ieee`
		:option:`ghdl:--ieee`

CSS
***

* The indentation of the elements in the side menu have been modified. They are fixed por levels 1, 2 and 3 (`#294 <https://github.com/tgingold/ghdl/pull/294#issuecomment-281555760>`_) and 4 (later).

* The RTD menu (bottom-left) has been modified (`#294 <https://github.com/tgingold/ghdl/pull/294#issuecomment-281513494>`_):

   * No headlines are shown. It is not possible to remove only one of them with CSS only (JS would be required). However, because the content in most of the lines is self-explained, it is preferred not to show any.
   * The Search box is removed.
	
Dist
****
		
* Ubuntu uses `dash` instead of `bash` when a shell script is run. As a result, some functionalities, such as arrays like ``array[1]``, are not supported. Therefore, build scripts in `dist/linux` should not use those functionalities unless they are sourced in a `bash` shell. That is, :file:`tavis-ci.sh` uses arrays, since it is sourced in the Travis CI machine. But :file:`docker-buildtest.sh` and :file:`buildtest.sh` do not use any. The same applies to the scripts in `testsuite`.