Ticket #14727: documentation_corrections.diff

File documentation_corrections.diff, 1.9 KB (added by OldTroll, 13 years ago)

Diff of Corrections

  • docs/topics/db/optimization.txt

     
    44
    55Django's database layer provides various ways to help developers get the most
    66out of their databases. This document gathers together links to the relevant
    7 documentation, and adds various tips, organized under an number of headings that
     7documentation, and adds various tips, organized under a number of headings that
    88outline the steps to take when attempting to optimize your database usage.
    99
    1010Profile first
  • docs/topics/http/file-uploads.txt

     
    363363        ``'image/jpeg'``.
    364364
    365365        ``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``.
    368367
    369368        ``charset`` is the character set (i.e. ``utf8``) given by the browser.
    370369        Like ``content_length``, this sometimes won't be provided.
  • docs/topics/http/urls.txt

     
    809809namespaces into URLs on specific application instances, according to the
    810810:ref:`namespaced URL resolution strategy <topics-http-reversing-url-namespaces>`.
    811811
    812 .. admonition:: Make sure your views are all correct
     812.. admonition:: Make sure your views are all correct.
    813813
    814814    As part of working out which URL names map to which patterns, the
    815815    ``reverse()`` function has to import all of your URLconf files and examine
Back to Top