Commit 44ca5f46 authored by Malcolm Tredinnick's avatar Malcolm Tredinnick
Browse files

Fixed #7033 -- Removed an unused field.

OrderingField was added in the magic-removal branch to support something that
never ultimately materialised, but it wasn't removed. So this is
backwards-incompatible if you're using this field that has no purpose, I guess.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@7794 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 94beaa6e
Loading
Loading
Loading
Loading
+0 −9
Original line number Diff line number Diff line
@@ -1166,12 +1166,3 @@ class XMLField(TextField):
    def get_manipulator_field_objs(self):
        return [curry(oldforms.XMLLargeTextField, schema_path=self.schema_path)]
class OrderingField(IntegerField):
    empty_strings_allowed=False
    def __init__(self, with_respect_to, **kwargs):
        self.wrt = with_respect_to
        kwargs['null'] = True
        IntegerField.__init__(self, **kwargs )

    def get_manipulator_fields(self, opts, manipulator, change, name_prefix='', rel=False, follow=True):
        return [oldforms.HiddenField(name_prefix + self.name)]