diff MoinMoin/config/multiconfig.py @ 4537:f8bf8de778f2

move auth.http.HTTPAuth to auth.GivenAuth, see details below old name was not reflecting what it really did (just use REMOTE_USER env var) compatibility and deprecation warning code added as auth.http.HTTPAuth extended GivenAuth so env_var can give another env. var. name extended GivenAuth so a fixed user_name can be given that is considered authenticated trusted_auth_methods default now includes 'http' and 'given' for compatibility
author Thomas Waldmann <tw AT waldmann-edv DOT de>
date Tue, 03 Feb 2009 15:04:21 +0100
parents 83666cc9dc31
children 95dc19f1ea75
line wrap: on
line diff
--- a/MoinMoin/config/multiconfig.py	Tue Feb 03 05:42:52 2009 +0100
+++ b/MoinMoin/config/multiconfig.py	Tue Feb 03 15:04:21 2009 +0100
@@ -720,7 +720,7 @@
      "List of trusted user names with wiki system administration super powers (not to be confused with ACL admin rights!). Used for e.g. software installation, language installation via SystemPagesSetup and more. See also HelpOnSuperUser."),
     ('auth', DefaultExpression('[MoinAuth()]'),
      "list of auth objects, to be called in this order (see HelpOnAuthentication)"),
-    ('auth_methods_trusted', ['http', 'xmlrpc_applytoken'],
+    ('auth_methods_trusted', ['http', 'given', 'xmlrpc_applytoken'], # Note: 'http' auth method is currently just a redirect to 'given'
      'authentication methods for which users should be included in the special "Trusted" ACL group.'),
     ('secrets', None, """Either a long shared secret string used for multiple purposes or a dict {"purpose": "longsecretstring", ...} for setting up different shared secrets for different purposes. If you don't setup own secret(s), a secret string will be auto-generated from other config settings."""),
     ('DesktopEdition',