django1/django/core/serializers
Russell Keith-Magee 12716794db Fixed #7350, #7202 -- Fixed serialization for multi-model inheritance, which had multiple problems:
* Serializers were including all superclass fields in their output. Now only local fields are included.
 * Implicit OneToOne primary keys were not correctly added to the metamodel, so they were always marked to be serialized, even though they were primary
 * Model saving was too aggressive about creating new parent class instances during deserialization. Raw save on a model now skips saving of the parent class.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@7600 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-06-09 14:03:35 +00:00
..
__init__.py Fixed #6110 -- Mark the python format serializer as for internal use only. Thanks, empty. 2007-12-17 06:53:15 +00:00
base.py Fixed #7350, #7202 -- Fixed serialization for multi-model inheritance, which had multiple problems: 2008-06-09 14:03:35 +00:00
json.py Fixed #6481 -- Fixed a bunch of import problems (and some whitespace cleanups). 2008-02-19 00:08:08 +00:00
python.py Fixed #6110 -- Mark the python format serializer as for internal use only. Thanks, empty. 2007-12-17 06:53:15 +00:00
pyyaml.py Fixed #6481 -- Fixed a bunch of import problems (and some whitespace cleanups). 2008-02-19 00:08:08 +00:00
xml_serializer.py Fixed #4558 -- Modified XML serializer to handle whitespace better around None tags. Thanks to Bill Fenner <fenner@gmail.com> for the report and fix. 2007-07-20 12:07:58 +00:00