Changes for page User Directory
Last modified by Ludovic Dubost on 2019/11/21 10:10
To version 2.1
edited by Thomas Mortagne
on 2014/09/29 12:41
on 2014/09/29 12:41
Change comment:
Install extension [org.xwiki.platform:xwiki-platform-user-directory-ui-6.2]
Summary
-
Page properties (2 modified, 0 added, 0 removed)
-
Objects (0 modified, 1 added, 0 removed)
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -xwiki:XWiki. ludovic1 +xwiki:XWiki.ThomasMortagne - Content
-
... ... @@ -9,7 +9,7 @@ 9 9 #set ($fakeUser = false) 10 10 ## 11 11 ## Set the fixed columns that we want the user directory to always show. 12 -#set ($columns = ['_avatar', 'doc. fullName'])12 +#set ($columns = ['_avatar', 'doc.name']) 13 13 ## 14 14 ## The columns that the user directory will default to when no user preferences exist or when the user resets to default. 15 15 #set ($defaultColumns = ['first_name', 'last_name']) ... ... @@ -83,7 +83,7 @@ 83 83 {{html clean='false' wiki='true'}} 84 84 <form class='xform half' action="$doc.getURL($xcontext.action, $request.queryString)" method='post'> 85 85 <dl> 86 - <dt class='label'>86 + <dt> 87 87 <label>{{translation key="xe.userdirectory.customizeAvailableColumnsLabel"/}}</label> 88 88 <span class='xHint'>{{translation key="xe.userdirectory.customizeAvailableColumnsHint"/}}</span> 89 89 </dt> ... ... @@ -150,7 +150,7 @@ 150 150 #set ($html = true) 151 151 #set ($sortable = false) 152 152 #set ($link = 'view') 153 - #elseif ($column == 'doc. fullName')153 + #elseif ($column == 'doc.name') 154 154 #set ($link = 'view') 155 155 #elseif ($classPropertyType.endsWith('ListClass')) 156 156 #set($type = 'list') ... ... @@ -158,6 +158,8 @@ 158 158 #set($type = 'number') 159 159 #elseif ($classPropertyType.endsWith('PasswordClass')) 160 160 #set($sortable = false) 161 + #elseif ($classPropertyType.endsWith('TextAreaClass')) 162 + #set($html = true) 161 161 #end 162 162 #set ($columnValue = { 'type' : $type, 'link' : $link, 'html' : $html, 'sortable' : $sortable, 'displayName' : $displayName }) 163 163 #set ($discard = $columnsProperties.put($column, $columnValue)) ... ... @@ -179,6 +179,36 @@ 179 179 'tagCloud' : true, 180 180 'rowCount': 10 181 181 }) 184 +## Add a filter for subwikis 185 +#if ($xcontext.database != $xcontext.mainWikiName && "$!services.wiki" != '' && "$!services.wiki.user" != '') 186 + #set($userScope = $services.wiki.user.getUserScope($services.wiki.currentWikiId)) 187 + #if ($userScope == 'GLOBAL_ONLY') 188 + #set($discard = $options.put('extraParams', 'userScope=global')) 189 + #else 190 + #set($discard = $options.put('extraParams', 'userScope=local')) 191 + #end 192 + #if ($userScope == 'LOCAL_AND_GLOBAL') 193 + #set($discard = $xwiki.jsx.use('Main.UserDirectory')) 194 + 195 + {{html}} 196 + <form class="xform third" action=""> 197 + <dl> 198 + <dt> 199 + <label for="userScopeFilter">$services.localization.render('userdirectory.userScopeFilter')</label> 200 + <span class="xHint">$services.localization.render('userdirectory.userScopeFilter.hint')</span> 201 + </dt> 202 + <dd> 203 + <select name="userScope" id="userScopeFilter"> 204 + <option value="local">$services.localization.render('userdirectory.userScopeFilter.local')</option> 205 + <option value="global">$services.localization.render('userdirectory.userScopeFilter.global')</option> 206 + </select> 207 + </dd> 208 + </dl> 209 + </form> 210 + {{/html}} 211 + 212 + #end 213 +#end 182 182 #livetable('userdirectory' $columns $columnsProperties $options) 183 183 ## 184 184 ## Clean up any existing fake user from the current in-memory document to avoid side-effects
- XWiki.JavaScriptExtension[0]
-
- Caching policy
-
... ... @@ -1,0 +1,1 @@ 1 +long - Code
-
... ... @@ -1,0 +1,41 @@ 1 +(function(){ 2 + 3 + /** 4 + * Init 5 + */ 6 + function init() { 7 + var userScope = $('userScopeFilter'); 8 + if (userScope === null) { 9 + // Nothing to do 10 + return; 11 + } 12 + userScope.observe('change', onUserScopeChange); 13 + } 14 + 15 + function onUserScopeChange(event) { 16 + var value = $('userScopeFilter').value; 17 + var livetable = window["livetable_userdirectory"]; 18 + var url = livetable.getUrl; 19 + if (url.search("userScope=") >= 0) { 20 + // Replace the old value 21 + if (value == 'local') { 22 + url = url.replace("userScope=global", "userScope=local"); 23 + } else { 24 + url = url.replace("userScope=local", "userScope=global"); 25 + } 26 + } else { 27 + url = url + "&userScope=" + value; 28 + } 29 + livetable.getUrl = url; 30 + // Reload the livetable 31 + livetable.clearCache(); 32 + livetable.showRows(1, livetable.limit); 33 + } 34 + 35 + /** 36 + * Call Init 37 + */ 38 + (XWiki && XWiki.domIsLoaded && init()) || document.observe("xwiki:dom:loaded", init); 39 + 40 +})(); 41 + - Name
-
... ... @@ -1,0 +1,1 @@ 1 +Dynamic filter for user scope - Parse content
-
... ... @@ -1,0 +1,1 @@ 1 +No - Use this extension
-
... ... @@ -1,0 +1,1 @@ 1 +onDemand