Django

Code

Changeset 4804

Show
Ignore:
Timestamp:
03/23/07 15:45:30 (1 year ago)
Author:
ubernostrum
Message:

Remove notes about things added/removed in development version, since the development version is about to become 0.96

Files:

Legend:

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

    r4773 r4804  
    5151formtools 
    5252========= 
    53  
    54 **New in Django development version** 
    5553 
    5654A set of high-level abstractions for Django forms (django.newforms). 
     
    143141=========== 
    144142 
    145 **New in Django development version** 
    146  
    147143A collection of various Django snippets that are useful only for a particular 
    148144country or culture. For example, ``django.contrib.localflavor.usa.forms`` 
  • django/trunk/docs/django-admin.txt

    r4742 r4804  
    101101------------------------------ 
    102102 
    103 **New in Django development version** 
    104  
    105103Output to standard output all data in the database associated with the named  
    106104application(s). 
     
    117115flush 
    118116----- 
    119  
    120 **New in Django development version** 
    121117 
    122118Return the database to the state it was in immediately after syncdb was  
     
    166162only works in PostgreSQL and with certain types of MySQL tables. 
    167163 
    168 install [appname appname ...] 
    169 ----------------------------- 
    170  
    171 **Removed in Django development version** 
    172  
    173 Executes the equivalent of ``sqlall`` for the given appnames. 
    174  
    175164loaddata [fixture fixture ...] 
    176165------------------------------ 
    177  
    178 **New in Django development version** 
    179166 
    180167Searches for and loads the contents of the named fixture into the database. 
     
    351338------------------------------- 
    352339 
    353 **New in Django development version** 
    354  
    355340Prints the custom SQL statements for the given appnames. 
    356341 
     
    374359Prints the CREATE INDEX SQL statements for the given appnames. 
    375360 
    376 sqlinitialdata [appname appname ...] 
    377 -------------------------------------------- 
    378  
    379 **Removed in Django development version** 
    380  
    381 This method has been renamed ``sqlcustom`` in the development version of Django.  
    382  
    383361sqlreset [appname appname ...] 
    384362-------------------------------------- 
     
    427405---- 
    428406 
    429 **New in Django development version** 
    430  
    431407Discover and run tests for all installed models.  See `Testing Django applications`_ for more information. 
    432408 
     
    476452-------- 
    477453 
    478 **New in Django development version** 
    479  
    480454Example usage:: 
    481455 
     
    493467--indent 
    494468-------- 
    495  
    496 **New in Django development version** 
    497469 
    498470Example usage:: 
     
    507479--------- 
    508480 
    509 **New in Django development version** 
    510  
    511481Inform django-admin that the user should NOT be prompted for any input. Useful 
    512482if the django-admin script will be executed as an unattended, automated 
     
    531501----------- 
    532502 
    533 **New in Django development version** 
    534  
    535503Example usage:: 
    536504 
     
    543511--adminmedia 
    544512------------ 
    545  
    546 **New in Django development version** 
    547513 
    548514Example usage:: 
  • django/trunk/docs/generic_views.txt

    r4593 r4804  
    9898      context. By default, this is an empty dictionary. If a value in the 
    9999      dictionary is callable, the generic view will call it 
    100       just before rendering the template. (**This is new in the 
    101       Django development version.**) 
     100      just before rendering the template. 
    102101 
    103102**Example:** 
     
    753752    * ``previous``: The previous page number, as an integer. This is 1-based. 
    754753 
    755     * `last_on_page`: **New in Django development version** The number of the 
     754    * `last_on_page`: The number of the 
    756755      last result on the current page. This is 1-based. 
    757756 
    758     * `first_on_page`: **New in Django development version** The number of the 
     757    * `first_on_page`: The number of the 
    759758      first result on the current page. This is 1-based. 
    760759 
  • django/trunk/docs/middleware.txt

    r4420 r4804  
    105105---------------------------------------------------- 
    106106 
    107 **New in Django development version** 
    108  
    109107Sets ``request.META['REMOTE_ADDR']`` based on 
    110108``request.META['HTTP_X_FORWARDED_FOR']``, if the latter is set. This is useful 
  • django/trunk/docs/model-api.txt

    r4746 r4804  
    363363used in URLs. 
    364364 
    365 In the Django development version, you can specify ``maxlength``. If 
    366 ``maxlength`` is not specified, Django will use a default length of 50. In 
    367 previous Django versions, there's no way to override the length of 50. 
     365Like a CharField, you can specify ``maxlength``. If ``maxlength`` is 
     366not specified, Django will use a default length of 50. 
    368367 
    369368Implies ``db_index=True``. 
     
    14581457    AND (first_name ILIKE '%lennon%' OR last_name ILIKE '%lennon%') 
    14591458 
    1460 **New in Django development version:** For faster and/or more restrictiv
    1461 searches, prefix the field name with an operator: 
     1459For faster and/or more restrictive searches, prefix the field nam
     1460with an operator: 
    14621461 
    14631462``^`` 
     
    17551754~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    17561755 
    1757 **New in Django development version.** 
    1758  
    17591756The problem with the way we wrote ``get_absolute_url()`` above is that it 
    17601757slightly violates the DRY principle: the URL for this object is defined both 
  • django/trunk/docs/newforms.txt

    r4526 r4804  
    1010============== 
    1111 
    12 ``django.newforms`` currently is only available in the Django development version 
    13 -- i.e., it's not available in the Django 0.95 release. For the next Django 
    14 release, our plan is to do the following: 
     12``django.newforms`` currently is only available in Django beginning 
     13with the 0.96 release.  the Django development version -- i.e., it's 
     14not available in the Django 0.95 release. For the next Django release, 
     15our plan is to do the following: 
    1516 
    1617    * As of revision [4208], we've copied the current ``django.forms`` to 
  • django/trunk/docs/request_response.txt

    r4538 r4804  
    385385    exist. 
    386386 
    387     The ``path`` and ``domain`` arguments are new in the Django development version. 
    388387    Due to the way cookies work, ``path`` and ``domain`` should be the same 
    389388    values you used in ``set_cookie()`` -- otherwise the cookie may not be deleted. 
  • django/trunk/docs/sessions.txt

    r4420 r4804  
    266266--------------------- 
    267267 
    268 **New in Django development version** 
    269  
    270268Default: ``False`` 
    271269 
  • django/trunk/docs/settings.txt

    r4767 r4804  
    429429FIXTURE_DIRS 
    430430------------- 
    431  
    432 **New in Django development version** 
    433431 
    434432Default: ``()`` (Empty tuple) 
     
    717715--------------------- 
    718716 
    719 **New in Django development version** 
    720  
    721717Default: ``False`` 
    722718 
     
    813809----------- 
    814810 
    815 **New in Django development version** 
    816  
    817811Default: ``'django.test.simple.run_tests'`` 
    818812 
     
    824818TEST_DATABASE_NAME 
    825819------------------ 
    826  
    827 **New in Django development version** 
    828820 
    829821Default: ``None`` 
  • django/trunk/docs/templates.txt

    r4647 r4804  
    113113======== 
    114114 
    115 **New in Django development version** 
    116  
    117115To comment-out part of a template, use the comment syntax: ``{# #}``. 
    118116 
     
    254252      completely overriding it. 
    255253 
    256     * **New in Django development version:** For extra readability, you can 
    257       optionally give a *name* to your ``{% endblock %}`` tag. For example:: 
     254    * For extra readability, you can optionally give a *name* to your 
     255      ``{% endblock %}`` tag. For example:: 
    258256 
    259257          {% block content %} 
     
    549547        {% endfor %} 
    550548 
    551 2. **New in Django development version.** If given a variable, check whether that 
    552    variable has changed. For example, the following shows the date every time i
    553    changes, but only shows the hour if both the hour and the date has changed:: 
     5492. If given a variable, check whether that variable has changed. For 
     550   example, the following shows the date every time it changes, bu
     551   only shows the hour if both the hour and the date has changed:: 
    554552 
    555553        {% for date in days %} 
     
    829827    ==================  ======= 
    830828 
    831 Note: ``opencomment`` and ``closecomment`` are new in the Django development version. 
    832  
    833829url 
    834830~~~ 
    835  
    836 **New in Django development version** 
    837831 
    838832**Note that the syntax for this tag may change in the future, as we make it more robust.** 
     
    976970    * ``36.15`` gets converted to ``36.2`` 
    977971    * ``36`` gets converted to ``36`` 
    978  
    979 **New in Django development version** 
    980972 
    981973If used with a numeric integer argument, ``floatformat`` rounds a number to that  
  • django/trunk/docs/testing.txt

    r4779 r4804  
    22Testing Django applications 
    33=========================== 
    4  
    5 **New in Django development version**. 
    64 
    75Automated testing is an extremely useful weapon in the bug-killing arsenal 
  • django/trunk/docs/url_dispatch.txt

    r4638 r4804  
    401401-------------------------------------- 
    402402 
    403 **New in Django development version.** 
    404  
    405403Similarly, you can pass extra options to ``include()``. When you pass extra 
    406404options to ``include()``, *each* line in the included URLconf will be passed 
     
    443441=========================================== 
    444442 
    445 **New in Django development version.** 
    446  
    447443Some developers find it more natural to pass the actual Python function object 
    448444rather than a string containing the path to its module. This alternative is