kotti.views.users

User management screens

kotti.views.users.name_pattern_validator(node, value)[source]
>>> name_pattern_validator(None, u'bob')
>>> name_pattern_validator(None, u'b ob')
Traceback (most recent call last):
Invalid: <unprintable Invalid object>
>>> name_pattern_validator(None, u'b:ob')
Traceback (most recent call last):
Invalid: <unprintable Invalid object>
class kotti.views.users.Groups(*args, **kw)[source]
class kotti.views.users.PrincipalBasic(*arg, **kw)[source]
class kotti.views.users.PrincipalFull(*arg, **kw)[source]
class kotti.views.users.UserAddFormView(context, request, **kwargs)[source]
class kotti.views.users.GroupAddFormView(context, request, **kwargs)[source]
class kotti.views.users.UsersManage(context, request)[source]
class UserAddFormView(context, request, **kwargs)
class GroupAddFormView(context, request, **kwargs)
class kotti.views.users.UserEditFormView(context, request, **kwargs)[source]
class kotti.views.users.UserManageFormView(context, request, **kwargs)[source]
before(form)[source]

Performs some processing on the form prior to rendering.

By default, this method does nothing. Override this method in your dervived class to modify the form. Your function will be executed immediately after instansiating the form instance in __call__() (thus before obtaining widget resources, considering buttons, or rendering).

class kotti.views.users.GroupManageFormView(context, request, **kwargs)[source]
class kotti.views.users.UserManage(context, request)[source]
class GroupManageFormView(context, request, **kwargs)
class UserManageFormView(context, request, **kwargs)
before(form)

Performs some processing on the form prior to rendering.

By default, this method does nothing. Override this method in your dervived class to modify the form. Your function will be executed immediately after instansiating the form instance in __call__() (thus before obtaining widget resources, considering buttons, or rendering).

class kotti.views.users.PreferencesFormView(context, request, **kwargs)[source]
class kotti.views.users.Preferences(context, request)[source]
class PreferencesFormView(context, request, **kwargs)