diff --git a/CHANGES.rst b/CHANGES.rst
index 145b3c797c..a84e79c19e 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -33,6 +33,11 @@ Changelog
https://github.com/plone/Products.CMFPlone/issues/290
[khink]
+- PLIP 10359: Migrate usergroups controlpanel to ``z3c.form`` and move it from
+ plone.app.controlpanel to Products.CMFPlone. Fix and extend tests and add
+ robot tests.
+ [ferewuz]
+
5.0a3 (2014-11-01)
------------------
diff --git a/Products/CMFPlone/controlpanel/README.rst b/Products/CMFPlone/controlpanel/README.rst
index c6b73ed5b3..718c1ddcf0 100644
--- a/Products/CMFPlone/controlpanel/README.rst
+++ b/Products/CMFPlone/controlpanel/README.rst
@@ -149,7 +149,7 @@ Overview Control Panel
>>> tz_settings = registry.forInterface(IDateAndTimeSchema, prefix='plone')
>>> tz_settings.portal_timezone = 'UTC'
-
+
Markup Control Panel
------------------------
@@ -158,3 +158,13 @@ Markup Control Panel
>>> markup_settings.default_type = 'text/html'
>>> markup_settings.allowed_types = ('text/html', 'text/x-web-textile')
+
+
+User and Groups Control Panel
+------------------
+
+ >>> from Products.CMFPlone.interfaces import IUserGroupsSettingsSchema
+ >>> usergroups_settings = registry.forInterface(IUserGroupsSettingsSchema, prefix='plone')
+
+ >>> usergroups_settings.many_groups = False
+ >>> usergroups_settings.many_users = False
diff --git a/Products/CMFPlone/controlpanel/bbb/configure.zcml b/Products/CMFPlone/controlpanel/bbb/configure.zcml
index e4510d3544..e669463729 100644
--- a/Products/CMFPlone/controlpanel/bbb/configure.zcml
+++ b/Products/CMFPlone/controlpanel/bbb/configure.zcml
@@ -11,5 +11,6 @@
+ You can add or remove groups and users from this particular group here. Note that this + doesn't actually delete the group or user, it is only removed from this group. +
+ + ++ + Groups are logical collections of users, such as + departments and business units. Groups are not directly + related to permissions on a global level, you normally + use Roles for that - and let certain Groups have a + particular role. + + + The symbol + + indicates a role inherited from membership in another group. + +
+ ++ Note: Some or all of your PAS groups + source plugins do not allow listing of groups, so you + may not see the groups defined by those plugins unless + doing a specific search. +
+ + + + + + ++ Click the user's name to see and change the details of a + specific user. You can also add and remove users. +
++ Note that roles set here apply directly to a user. + The symbol + indicates a role inherited from membership in a group. +
++ Note + Some or all of your PAS user source + plugins do not allow listing of users, so you may not see + the users defined by those plugins unless doing a specific + search. +
++ + + +
+ +