Changeset 6743
- Timestamp:
- 11/29/07 12:15:38 (9 months ago)
- Files:
-
- django/trunk/docs/authentication.txt (modified) (1 diff)
- django/trunk/docs/django-admin.txt (modified) (1 diff)
- django/trunk/docs/model-api.txt (modified) (2 diffs)
- django/trunk/docs/release_notes_0.96.txt (modified) (1 diff)
- django/trunk/docs/templates_python.txt (modified) (1 diff)
- django/trunk/docs/tutorial01.txt (modified) (1 diff)
- django/trunk/docs/url_dispatch.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/authentication.txt
r6376 r6743 171 171 If no password is provided, ``set_unusable_password()`` will be called. 172 172 173 See _`Creating users`for example usage.173 See `Creating users`_ for example usage. 174 174 175 175 * ``make_random_password(length=10, allowed_chars='abcdefghjkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ23456789')`` django/trunk/docs/django-admin.txt
r6602 r6743 652 652 arguments.) 653 653 654 To run on 1.2.3.4:7000 with a ` test` fixture::654 To run on 1.2.3.4:7000 with a ``test`` fixture:: 655 655 656 656 django-admin.py testserver --addrport 1.2.3.4:7000 test django/trunk/docs/model-api.txt
r6652 r6743 51 51 52 52 * The name of the table, ``myapp_person``, is automatically derived from 53 some model metadata but can be overridden. See _`Table names`below.53 some model metadata but can be overridden. See `Table names`_ below. 54 54 * An ``id`` field is added automatically, but this behavior can be 55 55 overriden. See `Automatic primary key fields`_ below. … … 1665 1665 Adding extra ``Manager`` methods is the preferred way to add "table-level" 1666 1666 functionality to your models. (For "row-level" functionality -- i.e., functions 1667 that act on a single instance of a model object -- use _`Model methods`, not1667 that act on a single instance of a model object -- use `Model methods`_, not 1668 1668 custom ``Manager`` methods.) 1669 1669 django/trunk/docs/release_notes_0.96.txt
r5571 r6743 45 45 46 46 However, we strongly encourage MySQL users to upgrade to a more recent 47 version of ` MySQLdb` as soon as possible, The "mysql_old" backend is47 version of ``MySQLdb`` as soon as possible, The "mysql_old" backend is 48 48 provided only to ease this transition, and is considered deprecated; 49 49 aside from any necessary security fixes, it will not be actively django/trunk/docs/templates_python.txt
r6692 r6743 1184 1184 case, this is the ``submit_row`` tag.) 1185 1185 1186 These sorts of tags are called `inclusion tags`.1186 These sorts of tags are called "inclusion tags". 1187 1187 1188 1188 Writing inclusion tags is probably best demonstrated by example. Let's write a django/trunk/docs/tutorial01.txt
r6535 r6743 48 48 is because, on Unix-based systems like OS X, a file must be marked 49 49 as "executable" before it can be run as a program. To do this, open 50 Terminal.app and navigate (using the ` cd` command) to the directory50 Terminal.app and navigate (using the ``cd`` command) to the directory 51 51 where ``django-admin.py`` is installed, then run the command 52 52 ``chmod +x django-admin.py``. django/trunk/docs/url_dispatch.txt
r5945 r6743 238 238 239 239 A function that takes a full Python import path to another URLconf that should 240 be "included" in this place. See _`Including other URLconfs`below.240 be "included" in this place. See `Including other URLconfs`_ below. 241 241 242 242 Notes on capturing text in URLs
