Changeset 2812
- Timestamp:
- 05/01/06 20:59:39 (3 years ago)
- Files:
-
- django/trunk/docs/cache.txt (modified) (1 diff)
- django/trunk/docs/model-api.txt (modified) (1 diff)
- django/trunk/docs/templates.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/cache.txt
r2809 r2812 19 19 To cache something is to save the result of an expensive calculation so that 20 20 you 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: 21 explaining how this would work for a dynamically generated Web page:: 22 22 23 23 given a URL, try finding that page in the cache django/trunk/docs/model-api.txt
r2809 r2812 98 98 necessarily have to match your database column name. See `db_column`_ below. 99 99 100 SQL reserved words, such as ``join``, ``where`` or ``select` , *are* allowed as100 SQL reserved words, such as ``join``, ``where`` or ``select``, *are* allowed as 101 101 model field names, because Django escapes all database table names and column 102 102 names in every underlying SQL query. It uses the quoting syntax of your django/trunk/docs/templates.txt
r2809 r2812 895 895 ~~~~~~~~~~ 896 896 897 Converts newlines into ``<p>`` and ``<br />`` s.897 Converts newlines into ``<p>`` and ``<br />`` tags. 898 898 899 899 linebreaksbr 900 900 ~~~~~~~~~~~~ 901 901 902 Converts newlines into ``<br />`` s.902 Converts newlines into ``<br />`` tags. 903 903 904 904 linenumbers
