writing-documentation.txt 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. =====================
  2. Writing documentation
  3. =====================
  4. We place a high importance on consistency and readability of documentation.
  5. After all, Django was created in a journalism environment! So we treat our
  6. documentation like we treat our code: we aim to improve it as often as
  7. possible.
  8. Documentation changes generally come in two forms:
  9. * General improvements -- Typo corrections, error fixes and better
  10. explanations through clearer writing and more examples.
  11. * New features -- Documentation of features that have been added to the
  12. framework since the last release.
  13. This section explains how writers can craft their documentation changes
  14. in the most useful and least error-prone ways.
  15. Getting started with Sphinx
  16. ---------------------------
  17. Django's documentation uses the Sphinx__ documentation system, which in turn
  18. is based on docutils__. The basic idea is that lightly-formatted plain-text
  19. documentation is transformed into HTML, PDF, and any other output format.
  20. __ http://sphinx.pocoo.org/
  21. __ http://docutils.sourceforge.net/
  22. To actually build the documentation locally, you'll currently need to install
  23. Sphinx -- ``easy_install Sphinx`` should do the trick.
  24. .. note::
  25. Building the Django documentation requires Sphinx 1.0.2 or newer. Sphinx
  26. also requires the Pygments__ library for syntax highlighting; building the
  27. Django documentation requires Pygments 1.1 or newer (a new-enough version
  28. should automatically be installed along with Sphinx).
  29. __ http://pygments.org
  30. Then, building the HTML is easy; just ``make html`` from the ``docs``
  31. directory.
  32. To get started contributing, you'll want to read the `reStructuredText
  33. Primer`__. After that, you'll want to read about the `Sphinx-specific markup`__
  34. that's used to manage metadata, indexing, and cross-references.
  35. __ http://sphinx.pocoo.org/rest.html
  36. __ http://sphinx.pocoo.org/markup/
  37. Commonly used terms
  38. -------------------
  39. Here are some style guidelines on commonly used terms throughout the
  40. documentation:
  41. * **Django** -- when referring to the framework, capitalize Django. It is
  42. lowercase only in Python code and in the djangoproject.com logo.
  43. * **email** -- no hyphen.
  44. * **MySQL**
  45. * **PostgreSQL**
  46. * **Python** -- when referring to the language, capitalize Python.
  47. * **realize**, **customize**, **initialize**, etc. -- use the American
  48. "ize" suffix, not "ise."
  49. * **SQLite**
  50. * **subclass** -- it's a single word without a hyphen, both as a verb
  51. ("subclass that model") and as a noun ("create a subclass").
  52. * **Web**, **World Wide Web**, **the Web** -- note Web is always
  53. capitalized when referring to the World Wide Web.
  54. * **Web site** -- use two words, with Web capitalized.
  55. Django-specific terminology
  56. ---------------------------
  57. * **model** -- it's not capitalized.
  58. * **template** -- it's not capitalized.
  59. * **URLconf** -- use three capitalized letters, with no space before
  60. "conf."
  61. * **view** -- it's not capitalized.
  62. Guidelines for reStructuredText files
  63. -------------------------------------
  64. These guidelines regulate the format of our reST (reStructuredText)
  65. documentation:
  66. * In section titles, capitalize only initial words and proper nouns.
  67. * Wrap the documentation at 80 characters wide, unless a code example
  68. is significantly less readable when split over two lines, or for another
  69. good reason.
  70. * The main thing to keep in mind as you write and edit docs is that the
  71. more semantic markup you can add the better. So::
  72. Add ``django.contrib.auth`` to your ``INSTALLED_APPS``...
  73. Isn't nearly as helpful as::
  74. Add :mod:`django.contrib.auth` to your :setting:`INSTALLED_APPS`...
  75. This is because Sphinx will generate proper links for the latter, which
  76. greatly helps readers. There's basically no limit to the amount of
  77. useful markup you can add.
  78. Django-specific markup
  79. ----------------------
  80. Besides the `Sphinx built-in markup`__, Django's docs defines some extra
  81. description units:
  82. __ http://sphinx.pocoo.org/markup/desc.html
  83. * Settings::
  84. .. setting:: INSTALLED_APPS
  85. To link to a setting, use ``:setting:`INSTALLED_APPS```.
  86. * Template tags::
  87. .. templatetag:: regroup
  88. To link, use ``:ttag:`regroup```.
  89. * Template filters::
  90. .. templatefilter:: linebreaksbr
  91. To link, use ``:tfilter:`linebreaksbr```.
  92. * Field lookups (i.e. ``Foo.objects.filter(bar__exact=whatever)``)::
  93. .. fieldlookup:: exact
  94. To link, use ``:lookup:`exact```.
  95. * ``django-admin`` commands::
  96. .. django-admin:: syncdb
  97. To link, use ``:djadmin:`syncdb```.
  98. * ``django-admin`` command-line options::
  99. .. django-admin-option:: --traceback
  100. To link, use ``:djadminopt:`--traceback```.
  101. .. _documenting-new-features:
  102. Documenting new features
  103. ------------------------
  104. Our policy for new features is:
  105. **All documentation of new features should be written in a way that
  106. clearly designates the features are only available in the Django
  107. development version. Assume documentation readers are using the latest
  108. release, not the development version.**
  109. Our preferred way for marking new features is by prefacing the features'
  110. documentation with: "``.. versionadded:: X.Y``", followed by an optional one
  111. line comment and a mandatory blank line.
  112. General improvements, or other changes to the APIs that should be emphasized
  113. should use the "``.. versionchanged:: X.Y``" directive (with the same format
  114. as the ``versionadded`` mentioned above.
  115. An example
  116. ----------
  117. For a quick example of how it all fits together, consider this hypothetical
  118. example:
  119. * First, the ``ref/settings.txt`` document could have an overall layout
  120. like this:
  121. .. code-block:: rst
  122. ========
  123. Settings
  124. ========
  125. ...
  126. .. _available-settings:
  127. Available settings
  128. ==================
  129. ...
  130. .. _deprecated-settings:
  131. Deprecated settings
  132. ===================
  133. ...
  134. * Next, the ``topics/settings.txt`` document could contain something like
  135. this:
  136. .. code-block:: rst
  137. You can access a :ref:`listing of all available settings
  138. <available-settings>`. For a list of deprecated settings see
  139. :ref:`deprecated-settings`.
  140. You can find both in the :doc:`settings reference document
  141. </ref/settings>`.
  142. We use the Sphinx doc_ cross reference element when we want to link to
  143. another document as a whole and the ref_ element when we want to link to
  144. an arbitrary location in a document.
  145. .. _doc: http://sphinx.pocoo.org/markup/inline.html#role-doc
  146. .. _ref: http://sphinx.pocoo.org/markup/inline.html#role-ref
  147. * Next, notice how the settings are annotated:
  148. .. code-block:: rst
  149. .. setting:: ADMIN_FOR
  150. ADMIN_FOR
  151. ---------
  152. Default: ``()`` (Empty tuple)
  153. Used for admin-site settings modules, this should be a tuple of
  154. settings modules (in the format ``'foo.bar.baz'``) for which this site
  155. is an admin.
  156. The admin site uses this in its automatically-introspected
  157. documentation of models, views and template tags.
  158. This marks up the following header as the "canonical" target for the
  159. setting ``ADMIN_FOR`` This means any time I talk about ``ADMIN_FOR``,
  160. I can reference it using ``:setting:`ADMIN_FOR```.
  161. That's basically how everything fits together.
  162. .. _improving-the-documentation:
  163. Improving the documentation
  164. ---------------------------
  165. A few small improvements can be made to make the documentation read and
  166. look better:
  167. * Most of the various ``index.txt`` documents have *very* short or even
  168. non-existent intro text. Each of those documents needs a good short
  169. intro the content below that point.
  170. * The glossary is very perfunctory. It needs to be filled out.
  171. * Add more metadata targets. Lots of places look like::
  172. ``File.close()``
  173. ~~~~~~~~~~~~~~~~
  174. \... these should be::
  175. .. method:: File.close()
  176. That is, use metadata instead of titles.
  177. * Add more links -- nearly everything that's an inline code literal
  178. right now can probably be turned into a xref.
  179. See the ``literals_to_xrefs.py`` file in ``_ext`` -- it's a shell script
  180. to help do this work.
  181. This will probably be a continuing, never-ending project.
  182. * Add `info field lists`__ where appropriate.
  183. __ http://sphinx.pocoo.org/markup/desc.html#info-field-lists
  184. * Whenever possible, use links. So, use ``:setting:`ADMIN_FOR``` instead
  185. of ````ADMIN_FOR````.
  186. * Use directives where appropriate. Some directives
  187. (e.g. ``.. setting::``) are prefix-style directives; they go *before*
  188. the unit they're describing. These are known as "crossref" directives.
  189. Others (e.g. ``.. class::``) generate their own markup; these should go
  190. inside the section they're describing. These are called
  191. "description units".
  192. You can tell which are which by looking at in
  193. :file:`_ext/djangodocs.py`; it registers roles as one of the other.
  194. * Add ``.. code-block:: <lang>`` to literal blocks so that they get
  195. highlighted.
  196. * When referring to classes/functions/modules, etc., you'll want to use
  197. the fully-qualified name of the target
  198. (``:class:`django.contrib.contenttypes.models.ContentType```).
  199. Since this doesn't look all that awesome in the output -- it shows the
  200. entire path to the object -- you can prefix the target with a ``~``
  201. (that's a tilde) to get just the "last bit" of that path. So
  202. ``:class:`~django.contrib.contenttypes.models.ContentType``` will just
  203. display a link with the title "ContentType".