Mercurial > public > src > moin > 1.9
diff MoinMoin/config/multiconfig.py @ 4052:0cdc180a2932
improve config setting descriptions
author | Thomas Waldmann <tw AT waldmann-edv DOT de> |
---|---|
date | Sun, 31 Aug 2008 03:09:20 +0200 |
parents | 63fbadea490e |
children | afd75bb5f345 |
line wrap: on
line diff
--- a/MoinMoin/config/multiconfig.py Sun Aug 31 01:21:26 2008 +0200 +++ b/MoinMoin/config/multiconfig.py Sun Aug 31 03:09:20 2008 +0200 @@ -738,7 +738,9 @@ )), # ========================================================================== - 'spam_leech_dos': ('Anti-Spam/Leech/DOS', None, ( + 'spam_leech_dos': ('Anti-Spam/Leech/DOS', + 'These settings help limiting ressource usage and avoiding abuse.', + ( ('hosts_deny', [], "List of denied IPs; if an IP ends with a dot, it denies a whole subnet (class A, B or C)"), ('surge_action_limits', {# allow max. <count> <action> requests per <dt> secs @@ -779,14 +781,16 @@ "A regex of HTTP_USER_AGENTs that should be excluded from logging and are not allowed to use actions."), ('unzip_single_file_size', 2.0 * 1000 ** 2, - "max. number of files which are extracted from the zip file"), + "max. size of a single file in the archive which will be extracted [bytes]"), ('unzip_attachments_space', 200.0 * 1000 ** 2, "max. total amount of bytes can be used to unzip files [bytes]"), ('unzip_attachments_count', 101, - "max. size of a single file in the archive which will be extracted [bytes]"), + "max. number of files which are extracted from the zip file"), )), # ========================================================================== - 'style': ('Style / Theme / UI related', None, ( + 'style': ('Style / Theme / UI related', + 'These settings control how the wiki user interface will look like.', + ( ('sitename', u'Untitled Wiki', "Short description of your wiki site, displayed below the logo on each page, and used in RSS documents as the channel title [Unicode]"), ('interwikiname', None, "unique and stable InterWiki name (prefix, moniker) of the site, or None"), @@ -1061,7 +1065,9 @@ # # options = { - 'acl': ('Access control lists', None, ( + 'acl': ('Access control lists', + 'ACLs control who may do what, see HelpOnAccessControlLists.', + ( ('hierarchic', False, 'True to use hierarchical ACLs'), ('rights_default', u"Trusted:read,write,delete,revert Known:read,write,delete,revert All:read,write", "ACL used if no ACL is specified on the page"),