|
From: Philipp H. <p-...@us...> - 2006-05-30 14:48:16
|
Update of /cvsroot/cobricks/cobricks2/web/ADMIN/org.cobricks.discussion In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv26797/web/ADMIN/org.cobricks.discussion Modified Files: index.html Log Message: discussion modul without input forms Index: index.html =================================================================== RCS file: /cvsroot/cobricks/cobricks2/web/ADMIN/org.cobricks.discussion/index.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- index.html 2 Mar 2006 21:24:43 -0000 1.1 +++ index.html 30 May 2006 14:48:06 -0000 1.2 @@ -1,14 +1,34 @@ +#parse ( "adminpageheader.html" ) -#parse ( "/ADMIN/pageheader.html" ) +#if ($returnCode == 1005) + <p><div class="success">Item annotation added.</div></p> +#elseif ($returnCode == 1006) + <p><div class="success">Item annotation removed.</div></p> +#elseif ($returnCode == 1007) + <p><div class="success">Item attachment added.</div></p> -<em><a href="/ADMIN/index.html">Admin</a> - -<a href="/ADMIN/org.cobricks.discussion/index.html">Discussion Component</a></em> +#end + +<em><a href="$contextPath/ADMIN/index.html">Admin</a> - +<a href="$contextPath/ADMIN/org.cobricks.discussion/index.html">Discussion Component</a></em> <h1>Discussion Component</h1> <h3>Version: $discussionManager.getComponentVersion()</h3> +<h3>Properties</h3> +<form action="/DISCUSSION" method="post"> +<input type="hidden" name="cmd" value="saveProperties"/> +<input type="hidden" name="cmd.success" value="/ADMIN/discussion/index.html"/> +<input type="hidden" name="cmd.error" value="/ADMIN/discussion/index.html"/> +<input type="hidden" name="cmd.noaccess" value="/noaccess.html"/> +<table> +#foreach ($table_line in $discussionPresenter.getAdminPropertiesForm()) + $table_line +#end +</table> +</form> -#parse ( "/ADMIN/pagefooter.html" ) +#parse ( "adminpagefooter.html" ) |