Split forms into containers, entities, and fields. Split attribute fields out from...
authorStephen Burrows <stephen.r.burrows@gmail.com>
Fri, 21 Jan 2011 18:09:58 +0000 (13:09 -0500)
committerStephen Burrows <stephen.r.burrows@gmail.com>
Fri, 21 Jan 2011 18:09:58 +0000 (13:09 -0500)
commit1422f0d2c8325b2c4d6781bd3c7b21a3d5873b90
treea4f407ac7088735d1997f5a76ae334aaad10fa11
parent16c91c1902f065c6d9b12a5c89c04d6aef620291
Split forms into containers, entities, and fields. Split attribute fields out from other model fields. Revamped the interaction between AttributeForm and the AttributeValue subclasses to more clearly define their roles. Moved all code related to AttributeFields into models.fields.attributes. Genericized AttributeFieldDescriptor and removed the other descriptor options.
admin/base.py
admin/pages.py
forms.py [deleted file]
forms/__init__.py [new file with mode: 0644]
forms/containers.py [new file with mode: 0644]
forms/entities.py [new file with mode: 0644]
forms/fields.py [new file with mode: 0644]
models/base.py
models/fields.py [deleted file]
models/fields/__init__.py [new file with mode: 0644]
models/fields/attributes.py [new file with mode: 0644]