Improved model validator to throw error if a model has two ManyToMany relationships to the same model and doesn't set 'singular'. Refs #452.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1513 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
e0f0532305
commit
9e2eccc1ab
|
@ -646,6 +646,13 @@ def get_validation_errors(outfile):
|
||||||
if not type(c) in (tuple, list) or len(c) != 2:
|
if not type(c) in (tuple, list) or len(c) != 2:
|
||||||
e.add(opts, '"%s" field: "choices" should be a sequence of two-tuples.' % f.name)
|
e.add(opts, '"%s" field: "choices" should be a sequence of two-tuples.' % f.name)
|
||||||
|
|
||||||
|
# Check for multiple ManyToManyFields to the same object, and
|
||||||
|
# verify "singular" is set in that case.
|
||||||
|
for i, f in enumerate(opts.many_to_many):
|
||||||
|
for previous_f in opts.many_to_many[:i]:
|
||||||
|
if f.rel.to == previous_f.rel.to and f.rel.singular == previous_f.rel.singular:
|
||||||
|
e.add(opts, 'The "%s" field requires a "singular" parameter, because the %s model has more than one ManyToManyField to the same model (%s).' % (f.name, opts.object_name, previous_f.rel.to.object_name))
|
||||||
|
|
||||||
# Check admin attribute.
|
# Check admin attribute.
|
||||||
if opts.admin is not None:
|
if opts.admin is not None:
|
||||||
if not isinstance(opts.admin, meta.Admin):
|
if not isinstance(opts.admin, meta.Admin):
|
||||||
|
|
Loading…
Reference in New Issue