Wiki source code of $msg.get("xe.index.documents")

Version 4.1 by Administrator on 2012/10/25 09:42

Show last authors
1 {{velocity}}
2 #if((!$view) || ($view == ""))
3 #set($view = $request.getParameter("view"))
4 #if((!$view) || ($view == ""))
5 #set ($view = "index")
6 #end
7 #end
8
9 {{html}}
10 <div class="floatcontainer">
11 <ul class="xwikitabbar">
12 <li id="xwikiindex"#if($view == "index") class="active"#end><a href="$doc.getURL("view", "view=index&amp;$!param")">$msg.get("xe.index")</a></li>
13
14 <li id="xwikitreeview"#if($view == "tree") class="active"#end><a href="$doc.getURL("view", "view=tree&amp;$!param")">$msg.get("xe.index.tree")</a></li>
15 <li id="xwikiorphansview"#if($view == "orphans") class="active"#end><a href="$doc.getURL("view", "view=orphans&amp;$!param")">$msg.get("xe.index.orphaned")</a></li>
16 <li id="xwikiattachments"#if($view == "attachments") class="active"#end><a href="$doc.getURL("view", "view=attachments&amp;$!param")">$msg.get("xe.index.attachments")</a></li>
17
18 </ul>
19 </div>
20 <div class="xwikitabpanescontainer">
21
22 {{/html}}
23
24 ## ==============================================
25 ## If view=index then displays the index of pages
26 ## ==============================================
27 #if ($view == "index")
28 {{include document="XWiki.Tableview" /}}
29 #elseif ($view == "tree")
30 ## ==============================================
31 ## If view=tree then displays the treeview
32 ## ==============================================
33 {{include document="XWiki.Treeview" /}}
34 #elseif ($view == "attachments")
35 ## ==============================================
36 ## If view=attachments then display attachments
37 ## ==============================================
38 {{include document="XWiki.AllAttachments" /}}
39 #else
40 ## ==============================================
41 ## If view=orphans then display orphans
42 ## ==============================================
43 {{include document="XWiki.OrphanedPages" /}}
44 #end
45
46 {{html}}
47
48 </div>
49 {{/html}}
50 {{/velocity}}