Django

Code

Changeset 2812

Show
Ignore:
Timestamp:
05/01/06 20:59:39 (3 years ago)
Author:
adrian
Message:

Fixed more ReST errors in docs

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/cache.txt

    r2809 r2812  
    1919To cache something is to save the result of an expensive calculation so that 
    2020you don't have to perform the calculation next time. Here's some pseudocode 
    21 explaining how this would work for a dynamically generated Web page: 
     21explaining how this would work for a dynamically generated Web page:: 
    2222 
    2323    given a URL, try finding that page in the cache 
  • django/trunk/docs/model-api.txt

    r2809 r2812  
    9898necessarily have to match your database column name. See `db_column`_ below. 
    9999 
    100 SQL reserved words, such as ``join``, ``where`` or ``select`, *are* allowed as 
     100SQL reserved words, such as ``join``, ``where`` or ``select``, *are* allowed as 
    101101model field names, because Django escapes all database table names and column 
    102102names in every underlying SQL query. It uses the quoting syntax of your 
  • django/trunk/docs/templates.txt

    r2809 r2812  
    895895~~~~~~~~~~ 
    896896 
    897 Converts newlines into ``<p>`` and ``<br />``s. 
     897Converts newlines into ``<p>`` and ``<br />`` tags. 
    898898 
    899899linebreaksbr 
    900900~~~~~~~~~~~~ 
    901901 
    902 Converts newlines into ``<br />``s. 
     902Converts newlines into ``<br />`` tags. 
    903903 
    904904linenumbers