summaryrefslogtreecommitdiff
path: root/django/core/serializers/xml_serializer.py
AgeCommit message (Expand)Author
2015-02-09[1.8.x] Sorted imports with isort; refs #23860.Tim Graham
2015-01-06Fixed #12663 -- Formalized the Model._meta API for retrieving fields.Daniel Pyrathon
2014-11-03Fixed typos using https://github.com/vlajos/misspell_fixerVeres Lajos
2014-01-26Took advantage of the new get_model API. Refs #21702.Aymeric Augustin
2013-12-28Changed get_model to raise an exception on errors.Aymeric Augustin
2013-12-24Renamed AppCache to Apps.Aymeric Augustin
2013-12-22Moved apps back in the toplevel django namespace.Aymeric Augustin
2013-12-17Moved the new app cache inside core.Aymeric Augustin
2013-12-17Removed module-level functions for the app cache.Aymeric Augustin
2013-11-02More attacking E302 violatorsAlex Gaynor
2013-10-26Fixed all the E203 violationsAlex Gaynor
2013-10-21Fixed #21288 -- Fixed E126 pep8 warningsAlasdair Nicol
2013-10-18Fixed #21267 -- Fixed E502 pep8 warningsAlasdair Nicol
2013-10-11Fixed #13252 -- Added ability to serialize with natural primary keys.Tai Lee
2013-09-03Fixed "indentation is not a multiple of four" pep8 issues.Tim Graham
2013-03-30Fixed #19998 -- Fixed --ignorenonexistent support for XML based fixtures.Christoph Sieghart
2013-02-19Restrict the XML deserializer to prevent network and entity-expansion DoS att...Carl Meyer
2012-11-03Fixed #18963 -- Used a subclass-friendly patternAymeric Augustin
2012-08-09[py3] Renamed `next` to `__next__` in iterators.Aymeric Augustin
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-02-04Fixed #17602 -- Stopped the XML serializer from doing unneeded queries. Thank...Jannis Leidel
2010-12-21Reverting r14994 (at request of SmileyChris) because of some backwards compat...Russell Keith-Magee
2010-12-21Fixes #13252 -- Use the natural key instead of the primary key when serializingChris Beaven
2010-09-19Fixed #11486 -- Corrected the XML serializer to allow for the serialization o...Russell Keith-Magee
2010-03-18Fixed #13030 -- Corrected natural key deserialization to subclasses. Thanks t...Russell Keith-Magee
2009-12-22Fixed #1142 -- Added multiple database support.Russell Keith-Magee
2009-12-14Fixed #7052 -- Added support for natural keys in serialization.Russell Keith-Magee
2009-11-03Fixed #10109 -- Removed the use of raw SQL in many-to-many fields by introduc...Russell Keith-Magee
2009-04-13Fixed #9522 -- Modified handling of values in base serializer so that field s...Russell Keith-Magee
2008-08-12Fixed #8134 -- Corrected serialization of m2m fields with intermediate models...Russell Keith-Magee
2007-07-20Fixed #4558 -- Modified XML serializer to handle whitespace better around Non...Russell Keith-Magee
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-05-28Fixed a serialization problem with objects that have a foreign key on an obje...Russell Keith-Magee
2007-05-14Fixed #4288 -- Modified serializers to pay attention to the to_field attribut...Russell Keith-Magee
2007-03-15Added implementation of --indent for the XML serializer.Russell Keith-Magee
2007-03-13Added various fixes to serializer implementations. Fixes mostly deal with han...Russell Keith-Magee
2007-02-26Fixed #3390: the serializer can now contain forward references. Thanks, Russ.Jacob Kaplan-Moss
2006-11-07Fixed #2894: XML deserializer now correctly handles null primary keys.Jacob Kaplan-Moss
2006-06-29Added a JSON serializer, a few more tests, and a couple more lines of docs.Jacob Kaplan-Moss
2006-06-28Added initial cut at serialization framework, along with some basic tests and...Jacob Kaplan-Moss