General Actions:
Log-in
Register
Wiki:
Main wiki
▼
:
Document Index
»
Space:
Main
▼
:
Document Index
»
Page:
AllDocs
Search
en
Page Actions:
Export
▼
:
Export as PDF
Export as RTF
Export as HTML
More actions
▼
:
Print preview
View Source
Main wiki
»
Documents on this Wiki
Wiki source code of
Documents on this Wiki
Last modified by
Administrator
on 2012/03/21 17:40
Content
·
Comments
(0)
·
Annotations
(0)
·
Attachments
(0)
·
History
·
Information
Hide line numbers
1: {{velocity}} 2: ##================ 3: ## Find which tab to display 4: ##================ 5: #if("$!{view}" == '') 6: #set($view = $request.getParameter('view')) 7: #if("$!{view}" == '') 8: #set ($view = 'index') 9: #end 10: #end 11: ##======== 12: ## Set Tab Data 13: ##======== 14: #set ($tabs = [ 15: {'tabName' : 'index', 'idSuffix' : 'index', 'translationKey' : 'platform.index', 'document' : 'XWiki.Tableview'}, 16: {'tabName' : 'tree', 'idSuffix' : 'treeview', 'translationKey' : 'platform.index.tree', 'document' : 'XWiki.Treeview'}, 17: {'tabName' : 'orphans', 'idSuffix' : 'orphansview', 'translationKey' : 'platform.index.orphaned', 'document' : 'XWiki.OrphanedPages'}, 18: {'tabName' : 'attachments', 'idSuffix' : 'attachments', 'translationKey' : 'platform.index.attachments', 'document' : 'XWiki.AllAttachments'}, 19: {'tabName' : 'deletedDocs', 'idSuffix' : 'deletedDocs', 'translationKey' : 'platform.index.documentsTrash', 'document' : 'XWiki.DeletedDocuments'}, 20: {'tabName' : 'deletedAttachments', 'idSuffix' : 'deletedAttachments', 'translationKey' : 'platform.index.attachmentsTrash', 'document' : 'XWiki.DeletedAttachments'} 21: ]) 22: ##============================================= 23: ## Add External Links tab if the LinkChecker module is present. 24: ## TODO: In the future replace this hardcoded link with Interface Extensions 25: ##============================================= 26: #if($services.rendering.defaultTransformationNames.contains('linkchecker') && $services.linkchecker) 27: #set ($dummy = $tabs.add({'tabName' : 'externalLinks', 'idSuffix' : 'externalLinks', 'translationKey' : 'platform.linkchecker.indexTab', 'document' : 'XWiki.ExternalLinks'})) 28: #end 29: ##=========== 30: ## Display the Tabs 31: ##=========== 32: {{html}} 33: <div class="floatcontainer"> 34: <ul class="xwikitabbar"> 35: #foreach ($tab in $tabs) 36: <li id="xwiki$tab['idSuffix']"#if($view == $tab['tabName']) class="active"#end><a href="$doc.getURL('view', "view=$tab['tabName']&$!param")">$msg.get($tab['translationKey'])</a></li> 37: #end 38: </ul> 39: </div> 40: {{/html}} 41: 42: ##========================== 43: ## Include the Tab data for the selected Tab 44: ##========================== 45: {{html wiki="true"}} 46: <div class='xwikitabpanescontainer'> 47: #foreach ($tab in $tabs) 48: #if ($tab['tabName'] == $view) 49: {{include document="$tab['document']"/}} 50: #break 51: #end 52: #end 53: </div> 54: {{/html}} 55: {{/velocity}}