Changeset 5064
- Timestamp:
- 04/24/07 00:58:03 (1 year ago)
- Files:
-
- django/trunk/docs/api_stability.txt (modified) (2 diffs)
- django/trunk/docs/authentication.txt (modified) (2 diffs)
- django/trunk/docs/db-api.txt (modified) (3 diffs)
- django/trunk/docs/faq.txt (modified) (1 diff)
- django/trunk/docs/flatpages.txt (modified) (1 diff)
- django/trunk/docs/forms.txt (modified) (1 diff)
- django/trunk/docs/generic_views.txt (modified) (1 diff)
- django/trunk/docs/i18n.txt (modified) (1 diff)
- django/trunk/docs/redirects.txt (modified) (1 diff)
- django/trunk/docs/serialization.txt (modified) (1 diff)
- django/trunk/docs/settings.txt (modified) (1 diff)
- django/trunk/docs/sites.txt (modified) (1 diff)
- django/trunk/docs/syndication_feeds.txt (modified) (1 diff)
- django/trunk/docs/tutorial01.txt (modified) (1 diff)
- django/trunk/docs/tutorial04.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/api_stability.txt
r5040 r5064 101 101 .. _caching: ../cache/ 102 102 .. _custom template tags and libraries: ../templates_python/ 103 .. _database lookup: ../db _api/103 .. _database lookup: ../db-api/ 104 104 .. _django-admin utility: ../django-admin/ 105 105 .. _fastcgi integration: ../fastcgi/ … … 108 108 .. _internationalization: ../i18n/ 109 109 .. _legacy database integration: ../legacy_databases/ 110 .. _model definition: ../model _api/110 .. _model definition: ../model-api/ 111 111 .. _mod_python integration: ../modpython/ 112 112 .. _redirects: ../redirects/ django/trunk/docs/authentication.txt
r4650 r5064 145 145 doesn't allow profiles. 146 146 147 .. _Django model: ../model _api/147 .. _Django model: ../model-api/ 148 148 .. _DEFAULT_FROM_EMAIL: ../settings/#default-from-email 149 149 … … 758 758 ``syncdb``. 759 759 760 .. _model Meta attribute: ../model _api/#meta-options760 .. _model Meta attribute: ../model-api/#meta-options 761 761 762 762 API reference django/trunk/docs/db-api.txt
r4681 r5064 7 7 objects. This document explains that API. 8 8 9 .. _`data models`: ../model _api/9 .. _`data models`: ../model-api/ 10 10 11 11 Throughout this reference, we'll refer to the following models, which comprise … … 86 86 `AutoField documentation`_.) 87 87 88 .. _AutoField documentation: ../model _api/#autofield88 .. _AutoField documentation: ../model-api/#autofield 89 89 90 90 Explicitly specifying auto-primary-key values … … 1802 1802 about your database. 1803 1803 1804 .. _Executing custom SQL: ../model _api/#executing-custom-sql1804 .. _Executing custom SQL: ../model-api/#executing-custom-sql django/trunk/docs/faq.txt
r5039 r5064 513 513 contain arbitrary SQL, so you can make any sorts of changes you need to make. 514 514 515 .. _SQL initial data file: ../model _api/#providing-initial-sql-data515 .. _SQL initial data file: ../model-api/#providing-initial-sql-data 516 516 517 517 Why is Django leaking memory? django/trunk/docs/flatpages.txt
r4420 r5064 85 85 `Django database API`_. 86 86 87 .. _Django model: ../model _api/87 .. _Django model: ../model-api/ 88 88 .. _django/contrib/flatpages/models.py: http://code.djangoproject.com/browser/django/trunk/django/contrib/flatpages/models.py 89 .. _Django database API: ../db _api/89 .. _Django database API: ../db-api/ 90 90 91 91 Flatpage templates django/trunk/docs/forms.txt
r4886 r5064 692 692 693 693 .. _`generic views`: ../generic_views/ 694 .. _`models API`: ../model _api/694 .. _`models API`: ../model-api/ 695 695 .. _settings: ../settings/ django/trunk/docs/generic_views.txt
r5050 r5064 72 72 lambda that returns the QuerySet. 73 73 74 .. _database API docs: ../db _api/74 .. _database API docs: ../db-api/ 75 75 76 76 "Simple" generic views django/trunk/docs/i18n.txt
r4748 r5064 176 176 verbose_name_plural = _('mythings') 177 177 178 .. _Django models: ../model _api/178 .. _Django models: ../model-api/ 179 179 180 180 Pluralization django/trunk/docs/redirects.txt
r4420 r5064 67 67 objects via the `Django database API`_. 68 68 69 .. _Django model: ../model _api/69 .. _Django model: ../model-api/ 70 70 .. _django/contrib/redirects/models.py: http://code.djangoproject.com/browser/django/trunk/django/contrib/redirects/models.py 71 .. _Django database API: ../db _api/71 .. _Django database API: ../db-api/ django/trunk/docs/serialization.txt
r4775 r5064 28 28 but it'll almost always be a QuerySet). 29 29 30 .. _QuerySet: ../db _api/#retrieving-objects30 .. _QuerySet: ../db-api/#retrieving-objects 31 31 32 32 You can also use a serializer object directly:: django/trunk/docs/settings.txt
r5040 r5064 875 875 exist (see the ``verify_exists`` option on URLField_). 876 876 877 .. _URLField: ../model _api/#urlfield877 .. _URLField: ../model-api/#urlfield 878 878 879 879 USE_ETAGS django/trunk/docs/sites.txt
r4420 r5064 277 277 ``CurrentSiteManager``. 278 278 279 .. _manager: ../model _api/#managers280 .. _manager documentation: ../model _api/#managers279 .. _manager: ../model-api/#managers 280 .. _manager documentation: ../model-api/#managers 281 281 282 282 How Django uses the sites framework django/trunk/docs/syndication_feeds.txt
r4988 r5064 160 160 161 161 .. _chicagocrime.org: http://www.chicagocrime.org/ 162 .. _object-relational mapper: ../db _api/162 .. _object-relational mapper: ../db-api/ 163 163 .. _Django templates: ../templates/ 164 164 django/trunk/docs/tutorial01.txt
r5040 r5064 578 578 Django's automatic admin working. 579 579 580 .. _Database API reference: ../db _api/580 .. _Database API reference: ../db-api/ 581 581 .. _part 2 of this tutorial: ../tutorial02/ django/trunk/docs/tutorial04.txt
r5039 r5064 220 220 documentation `explains the lazy nature of QuerySet objects`_. 221 221 222 .. _explains the lazy nature of QuerySet objects: ../db _api/#querysets-are-lazy222 .. _explains the lazy nature of QuerySet objects: ../db-api/#querysets-are-lazy 223 223 224 224 In previous parts of the tutorial, the templates have been provided with a context
