Changes for page XWiki User Class
Last modified by Admin on 2024/05/31 10:45
Summary
-
Page properties (2 modified, 0 added, 0 removed)
-
Objects (0 modified, 2 added, 0 removed)
-
Class properties (1 modified, 5 added, 0 removed)
Details
- Page properties
-
- Title
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki User Class - Hidden
-
... ... @@ -1,1 +1,1 @@ 1 - false1 +true
- XWiki.ClassSheetBinding[0]
-
- Sheet
-
... ... @@ -1,0 +1,1 @@ 1 +XWikiUserSheet
- XWiki.DocumentSheetBinding[0]
-
- Sheet
-
... ... @@ -1,0 +1,1 @@ 1 +ClassSheet
- accessibility
-
- Number
-
... ... @@ -1,0 +1,1 @@ 1 +24 - Display Type
-
... ... @@ -1,0 +1,1 @@ 1 +yesno - Pretty Name
-
... ... @@ -1,0 +1,1 @@ 1 +Enable extra accessibility features - Name
-
... ... @@ -1,0 +1,1 @@ 1 +accessibility - Display Form Type
-
... ... @@ -1,0 +1,1 @@ 1 +select
- address
-
- Number
-
... ... @@ -1,0 +1,1 @@ 1 +23 - Size
-
... ... @@ -1,0 +1,1 @@ 1 +40 - Pretty Name
-
... ... @@ -1,0 +1,1 @@ 1 +Address - Name
-
... ... @@ -1,0 +1,1 @@ 1 +address - Rows
-
... ... @@ -1,0 +1,1 @@ 1 +3
- displayHiddenDocuments
-
- Number
-
... ... @@ -1,0 +1,1 @@ 1 +25 - Display Type
-
... ... @@ -1,0 +1,1 @@ 1 +yesno - Pretty Name
-
... ... @@ -1,0 +1,1 @@ 1 +Display Hidden Documents - Name
-
... ... @@ -1,0 +1,1 @@ 1 +displayHiddenDocuments - Display Form Type
-
... ... @@ -1,0 +1,1 @@ 1 +select
-
- Custom Display
-
... ... @@ -1,0 +1,12 @@ 1 +{{velocity}} 2 +#if ($xcontext.action == 'edit' || $xcontext.action == 'inline') 3 + {{html}}<input id='$prefix$name' type='text' name='$prefix$name' value='$value' />{{/html}} 4 +#else 5 + ## Allow $obfuscateEmail to be set in some other place. 6 + #if("$obfuscateEmail" == 'false') 7 + $value 8 + #else 9 + $value.replaceAll('@.*', '@ xxxxxx') 10 + #end 11 +#end 12 +{{/velocity}}
- phone
-
- Number
-
... ... @@ -1,0 +1,1 @@ 1 +22 - Size
-
... ... @@ -1,0 +1,1 @@ 1 +30 - Pretty Name
-
... ... @@ -1,0 +1,1 @@ 1 +Phone - Name
-
... ... @@ -1,0 +1,1 @@ 1 +phone
- timezone
-
- Number
-
... ... @@ -1,0 +1,1 @@ 1 +26 - Size
-
... ... @@ -1,0 +1,1 @@ 1 +30 - Pretty Name
-
... ... @@ -1,0 +1,1 @@ 1 +Timezone - Name
-
... ... @@ -1,0 +1,1 @@ 1 +timezone - Custom Display
-
... ... @@ -1,0 +1,19 @@ 1 +{{velocity}} 2 +#if ($xcontext.action == 'inline' || $xcontext.action == 'edit') 3 + {{html}} 4 + #if($xwiki.jodatime) 5 + <select id='$prefix$name' name='$prefix$name'> 6 + <option value="" #if($value == $tz)selected="selected"#end>$msg.get('XWiki.XWikiPreferences_timezone_default')</option> 7 + #foreach($tz in $xwiki.jodatime.getServerTimezone().getAvailableIDs()) 8 + <option value="$tz" #if($value == $tz)selected="selected"#end>$tz</option> 9 + #end 10 + </select> 11 + #else 12 + <input id='$prefix$name' name='$prefix$name' type="text" value="$!value"/> 13 + #end 14 + {{/html}} 15 +#else 16 + $value 17 +#end 18 +{{/velocity}} 19 +