Update of /cvsroot/cobricks/cobricks2/web/portal
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26772/web/portal
Modified Files:
index.html.en wikihelp.html wiki.html.en
Removed Files:
wikipage-template.html
Log Message:
--- wikipage-template.html DELETED ---
Index: wiki.html.en
===================================================================
RCS file: /cvsroot/cobricks/cobricks2/web/portal/wiki.html.en,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- wiki.html.en 10 Aug 2005 13:38:06 -0000 1.1
+++ wiki.html.en 31 Jan 2006 20:13:48 -0000 1.2
@@ -9,8 +9,33 @@
<p>Using the item and portal components it is possible to provide "Wiki-like"
functionality. This page demonstrates this.</p>
-<p>TBD</p>
+<h2>Create Wiki pages</h2>
+<p>
+To create Wiki pages there are two possibilities. First you can use the
+<a href="/portal/create.html">Create new HTML page</a> Link, where you can
+choose, if should be created a HTML page or a Wiki page. Otherwise you can use
+<a href="/portal/createwiki.html">Create new Wiki page</a>, where only Wiki
+pages can be created.
+</p>
+<h2>List Wiki pages</h2>
+<p>
+To list all Wiki pages that were created on the platform you can use the
+<a href="/portal/listwiki.html">List Wiki pages</a> form.
+</p>
+
+<h2>Edit Wiki pages</h2>
+<p>
+To edit the content of a Wiki page you can use the
+<a href="/portal/edit.html">Edit form</a>. It is the same form which can
+be used to edit HTML pages. The parameter 'itemid' must be passed.
+</p>
+
+<h2>History of a Wiki page</h2>
+<p>
+The form <a href="/portal/historywiki.html">History Wiki</a> list the
+changes of the content for a Wiki page. The parameter 'itemid' must be passed.
+</p>
$portalPresenter.parse("$contextPath/pagefooter.html", $portalRequest)
Index: index.html.en
===================================================================
RCS file: /cvsroot/cobricks/cobricks2/web/portal/index.html.en,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- index.html.en 16 Jan 2006 09:26:54 -0000 1.7
+++ index.html.en 31 Jan 2006 20:13:48 -0000 1.8
@@ -37,8 +37,9 @@
<p>
</ul>
-<h3>Wiki Help</h3>
+<h3>Wiki</h3>
<ul>
+<li><a href="wiki.html">Overview</a>
<li><a href="wikihelp.html" target="_blank">Help for Wiki</a>
</ul>
Index: wikihelp.html
===================================================================
RCS file: /cvsroot/cobricks/cobricks2/web/portal/wikihelp.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- wikihelp.html 16 Jan 2006 09:26:54 -0000 1.1
+++ wikihelp.html 31 Jan 2006 20:13:48 -0000 1.2
@@ -143,4 +143,25 @@
</tr>
</table>
+<h2>Abbreviations</h2>
+
+<table border="1">
+ <tr>
+ <th>Commands to enter</th>
+ <th>What will be displayed</th>
+ </tr>
+
+#set ( $linkMap = $portalRequest.getLinkAbbreviations() )
+#set ( $keys = $linkMap.keySet() )
+#foreach($key in $keys)
+ <tr>
+ <td>$key</td>
+ <td>$linkMap.get($key)</td>
+ </tr>
+#end
+
+</table>
+
+
+
$portalPresenter.parse("$contextPath/pagefooter.html", $portalRequest)
|