Changes for page Pages on this Wiki

Last modified by Thomas Mortagne on 2015/11/23 12:21

From version 7.1
edited by Thomas Mortagne
on 2013/05/08 15:09
Change comment: Imported from XAR
To version 11.1
edited by Thomas Mortagne
on 2015/11/23 12:21
Change comment: Install extension [org.xwiki.platform:xwiki-platform-index-ui-7.3]

Summary

Details

Page properties
Content
... ... @@ -13,13 +13,15 @@
13 13  ##========
14 14  #set($tabs = [])
15 15  #macro(addAllDocsTab $tab)
16 - #if($xwiki.hasAccessLevel('view', "$!context.user", $tab.get('document')))
16 + #if($xwiki.hasAccessLevel('view', "$!xcontext.user", $tab.get('document')))
17 17   #set($discard = $tabs.add($tab))
18 18   #end
19 19  #end
20 20  #addAllDocsTab({'tabName' : 'index', 'idSuffix' : 'index', 'translationKey' : 'platform.index', 'document' : 'XWiki.Tableview'})
21 21  #addAllDocsTab({'tabName' : 'tree', 'idSuffix' : 'treeview', 'translationKey' : 'platform.index.tree', 'document' : 'XWiki.Treeview'})
22 -#addAllDocsTab({'tabName' : 'orphans', 'idSuffix' : 'orphansview', 'translationKey' : 'platform.index.orphaned', 'document' : 'XWiki.OrphanedPages'})
22 +#if ($services.parentchild.isParentChildMechanismEnabled())
23 + #addAllDocsTab({'tabName' : 'orphans', 'idSuffix' : 'orphansview', 'translationKey' : 'platform.index.orphaned', 'document' : 'XWiki.OrphanedPages'})
24 +#end
23 23  #addAllDocsTab({'tabName' : 'attachments', 'idSuffix' : 'attachments', 'translationKey' : 'platform.index.attachments', 'document' : 'XWiki.AllAttachments'})
24 24  #addAllDocsTab({'tabName' : 'deletedDocs', 'idSuffix' : 'deletedDocs', 'translationKey' : 'platform.index.documentsTrash', 'document' : 'XWiki.DeletedDocuments'})
25 25  #addAllDocsTab({'tabName' : 'deletedAttachments', 'idSuffix' : 'deletedAttachments', 'translationKey' : 'platform.index.attachmentsTrash', 'document' : 'XWiki.DeletedAttachments'})
... ... @@ -50,10 +50,11 @@
50 50  <div class='xwikitabpanescontainer'>
51 51  #foreach ($tab in $tabs)
52 52   #if ($tab['tabName'] == $view)
53 - {{include document="$tab['document']"/}}
55 + {{include reference="$tab['document']"/}}
54 54   #break
55 55   #end
56 56  #end
57 57  </div>
58 58  {{/html}}
61 +#set($docextras=[])
59 59  {{/velocity}}