writing-documentation.txt 11 KB

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