2
0

whatsnext.txt 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. =================
  2. What to read next
  3. =================
  4. So you've read all the :doc:`introductory material </intro/index>` and have
  5. decided you'd like to keep using Django. We've only just scratched the surface
  6. with this intro (in fact, if you've read every single word, you've read about
  7. 5% of the overall documentation).
  8. So what's next?
  9. Well, we've always been big fans of learning by doing. At this point you should
  10. know enough to start a project of your own and start fooling around. As you need
  11. to learn new tricks, come back to the documentation.
  12. We've put a lot of effort into making Django's documentation useful, clear and
  13. as complete as possible. The rest of this document explains more about how the
  14. documentation works so that you can get the most out of it.
  15. (Yes, this is documentation about documentation. Rest assured we have no plans
  16. to write a document about how to read the document about documentation.)
  17. Finding documentation
  18. =====================
  19. Django's got a *lot* of documentation -- almost 450,000 words and counting --
  20. so finding what you need can sometimes be tricky. A good place to start
  21. is the :ref:`genindex`. We also recommend using the builtin search feature.
  22. Or you can just browse around!
  23. How the documentation is organized
  24. ==================================
  25. Django's main documentation is broken up into "chunks" designed to fill
  26. different needs:
  27. * The :doc:`introductory material </intro/index>` is designed for people new
  28. to Django -- or to web development in general. It doesn't cover anything
  29. in depth, but instead gives a high-level overview of how developing in
  30. Django "feels".
  31. * The :doc:`topic guides </topics/index>`, on the other hand, dive deep into
  32. individual parts of Django. There are complete guides to Django's
  33. :doc:`model system </topics/db/index>`, :doc:`template engine
  34. </topics/templates>`, :doc:`forms framework </topics/forms/index>`, and much
  35. more.
  36. This is probably where you'll want to spend most of your time; if you work
  37. your way through these guides you should come out knowing pretty much
  38. everything there is to know about Django.
  39. * Web development is often broad, not deep -- problems span many domains.
  40. We've written a set of :doc:`how-to guides </howto/index>` that answer
  41. common "How do I ...?" questions. Here you'll find information about
  42. :doc:`generating PDFs with Django </howto/outputting-pdf>`, :doc:`writing
  43. custom template tags </howto/custom-template-tags>`, and more.
  44. Answers to really common questions can also be found in the :doc:`FAQ
  45. </faq/index>`.
  46. * The guides and how-to's don't cover every single class, function, and
  47. method available in Django -- that would be overwhelming when you're
  48. trying to learn. Instead, details about individual classes, functions,
  49. methods, and modules are kept in the :doc:`reference </ref/index>`. This is
  50. where you'll turn to find the details of a particular function or
  51. whatever you need.
  52. * If you are interested in deploying a project for public use, our docs have
  53. :doc:`several guides</howto/deployment/index>` for various deployment
  54. setups as well as a :doc:`deployment checklist</howto/deployment/checklist>`
  55. for some things you'll need to think about.
  56. * Finally, there's some "specialized" documentation not usually relevant to
  57. most developers. This includes the :doc:`release notes </releases/index>` and
  58. :doc:`internals documentation </internals/index>` for those who want to add
  59. code to Django itself, and a :doc:`few other things that don't fit elsewhere
  60. </misc/index>`.
  61. How documentation is updated
  62. ============================
  63. Just as the Django code base is developed and improved on a daily basis, our
  64. documentation is consistently improving. We improve documentation for several
  65. reasons:
  66. * To make content fixes, such as grammar/typo corrections.
  67. * To add information and/or examples to existing sections that need to be
  68. expanded.
  69. * To document Django features that aren't yet documented. (The list of
  70. such features is shrinking but exists nonetheless.)
  71. * To add documentation for new features as new features get added, or as
  72. Django APIs or behaviors change.
  73. Django's documentation is kept in the same source control system as its code. It
  74. lives in the :source:`docs` directory of our Git repository. Each document
  75. online is a separate text file in the repository.
  76. Where to get it
  77. ===============
  78. You can read Django documentation in several ways. They are, in order of
  79. preference:
  80. On the web
  81. ----------
  82. The most recent version of the Django documentation lives at
  83. https://docs.djangoproject.com/en/dev/. These HTML pages are generated
  84. automatically from the text files in source control. That means they reflect the
  85. "latest and greatest" in Django -- they include the very latest corrections and
  86. additions, and they discuss the latest Django features, which may only be
  87. available to users of the Django development version. (See
  88. :ref:`differences-between-doc-versions` below.)
  89. We encourage you to help improve the docs by submitting changes, corrections and
  90. suggestions in the `ticket system`_. The Django developers actively monitor the
  91. ticket system and use your feedback to improve the documentation for everybody.
  92. Note, however, that tickets should explicitly relate to the documentation,
  93. rather than asking broad tech-support questions. If you need help with your
  94. particular Django setup, try the |django-users| mailing list or the `#django
  95. IRC channel`_ instead.
  96. .. _ticket system: https://code.djangoproject.com/
  97. .. _#django IRC channel: https://web.libera.chat/#django
  98. In plain text
  99. -------------
  100. For offline reading, or just for convenience, you can read the Django
  101. documentation in plain text.
  102. If you're using an official release of Django, the zipped package (tarball) of
  103. the code includes a ``docs/`` directory, which contains all the documentation
  104. for that release.
  105. If you're using the development version of Django (aka the main branch), the
  106. ``docs/`` directory contains all of the documentation. You can update your
  107. Git checkout to get the latest changes.
  108. One low-tech way of taking advantage of the text documentation is by using the
  109. Unix ``grep`` utility to search for a phrase in all of the documentation. For
  110. example, this will show you each mention of the phrase "max_length" in any
  111. Django document:
  112. .. console::
  113. $ grep -r max_length /path/to/django/docs/
  114. As HTML, locally
  115. ----------------
  116. You can get a local copy of the HTML documentation following a few steps:
  117. * Django's documentation uses a system called Sphinx__ to convert from
  118. plain text to HTML. You'll need to install Sphinx by either downloading
  119. and installing the package from the Sphinx website, or with ``pip``:
  120. .. console::
  121. $ python -m pip install Sphinx
  122. * Then, use the included ``Makefile`` to turn the documentation into HTML:
  123. .. code-block:: console
  124. $ cd path/to/django/docs
  125. $ make html
  126. You'll need `GNU Make`__ installed for this.
  127. If you're on Windows you can alternatively use the included batch file:
  128. .. code-block:: bat
  129. cd path\to\django\docs
  130. make.bat html
  131. * The HTML documentation will be placed in ``docs/_build/html``.
  132. __ https://www.sphinx-doc.org/
  133. __ https://www.gnu.org/software/make/
  134. .. _differences-between-doc-versions:
  135. Differences between versions
  136. ============================
  137. The text documentation in the main branch of the Git repository contains the
  138. "latest and greatest" changes and additions. These changes include
  139. documentation of new features targeted for Django's next :term:`feature
  140. release <Feature release>`. For that reason, it's worth pointing out our policy
  141. to highlight recent changes and additions to Django.
  142. We follow this policy:
  143. * The development documentation at https://docs.djangoproject.com/en/dev/ is
  144. from the main branch. These docs correspond to the latest feature release,
  145. plus whatever features have been added/changed in the framework since then.
  146. * As we add features to Django's development version, we update the
  147. documentation in the same Git commit transaction.
  148. * To distinguish feature changes/additions in the docs, we use the phrase:
  149. "New in Django Development version" for the version of Django that hasn't
  150. been released yet, or "New in version X.Y" for released versions.
  151. * Documentation fixes and improvements may be backported to the last release
  152. branch, at the discretion of the merger, however, once a version of Django is
  153. :ref:`no longer supported<supported-versions-policy>`, that version of the
  154. docs won't get any further updates.
  155. * The `main documentation web page`_ includes links to documentation for
  156. previous versions. Be sure you are using the version of the docs
  157. corresponding to the version of Django you are using!
  158. .. _main documentation web page: https://docs.djangoproject.com/en/dev/