Ticket #9819: comment-settings.diff

File comment-settings.diff, 853 bytes (added by Kegan Gan, 15 years ago)

Tiny patch for comments settings

  • docs/ref/contrib/comments/settings.txt

    diff --git a/docs/ref/contrib/comments/settings.txt b/docs/ref/contrib/comments/settings.txt
    index 2aa392c..aff0971 100644
    a b COMMENT_MAX_LENGTH  
    2424The maximum length of the comment field, in characters. Comments longer than
    2525this will be rejected. Defaults to 3000.
    2626
     27.. setting:: COMMENTS_ALLOW_PROFANITIES
     28
     29COMMENTS_ALLOW_PROFANITIES
     30--------------------------
     31
     32If ``True`` (default is False), comments with words in :setting:`PROFANITIES_LIST`
     33will raise :ref:`form validation error <ref-forms-validation>`.
     34
     35.. setting:: COMMENTS_BANNED_USERS_GROUP
     36
     37COMMENTS_BANNED_USERS_GROUP
     38---------------------------
     39
     40The group ID which its users' comments will not appear in the comments feeds.
     41
    2742.. setting:: COMMENTS_APP
    2843
    2944COMMENTS_APP
Back to Top