Ticket #14727: documentation_corrections.diff
File documentation_corrections.diff, 1.9 KB (added by , 14 years ago) |
---|
-
docs/topics/db/optimization.txt
4 4 5 5 Django's database layer provides various ways to help developers get the most 6 6 out of their databases. This document gathers together links to the relevant 7 documentation, and adds various tips, organized under a nnumber of headings that7 documentation, and adds various tips, organized under a number of headings that 8 8 outline the steps to take when attempting to optimize your database usage. 9 9 10 10 Profile first -
docs/topics/http/file-uploads.txt
363 363 ``'image/jpeg'``. 364 364 365 365 ``content_length`` is the length of the image given by the browser. 366 Sometimes this won't be provided and will be ``None``., ``None`` 367 otherwise. 366 Sometimes this won't be provided and will be ``None``. 368 367 369 368 ``charset`` is the character set (i.e. ``utf8``) given by the browser. 370 369 Like ``content_length``, this sometimes won't be provided. -
docs/topics/http/urls.txt
809 809 namespaces into URLs on specific application instances, according to the 810 810 :ref:`namespaced URL resolution strategy <topics-http-reversing-url-namespaces>`. 811 811 812 .. admonition:: Make sure your views are all correct 812 .. admonition:: Make sure your views are all correct. 813 813 814 814 As part of working out which URL names map to which patterns, the 815 815 ``reverse()`` function has to import all of your URLconf files and examine