Django

Code

Changeset 6743

Show
Ignore:
Timestamp:
11/29/07 12:15:38 (9 months ago)
Author:
mtredinnick
Message:

Fixed #5955 -- Made a bunch of ReST fixes. Thanks, SmileyChris?.

Files:

Legend:

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

    r6376 r6743  
    171171      If no password is provided, ``set_unusable_password()`` will be called. 
    172172 
    173       See _`Creating users` for example usage. 
     173      See `Creating users`_ for example usage. 
    174174 
    175175    * ``make_random_password(length=10, allowed_chars='abcdefghjkmnpqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ23456789')`` 
  • django/trunk/docs/django-admin.txt

    r6602 r6743  
    652652arguments.) 
    653653 
    654 To run on 1.2.3.4:7000 with a `test` fixture:: 
     654To run on 1.2.3.4:7000 with a ``test`` fixture:: 
    655655 
    656656    django-admin.py testserver --addrport 1.2.3.4:7000 test 
  • django/trunk/docs/model-api.txt

    r6652 r6743  
    5151 
    5252    * 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. 
    5454    * An ``id`` field is added automatically, but this behavior can be 
    5555      overriden. See `Automatic primary key fields`_ below. 
     
    16651665Adding extra ``Manager`` methods is the preferred way to add "table-level" 
    16661666functionality to your models. (For "row-level" functionality -- i.e., functions 
    1667 that act on a single instance of a model object -- use _`Model methods`, not 
     1667that act on a single instance of a model object -- use `Model methods`_, not 
    16681668custom ``Manager`` methods.) 
    16691669 
  • django/trunk/docs/release_notes_0.96.txt

    r5571 r6743  
    4545 
    4646However, we strongly encourage MySQL users to upgrade to a more recent 
    47 version of `MySQLdb` as soon as possible, The "mysql_old" backend is 
     47version of ``MySQLdb`` as soon as possible, The "mysql_old" backend is 
    4848provided only to ease this transition, and is considered deprecated; 
    4949aside from any necessary security fixes, it will not be actively 
  • django/trunk/docs/templates_python.txt

    r6692 r6743  
    11841184case, this is the ``submit_row`` tag.) 
    11851185 
    1186 These sorts of tags are called `inclusion tags`
     1186These sorts of tags are called "inclusion tags"
    11871187 
    11881188Writing inclusion tags is probably best demonstrated by example. Let's write a 
  • django/trunk/docs/tutorial01.txt

    r6535 r6743  
    4848   is because, on Unix-based systems like OS X, a file must be marked 
    4949   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 directory 
     50   Terminal.app and navigate (using the ``cd`` command) to the directory 
    5151   where ``django-admin.py`` is installed, then run the command 
    5252   ``chmod +x django-admin.py``. 
  • django/trunk/docs/url_dispatch.txt

    r5945 r6743  
    238238 
    239239A function that takes a full Python import path to another URLconf that should 
    240 be "included" in this place. See _`Including other URLconfs` below. 
     240be "included" in this place. See `Including other URLconfs`_ below. 
    241241 
    242242Notes on capturing text in URLs