# HG changeset patch # User Paul Boddie # Date 1342210823 -7200 # Node ID 1e9b08dec33582c05250d412a6c0797e87b2fcbf # Parent 3ede22b8cbfea0dd89bb350ed67e7fcc3bbb40fe Added feedback on hosting in the show_config method. Added authentication method details to the help text. diff -r 3ede22b8cbfe -r 1e9b08dec335 moinsetup.py --- a/moinsetup.py Fri Jul 13 21:52:07 2012 +0200 +++ b/moinsetup.py Fri Jul 13 22:20:23 2012 +0200 @@ -547,6 +547,13 @@ "Show the configuration." print + if self.limited_hosting(): + print "Limited hosting configuration detected." + print "Published resources will be configured using .htaccess." + else: + print "Privileged hosting configuration detected..." + print "Published resources will be configured using site definition files." + print for section in ("source", "instance", "site"): print section.title() print "-" * len(section) @@ -1118,6 +1125,12 @@ Edit the installed Wiki configuration file, configuring the authentication method having the given 'method_name'. + Currently recognised authentication methods are: + + * openid (uses OpenIDAuth to access OpenID providers) + * moin, default (use MoinAuth to provide a login form) + * given, remote-user (use HTTPAuth to obtain Web server credentials) + If the 'farm_config' setting is defined, the Wiki farm configuration will be changed. """