From 44ca5f46c9ca1a6eeeaa4f6fd30d0a3ea7a719bf Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Mon, 30 Jun 2008 07:10:03 +0000 Subject: [PATCH] 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 --- django/db/models/fields/__init__.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/django/db/models/fields/__init__.py b/django/db/models/fields/__init__.py index dc5cb9609c..5e29cd5b5f 100644 --- a/django/db/models/fields/__init__.py +++ b/django/db/models/fields/__init__.py @@ -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)]