1 | .. _documentation_development: |
---|
2 | |
---|
3 | Documentation Development Guide |
---|
4 | =============================== |
---|
5 | |
---|
6 | :Authors: Nicolas Bozon, Gérald Fenoy, Jeff McKenna |
---|
7 | :Last Updated: $Date: 2011-12-07 13:19:47 +0000 (Wed, 07 Dec 2011) $ |
---|
8 | |
---|
9 | .. contents:: Table of Contents |
---|
10 | :depth: 2 |
---|
11 | :backlinks: top |
---|
12 | |
---|
13 | Background |
---|
14 | ---------- |
---|
15 | |
---|
16 | The current structure of the ZOO Project documentation process is for |
---|
17 | developers with :ref:`SVN <svn>` commit access to maintain their documents |
---|
18 | in reStructuredText format, and therefore all documents live in the |
---|
19 | /docs directory in SVN. The `Sphinx <http://sphinx.pocoo.org/>`__ documentation generator is |
---|
20 | used to convert the reStructuredText files to html, and the live |
---|
21 | website is then updated on an hourly basis. |
---|
22 | |
---|
23 | reStructuredText Reference Guides |
---|
24 | --------------------------------- |
---|
25 | |
---|
26 | - Docutils `Quick reStructuredText <http://docutils.sourceforge.net/docs/user/rst/quickref.html>`__ |
---|
27 | - Docutils `reStructuredText Directives <http://docutils.sourceforge.net/docs/ref/rst/directives.html>`__ |
---|
28 | - Sphinx's `reStructuredText Primer <http://sphinx.pocoo.org/rest.html>`__ |
---|
29 | - search Sphinx's `mailing list <http://groups.google.com/group/sphinx-dev>`__ |
---|
30 | |
---|
31 | reStructuredText Formatting |
---|
32 | --------------------------- |
---|
33 | |
---|
34 | - All text should be hard breaks at or around the 80 column mark, just as |
---|
35 | the source code. |
---|
36 | |
---|
37 | Installing and Using Sphinx for rst-html Generation |
---|
38 | --------------------------------------------------- |
---|
39 | |
---|
40 | .. note:: |
---|
41 | |
---|
42 | You can browse the versions of the Sphinx packages `here <http://pypi.python.org/pypi?%3Aaction=index>`__, |
---|
43 | and then install the exact version such as: |
---|
44 | |
---|
45 | :: |
---|
46 | |
---|
47 | easy_install Sphinx==1.0.7 |
---|
48 | |
---|
49 | |
---|
50 | **On Windows:** |
---|
51 | |
---|
52 | #. install `Python 2.X <http://www.python.org/>`__ |
---|
53 | #. download `setuptools <http://pypi.python.org/pypi/setuptools#windows>`__ |
---|
54 | #. make sure that the ``C:/Python2X/Scripts`` directory is your path |
---|
55 | #. execute the following at commandline: |
---|
56 | |
---|
57 | :: |
---|
58 | |
---|
59 | easy_install Sphinx |
---|
60 | |
---|
61 | ...you should see message: "Finished processing dependencies for Sphinx" |
---|
62 | |
---|
63 | .. note:: |
---|
64 | |
---|
65 | Make sure you install Sphinx 1.0 or more recent. See note above. |
---|
66 | |
---|
67 | #. install `MiKTeX <http://miktex.org>`__ if you want to build pdfs |
---|
68 | |
---|
69 | #. checkout the /docs directory from SVN, such as: |
---|
70 | |
---|
71 | :: |
---|
72 | |
---|
73 | svn checkout http://svn.zoo-project.org/svn/trunk zoo-project |
---|
74 | |
---|
75 | #. inside the /docs directory, execute: |
---|
76 | |
---|
77 | :: |
---|
78 | |
---|
79 | make html |
---|
80 | |
---|
81 | or |
---|
82 | |
---|
83 | :: |
---|
84 | |
---|
85 | make latex |
---|
86 | |
---|
87 | the HTML output will be written to the _build/html sub-directory. |
---|
88 | |
---|
89 | **On Linux:** |
---|
90 | |
---|
91 | #. make sure you have the Python dev and setuptools packages installed. |
---|
92 | On Ubuntu: |
---|
93 | |
---|
94 | :: |
---|
95 | |
---|
96 | sudo apt-get install python-dev |
---|
97 | sudo apt-get install python-setuptools |
---|
98 | |
---|
99 | #. install sphinx using easy_install: |
---|
100 | |
---|
101 | :: |
---|
102 | |
---|
103 | sudo easy_install Sphinx |
---|
104 | |
---|
105 | .. note:: |
---|
106 | |
---|
107 | Make sure you install Sphinx 1.0 or more recent. See note above. |
---|
108 | |
---|
109 | #. checkout the /docs directory from SVN, such as: |
---|
110 | |
---|
111 | :: |
---|
112 | |
---|
113 | svn checkout http://svn.zoo-project.org/svn/trunk zoo-project |
---|
114 | |
---|
115 | #. to process the docs, from the ZOO /docs directory, run: |
---|
116 | |
---|
117 | :: |
---|
118 | |
---|
119 | make html |
---|
120 | |
---|
121 | or |
---|
122 | |
---|
123 | :: |
---|
124 | |
---|
125 | make latex |
---|
126 | |
---|
127 | the HTML output will be written to the build/html sub-directory. |
---|
128 | |
---|
129 | .. note:: |
---|
130 | |
---|
131 | If there are more than one translation, the above commands will automatically |
---|
132 | build all translations. |
---|
133 | |
---|
134 | |
---|
135 | **On Mac OS X:** |
---|
136 | |
---|
137 | #. install sphinx using easy_install: |
---|
138 | |
---|
139 | :: |
---|
140 | |
---|
141 | sudo easy_install Sphinx |
---|
142 | |
---|
143 | .. note:: |
---|
144 | |
---|
145 | Make sure you install Sphinx 1.0 or more recent. See note above. |
---|
146 | |
---|
147 | #. install `MacTex <http://www.tug.org/mactex/2009/>`__ if you want to build pdfs |
---|
148 | |
---|
149 | #. checkout the /docs directory from SVN, such as: |
---|
150 | |
---|
151 | :: |
---|
152 | |
---|
153 | svn checkout http://svn.zoo-project.org/svn/trunk zoo-project |
---|
154 | |
---|
155 | #. to process the docs, from the ZOO /docs directory, run: |
---|
156 | |
---|
157 | :: |
---|
158 | |
---|
159 | make html |
---|
160 | |
---|
161 | or |
---|
162 | |
---|
163 | :: |
---|
164 | |
---|
165 | make latex |
---|
166 | |
---|
167 | the HTML output will be written to the build/html sub-directory. |
---|