Wiki source code of AllDocs

Last modified by Administrator on 2008/04/21 13:35

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 </ul>
14 </div>
15 <div id="xwikieditcontent" class="clear">
16 ## ==============================================
17 ## If view=index then displays the index of pages
18 ## ==============================================
19 #if ($view == "index")
20 #includeTopic("XWiki.Tableview")
21 #elseif ($view == "tree")
22 ## ==============================================
23 ## If view=tree then displays the treeview
24 ## ==============================================
25 #includeTopic("XWiki.Treeview")
26 #else
27 ## ==============================================
28 ## If view=orphans then display orphaned pages
29 ## ==============================================
30 #includeTopic("XWiki.OrphanedPages")
31 #end
32 </div>