Wiki source code of Group Management
Version 27.1 by AdrianFita on 2012/03/02
Hide last authors
author | version | line-number | content |
---|---|---|---|
![]() |
25.2 | 1 | {{box cssClass="floatinginfobox" title="**Contents**"}}{{toc/}}{{/box}} |
![]() |
25.1 | 2 | |
3 | {{info}} | ||
![]() |
26.2 | 4 | These instructions assume you're using XWiki 1.2 or later with **[[Colibri, Albatross or Toucan skin>>AdminGuide.Skins]]** (screenshots for Colibri). |
![]() |
25.1 | 5 | {{/info}} |
![]() |
3.1 | 6 | |
![]() |
25.2 | 7 | = Adding groups to your wiki = |
![]() |
3.1 | 8 | |
9 | 1. Log in as an administrator. | ||
![]() |
25.1 | 10 | 1. Click on the **##Administration##** link in the top right corner of the screen to go to the main Administration page. |
11 | 1. Click on the **##Groups##** icon to bring up an overview of all groups. | ||
12 | 1. Click on **##Add new group##** button to open the group creation lightbox as shown on the image below. | ||
13 | 1. Complete the group information and press the **##Create Group##** button. | ||
![]() |
3.1 | 14 | |
![]() |
26.3 | 15 | [[image:CreateGroup.png||style="border:1px solid black;]] |
![]() |
6.1 | 16 | |
![]() |
25.2 | 17 | = Editing an existing group = |
![]() |
6.1 | 18 | |
19 | 1. Log in as an administrator. | ||
![]() |
25.1 | 20 | 1. Click on the **##Administration##** link in the top right corner of the screen to go to the main Administration page. |
21 | 1. Click on the **##Groups##** icon to bring up an overview of all groups. | ||
![]() |
20.1 | 22 | 1. You have two options: |
23 | 11. Click the group name for the group to edit. | ||
![]() |
25.1 | 24 | 111. |
25 | 111*. On the group page click **##Edit##** in the top left corner. This will open a page editing view containing the members of the group (if any). | ||
![]() |
20.1 | 26 | 11. Click on the pencil near the group you want to edit. This will open a lightbox with the members of that group. |
27 | 1. For both options, follow the instructions below. | ||
![]() |
25.1 | 28 | 1. You can add a new user to the group by typing the user's name in the input near **##Add new user##**. After starting to type, if the user exists, a suggest feature will be displayed, containing a list of all the users whose names contain the typed letters, so you can select from them. |
29 | 1. You can also add an entire group into the current group. This can be done by typing the group name in the input near **##Add new group##** and then select one from the suggested list. | ||
30 | 1. You also can delete a user / group by clicking on the **##X##** button as shown below. | ||
![]() |
7.1 | 31 | |
![]() |
26.3 | 32 | [[image:EditGroup.png||style="border:1px solid black;]] |
![]() |
11.1 | 33 | |
![]() |
25.2 | 34 | = Deleting an existing group = |
![]() |
11.1 | 35 | |
36 | 1. Log in as an administrator. | ||
![]() |
25.1 | 37 | 1. Click on the **##Administration##** link in the top right corner of the screen to go to the main Administration page. |
38 | 1. Click on the **##Groups##** icon to bring up an overview of all groups. | ||
39 | 1. Delete the group by using the **##X##** button for the group to delete. | ||
![]() |
11.1 | 40 | |
![]() |
26.2 | 41 | [[image:DeleteGroup.png||style="border:1px solid black;]] |
![]() |
15.1 | 42 | |
![]() |
25.1 | 43 | {{info}} |
44 | Note that when you delete a group, the users or groups in that group are not deleted. If you also want to delete the members of the group, you will have to delete them manually from **##Users##** and the **##Groups##** pages. | ||
45 | {{/info}} | ||
![]() |
27.1 | 46 | |
47 | = Modify the number of groups displayed in the list = | ||
48 | |||
49 | This is valid as of v3.5 (I think it works on any 3.x version). | ||
50 | |||
51 | You have to edit XWiki.AdminGroupsSheet for groups. | ||
52 | |||
53 | The page contains a line like this: | ||
54 | |||
55 | {{code}} | ||
56 | var ta = new XWiki.widgets.LiveTable("$url", "groupstable", callback); | ||
57 | {{/code}} | ||
58 | |||
59 | Just replace it with: | ||
60 | |||
61 | {{code}} | ||
62 | var ta = new XWiki.widgets.LiveTable("$url", "groupstable", callback, {limit: 100}); | ||
63 | {{/code}} | ||
64 | |||
65 | where 100 is the number of items displayed per page. |