#8206 closed (fixed)
Remove models.base.Model.validate(), manipulator field functions, validator lists
Reported by: | Malcolm Tredinnick | Owned by: | Gary Wilson |
---|---|---|---|
Component: | Core (Other) | Version: | dev |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Accepted | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
With the model-aware validation being pushed to after 1.0, we should ensure nobody uses code that is intentionally in a broken or unsupported state. This means
- Removing
django.db.models.base.Model.validate()
, since it's always been incomplete and not to be used. But still people try using it. It's not part of the public API at the moment. - Removing code in
django.db.models.fields
that is only to support manipulators. They are only oldforms-admin related. - Removing validator lists from field classes, since they're again only oldforms-admin related.
This probably goes after removing oldforms (#7742) to get the ordering right for people still using oldforms + manipulators.
Change History (4)
comment:1 by , 16 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
Triage Stage: | Unreviewed → Accepted |
comment:2 by , 16 years ago
comment:3 by , 16 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
Replying to mtredinnick:
I'm rolling both of these into #7742, as they are oldforms-related but will need to stick around until the rest of Django is oldforms-free.