Changes between Version 222 and Version 223 of BackwardsIncompatibleChanges


Ignore:
Timestamp:
Aug 9, 2008, 4:04:26 PM (16 years ago)
Author:
Brian Rosner
Comment:

added [8273] info.

Legend:

Unmodified
Added
Removed
Modified
  • BackwardsIncompatibleChanges

    v222 v223  
    7272 * [8230] Aug 8, 2008 [#Peruvianlocalflavorchange Peruvian localflavor change]
    7373 * [8244] Aug 8, 2008 [#Filestoragerefactoring File storage refactoring]
     74 * [8273] Aug 9, 2008 [save_addandsave_changeRemovedfromModelAdmin save_add and save_change Removed from ModelAdmin]
    7475
    7576== Changed 'spaceless' template tag to remove all spaces ==
     
    11111112|| `instance.get_content_width()`    || `instance.content.width`  ||
    11121113|| `instance.get_content_height()`   || `instance.content.height` ||
     1114
     1115== ```save_add``` and ```save_change``` Removed from ```ModelAdmin``` ===
     1116
     1117[8273] removed ```save_add``` and ```save_change``` from the ```ModelAdmin```
     1118class in favor of the changes in [8266] and adding ```response_add``` and
     1119```response_change```.
     1120
     1121```save_model``` was introduced in [8266], but has been renamed to
     1122```save_form``` due to the new behavior which is to return unsaved instances
     1123as opposed to saved instances in both ```save_form``` and ```save_formset```.
Back to Top