Django

Code

Changeset 6879

Show
Ignore:
Timestamp:
12/04/07 00:13:56 (10 months ago)
Author:
adrian
Message:

Edited various doc changes from [6801]

Files:

Legend:

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

    r6801 r6879  
    259259it would be stored in the model tablespace ``tables`` by default. 
    260260 
    261 The settings.py file supports two additional options to specify 
    262 default values for the db_tablespace options. This is useful for 
    263 setting a tablespace for the Django internal apps and other 
    264 contributed applications.  These options are ``DEFAULT_TABLESPACE`` 
    265 and ``DEFAULT_INDEX_TABLESPACE``. 
     261**New in the Django development version:** Use the ``DEFAULT_TABLESPACE`` and 
     262``DEFAULT_INDEX_TABLESPACE`` settings to specify default values for the 
     263db_tablespace options. These are useful for setting a tablespace for the 
     264built-in Django apps and other applications whose code you cannot control. 
    266265 
    267266Django does not create the tablespaces for you. Please refer to `Oracle's 
  • django/trunk/docs/model-api.txt

    r6801 r6879  
    619619 
    620620The name of the database tablespace to use for this field's index, if 
    621 indeed this field is indexed. The default is the project's 
     621this field is indexed. The default is the project's 
    622622``DEFAULT_INDEX_TABLESPACE`` setting, if set, or the ``db_tablespace`` 
    623623of the model, if any. If the backend doesn't support tablespaces, this 
  • django/trunk/docs/settings.txt

    r6832 r6879  
    418418------------------ 
    419419 
    420 Default: ``''`` (Empty string) 
    421  
    422 Default tablespace to use for models that do not specify one, if the 
     420**New in Django development version** 
     421 
     422Default: ``''`` (Empty string) 
     423 
     424Default tablespace to use for models that don't specify one, if the 
    423425backend supports it. 
    424426 
     
    426428------------------------ 
    427429 
    428 Default: ``''`` (Empty string) 
    429  
    430 Default tablespace to use for indexes on fields that do not specify 
     430**New in Django development version** 
     431 
     432Default: ``''`` (Empty string) 
     433 
     434Default tablespace to use for indexes on fields that don't specify 
    431435one, if the backend supports it. 
    432436