13 | | The most important changes at the Django level are: |
14 | | * support for setting an owner model for !ManyToManyFields (i.e., there is no intermediary table and the field's data could be stored on either the model defining the relation or on the other model) and !ModelForm should handle that case efficiently (i.e., try to save the relations together with the model instead of afterwards in save_m2m) |
15 | | * support for !ListField (stores a list of values of a certain type; DB backends could use this internally for !ManyToManyFields without an intermediary table) and [http://code.djangoproject.com/ticket/2417 BinaryField] |
16 | | * support for batch save() and delete() |
17 | | * support for email backends |
18 | | * support for running Django from a zip package |
| 13 | At the Django level we need support for: |
| 14 | * setting an owner model for !ManyToManyFields (i.e., there is no intermediary table and the field's data could be stored on either the model defining the relation or on the other model) and !ModelForm should handle that case efficiently (i.e., try to save the relations together with the model instead of afterwards in save_m2m) |
| 15 | * !ListField (stores a list of values of a certain type; DB backends could use this internally for !ManyToManyFields without an intermediary table) and [http://code.djangoproject.com/ticket/2417 BinaryField] |
| 16 | * batch save() and delete() |
| 17 | * email backends |
| 18 | * running Django from a zip package |