mirror of
https://github.com/django/django.git
synced 2024-12-25 10:35:48 +00:00
Fixed #12812 -- added warning about cyclic imports in contrib.comments. Thanks to Beetle_B, bjourne and philgyford for the reports, and Russ for the wording.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14810 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
adfd7f8172
commit
5a7af25c7a
@ -110,6 +110,18 @@ point Django at these classes we've created::
|
|||||||
def get_form():
|
def get_form():
|
||||||
return CommentFormWithTitle
|
return CommentFormWithTitle
|
||||||
|
|
||||||
|
|
||||||
|
.. warning::
|
||||||
|
|
||||||
|
Be careful not to create cyclic imports in your custom comments app.
|
||||||
|
If you feel your comment configuration isn't being used as defined --
|
||||||
|
for example, if your comment moderation policy isn't being applied --
|
||||||
|
you may have a cyclic import problem.
|
||||||
|
|
||||||
|
If you are having unexplained problems with comments behavior, check
|
||||||
|
if your custom comments application imports (even indirectly)
|
||||||
|
any module that itself imports Django's comments module.
|
||||||
|
|
||||||
The above process should take care of most common situations. For more
|
The above process should take care of most common situations. For more
|
||||||
advanced usage, there are additional methods you can define. Those are
|
advanced usage, there are additional methods you can define. Those are
|
||||||
explained in the next section.
|
explained in the next section.
|
||||||
|
Loading…
Reference in New Issue
Block a user