PageRenderTime 129ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/docs/index.txt

https://code.google.com/p/mango-py/
Plain Text | 219 lines | 171 code | 48 blank | 0 comment | 0 complexity | df87439e2fc230fbead540b1ebd794ec MD5 | raw file
Possible License(s): BSD-3-Clause
  1. .. _index:
  2. ====================
  3. Django documentation
  4. ====================
  5. .. rubric:: Everything you need to know about Django (and then some).
  6. Getting help
  7. ============
  8. Having trouble? We'd like to help!
  9. * Try the :doc:`FAQ <faq/index>` -- it's got answers to many common questions.
  10. * Looking for specific information? Try the :ref:`genindex`, :ref:`modindex` or
  11. the :doc:`detailed table of contents <contents>`.
  12. * Search for information in the `archives of the django-users mailing list`_, or
  13. `post a question`_.
  14. * Ask a question in the `#django IRC channel`_, or search the `IRC logs`_ to see
  15. if it's been asked before.
  16. * Report bugs with Django in our `ticket tracker`_.
  17. .. _archives of the django-users mailing list: http://groups.google.com/group/django-users/
  18. .. _post a question: http://groups.google.com/group/django-users/
  19. .. _#django IRC channel: irc://irc.freenode.net/django
  20. .. _IRC logs: http://botland.oebfare.com/logger/django/
  21. .. _ticket tracker: http://code.djangoproject.com/
  22. First steps
  23. ===========
  24. * **From scratch:**
  25. :doc:`Overview <intro/overview>` |
  26. :doc:`Installation <intro/install>`
  27. * **Tutorial:**
  28. :doc:`Part 1 <intro/tutorial01>` |
  29. :doc:`Part 2 <intro/tutorial02>` |
  30. :doc:`Part 3 <intro/tutorial03>` |
  31. :doc:`Part 4 <intro/tutorial04>`
  32. The model layer
  33. ===============
  34. * **Models:**
  35. :doc:`Model syntax <topics/db/models>` |
  36. :doc:`Field types <ref/models/fields>` |
  37. :doc:`Meta options <ref/models/options>`
  38. * **QuerySets:**
  39. :doc:`Executing queries <topics/db/queries>` |
  40. :doc:`QuerySet method reference <ref/models/querysets>`
  41. * **Model instances:**
  42. :doc:`Instance methods <ref/models/instances>` |
  43. :doc:`Accessing related objects <ref/models/relations>`
  44. * **Advanced:**
  45. :doc:`Managers <topics/db/managers>` |
  46. :doc:`Raw SQL <topics/db/sql>` |
  47. :doc:`Transactions <topics/db/transactions>` |
  48. :doc:`Aggregation <topics/db/aggregation>` |
  49. :doc:`Custom fields <howto/custom-model-fields>` |
  50. :doc:`Multiple databases <topics/db/multi-db>`
  51. * **Other:**
  52. :doc:`Supported databases <ref/databases>` |
  53. :doc:`Legacy databases <howto/legacy-databases>` |
  54. :doc:`Providing initial data <howto/initial-data>` |
  55. :doc:`Optimize database access <topics/db/optimization>`
  56. The template layer
  57. ==================
  58. * **For designers:**
  59. :doc:`Syntax overview <topics/templates>` |
  60. :doc:`Built-in tags and filters <ref/templates/builtins>`
  61. * **For programmers:**
  62. :doc:`Template API <ref/templates/api>` |
  63. :doc:`Custom tags and filters <howto/custom-template-tags>`
  64. The view layer
  65. ==============
  66. * **The basics:**
  67. :doc:`URLconfs <topics/http/urls>` |
  68. :doc:`View functions <topics/http/views>` |
  69. :doc:`Shortcuts <topics/http/shortcuts>` |
  70. :doc:`Decorators <topics/http/decorators>`
  71. * **Reference:**
  72. :doc:`Request/response objects <ref/request-response>` |
  73. :doc:`TemplateResponse objects <ref/template-response>`
  74. * **File uploads:**
  75. :doc:`Overview <topics/http/file-uploads>` |
  76. :doc:`File objects <ref/files/file>` |
  77. :doc:`Storage API <ref/files/storage>` |
  78. :doc:`Managing files <topics/files>` |
  79. :doc:`Custom storage <howto/custom-file-storage>`
  80. * **Generic views:**
  81. :doc:`Overview<topics/class-based-views>` |
  82. :doc:`Built-in generic views<ref/class-based-views>`
  83. * **Advanced:**
  84. :doc:`Generating CSV <howto/outputting-csv>` |
  85. :doc:`Generating PDF <howto/outputting-pdf>`
  86. * **Middleware:**
  87. :doc:`Overview <topics/http/middleware>` |
  88. :doc:`Built-in middleware classes <ref/middleware>`
  89. Forms
  90. =====
  91. * **The basics:**
  92. :doc:`Overview <topics/forms/index>` |
  93. :doc:`Form API <ref/forms/api>` |
  94. :doc:`Built-in fields <ref/forms/fields>` |
  95. :doc:`Built-in widgets <ref/forms/widgets>`
  96. * **Advanced:**
  97. :doc:`Forms for models <topics/forms/modelforms>` |
  98. :doc:`Integrating media <topics/forms/media>` |
  99. :doc:`Formsets <topics/forms/formsets>` |
  100. :doc:`Customizing validation <ref/forms/validation>`
  101. * **Extras:**
  102. :doc:`Form preview <ref/contrib/formtools/form-preview>` |
  103. :doc:`Form wizard <ref/contrib/formtools/form-wizard>`
  104. The development process
  105. =======================
  106. * **Settings:**
  107. :doc:`Overview <topics/settings>` |
  108. :doc:`Full list of settings <ref/settings>`
  109. * **Exceptions:**
  110. :doc:`Overview <ref/exceptions>`
  111. * **django-admin.py and manage.py:**
  112. :doc:`Overview <ref/django-admin>` |
  113. :doc:`Adding custom commands <howto/custom-management-commands>`
  114. * **Testing:** :doc:`Overview <topics/testing>`
  115. * **Deployment:**
  116. :doc:`Overview <howto/deployment/index>` |
  117. :doc:`Apache/mod_wsgi <howto/deployment/modwsgi>` |
  118. :doc:`Apache/mod_python <howto/deployment/modpython>` |
  119. :doc:`FastCGI/SCGI/AJP <howto/deployment/fastcgi>` |
  120. :doc:`Apache authentication <howto/apache-auth>` |
  121. :doc:`Handling static files <howto/static-files>` |
  122. :doc:`Tracking code errors by e-mail <howto/error-reporting>`
  123. Other batteries included
  124. ========================
  125. * :doc:`Admin site <ref/contrib/admin/index>` | :doc:`Admin actions <ref/contrib/admin/actions>` | :doc:`Admin documentation generator<ref/contrib/admin/admindocs>`
  126. * :doc:`Authentication <topics/auth>`
  127. * :doc:`Cache system <topics/cache>`
  128. * :doc:`Conditional content processing <topics/conditional-view-processing>`
  129. * :doc:`Comments <ref/contrib/comments/index>` | :doc:`Moderation <ref/contrib/comments/moderation>` | :doc:`Custom comments <ref/contrib/comments/custom>`
  130. * :doc:`Content types <ref/contrib/contenttypes>`
  131. * :doc:`Cross Site Request Forgery protection <ref/contrib/csrf>`
  132. * :doc:`Databrowse <ref/contrib/databrowse>`
  133. * :doc:`E-mail (sending) <topics/email>`
  134. * :doc:`Flatpages <ref/contrib/flatpages>`
  135. * :doc:`GeoDjango <ref/contrib/gis/index>`
  136. * :doc:`Humanize <ref/contrib/humanize>`
  137. * :doc:`Internationalization <topics/i18n/index>`
  138. * :doc:`Jython support <howto/jython>`
  139. * :doc:`"Local flavor" <ref/contrib/localflavor>`
  140. * :doc:`Logging <topics/logging>`
  141. * :doc:`Messages <ref/contrib/messages>`
  142. * :doc:`Pagination <topics/pagination>`
  143. * :doc:`Redirects <ref/contrib/redirects>`
  144. * :doc:`Serialization <topics/serialization>`
  145. * :doc:`Sessions <topics/http/sessions>`
  146. * :doc:`Signals <topics/signals>`
  147. * :doc:`Sitemaps <ref/contrib/sitemaps>`
  148. * :doc:`Sites <ref/contrib/sites>`
  149. * :doc:`Static Files <ref/contrib/staticfiles>`
  150. * :doc:`Syndication feeds (RSS/Atom) <ref/contrib/syndication>`
  151. * :doc:`Unicode in Django <ref/unicode>`
  152. * :doc:`Web design helpers <ref/contrib/webdesign>`
  153. * :doc:`Validators <ref/validators>`
  154. * Function-based generic views (Deprecated) :doc:`Overview<topics/generic-views>` | :doc:`Built-in generic views<ref/generic-views>` | :doc:`Migration guide<topics/generic-views-migration>`
  155. The Django open-source project
  156. ==============================
  157. * **Community:**
  158. :doc:`How to get involved <internals/contributing>` |
  159. :doc:`The release process <internals/release-process>` |
  160. :doc:`Team of committers <internals/committers>` |
  161. :doc:`The Django source code repository <internals/svn>`
  162. * **Design philosophies:**
  163. :doc:`Overview <misc/design-philosophies>`
  164. * **Documentation:**
  165. :doc:`About this documentation <internals/documentation>`
  166. * **Third-party distributions:**
  167. :doc:`Overview <misc/distributions>`
  168. * **Django over time:**
  169. :doc:`API stability <misc/api-stability>` |
  170. :doc:`Release notes and upgrading instructions <releases/index>` |
  171. :doc:`Deprecation Timeline <internals/deprecation>`