##// END OF EJS Templates
auth-plugins: updated description on auth_ldap plugin servers.
marcink -
r1772:e2d99ac9 default
parent child Browse files
Show More
@@ -71,15 +71,17 b' class LdapSettingsSchema(AuthnPluginSett'
71 71 host = colander.SchemaNode(
72 72 colander.String(),
73 73 default='',
74 description=_('Host of the LDAP Server \n'
75 '(e.g., 192.168.2.154, or ldap-server.domain.com'),
74 description=_('Host[s] of the LDAP Server \n'
75 '(e.g., 192.168.2.154, or ldap-server.domain.com.\n '
76 'Multiple servers can be specified using commas'),
76 77 preparer=strip_whitespace,
77 78 title=_('LDAP Host'),
78 79 widget='string')
79 80 port = colander.SchemaNode(
80 81 colander.Int(),
81 82 default=389,
82 description=_('Custom port that the LDAP server is listening on. Default: 389'),
83 description=_('Custom port that the LDAP server is listening on. '
84 'Default value is: 389'),
83 85 preparer=strip_whitespace,
84 86 title=_('Port'),
85 87 validator=colander.Range(min=0, max=65536),
General Comments 0
You need to be logged in to leave comments. Login now