Skip to content

Commit

Permalink
[soc2009/admin-ui] Fix for ticket #11720: "When an OrderField is on a…
Browse files Browse the repository at this point in the history
…n inline and there are empty inlines, saving throws an error"

If the only things changed in an empty form are OrderField(s), it is treated as untouched.


git-svn-id: http://code.djangoproject.com/svn/django/branches/soc2009/admin-ui@11462 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
zain committed Aug 16, 2009
1 parent 687a5af commit 3a99684
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion django/forms/forms.py
Expand Up @@ -9,7 +9,7 @@
from django.utils.encoding import StrAndUnicode, smart_unicode, force_unicode
from django.utils.safestring import mark_safe

from fields import Field, FileField
from fields import Field, FileField, OrderField
from widgets import Media, media_property, TextInput, Textarea
from util import flatatt, ErrorDict, ErrorList, ValidationError

Expand Down Expand Up @@ -271,6 +271,7 @@ def has_changed(self):
def _get_changed_data(self):
if self._changed_data is None:
self._changed_data = []
order_fields = []
# XXX: For now we're asking the individual widgets whether or not the
# data has changed. It would probably be more efficient to hash the
# initial data, store it in a hidden field, and compare a hash of the
Expand All @@ -288,7 +289,17 @@ def _get_changed_data(self):
initial_value = hidden_widget.value_from_datadict(
self.data, self.files, initial_prefixed_name)
if field.widget._has_changed(initial_value, data_value):
if isinstance(field, OrderField):
order_fields.append(name)
self._changed_data.append(name)

# if this is an empty form and only the OrderField is changed, we want to treat
# it as untouched
if self.empty_permitted and order_fields != []:
difference = filter(lambda x: x not in self._changed_data, order_fields)
if difference == []:
self._changed_data = []

return self._changed_data
changed_data = property(_get_changed_data)

Expand Down

0 comments on commit 3a99684

Please sign in to comment.