# HG changeset patch # User Marcin Kuzminski # Date 2017-06-01 10:46:15 # Node ID e2d99ac992d7b0169c6a9a6c6aa68b716938e56c # Parent c6fe7e498a5988e8809c0d058cc75cbc7ba499ad auth-plugins: updated description on auth_ldap plugin servers. diff --git a/rhodecode/authentication/plugins/auth_ldap.py b/rhodecode/authentication/plugins/auth_ldap.py --- a/rhodecode/authentication/plugins/auth_ldap.py +++ b/rhodecode/authentication/plugins/auth_ldap.py @@ -71,15 +71,17 @@ class LdapSettingsSchema(AuthnPluginSett host = colander.SchemaNode( colander.String(), default='', - description=_('Host of the LDAP Server \n' - '(e.g., 192.168.2.154, or ldap-server.domain.com'), + description=_('Host[s] of the LDAP Server \n' + '(e.g., 192.168.2.154, or ldap-server.domain.com.\n ' + 'Multiple servers can be specified using commas'), preparer=strip_whitespace, title=_('LDAP Host'), widget='string') port = colander.SchemaNode( colander.Int(), default=389, - description=_('Custom port that the LDAP server is listening on. Default: 389'), + description=_('Custom port that the LDAP server is listening on. ' + 'Default value is: 389'), preparer=strip_whitespace, title=_('Port'), validator=colander.Range(min=0, max=65536),