Wiki source code of AllDocs

Last modified by Admin on 2008/12/08 08:19

Show last authors
1 1 Documents on this Wiki
2 #if((!$view) || ($view == ""))
3 #set($view = $request.getParameter("view"))
4 #if((!$view) || ($view == ""))
5 #set ($view = "index")
6 #end
7 #end
8 <div class="floatcontainer">
9 <ul class="xwikitabbar">
10 <li id="xwikiindex"#if($view == "index") class="active"#end><a href="$doc.getURL("view", "view=index&amp;$!param")">Index</a></li>
11 <li id="xwikitreeview"#if($view == "tree") class="active"#end><a href="$doc.getURL("view", "view=tree&amp;$!param")">Tree</a></li>
12 <li id="xwikiorphansview"#if($view == "orphans") class="active"#end><a href="$doc.getURL("view", "view=orphans&amp;$!param")">Orphaned Pages</a></li>
13 <li id="xwikiattachments"#if($view == "attachments") class="active"#end><a href="$doc.getURL("view", "view=attachments&amp;$!param")">Attachments</a></li>
14 </ul>
15 </div>
16 <div id="xwikieditcontent" class="clear">
17 ## ==============================================
18 ## If view=index then displays the index of pages
19 ## ==============================================
20 #if ($view == "index")
21 #includeTopic("XWiki.Tableview")
22 #elseif ($view == "tree")
23 ## ==============================================
24 ## If view=tree then displays the treeview
25 ## ==============================================
26 #includeTopic("XWiki.Treeview")
27 #elseif ($view == "attachments")
28 ## ==============================================
29 ## If view=attachments then display attachments
30 ## ==============================================
31 #includeTopic("XWiki.AllAttachments")
32 #else
33 ## ==============================================
34 ## If view=orphans then display orphans
35 ## ==============================================
36 #includeTopic("XWiki.OrphanedPages")
37 #end
38 </div>