From: Nick J. <nje...@us...> - 2002-01-27 02:40:00
|
Update of /cvsroot/sandweb/sandweb/templates In directory usw-pr-cvs1:/tmp/cvs-serv6628/templates Modified Files: browse.html Log Message: * working on multi-module settings and management of repositories/module, at a good stopping point for the moment but not everything will work. Index: browse.html =================================================================== RCS file: /cvsroot/sandweb/sandweb/templates/browse.html,v retrieving revision 1.57 retrieving revision 1.58 diff -U2 -r1.57 -r1.58 --- browse.html 2002/01/27 02:05:52 1.57 +++ browse.html 2002/01/27 02:39:57 1.58 @@ -3,11 +3,11 @@ <table width="100%" align="left" border="0"> <tr> - <td width="100%" align="center" colspan="2"> + <td width="100%" align="center"> <table width="100%" align="left" border="0"> <tr> - <td width="80%" align="center"> + <td width="90%" align="center"> <b>Please select a module to browse.</b><br> </td> - <td width="20%" align="center"> + <td width="10%" align="center">   </td> @@ -15,5 +15,7 @@ <tr> <td width="80%" align="center" bgcolor="#CCCCCC"> - <a href="sandweb.cgi?action=module_checkout_menu">checkout a module</a> | <a href="sandweb.cgi?action=repository_settings_menu&repository_name=new">create a new repository</a> + <a href="sandweb.cgi?action=module_checkout_menu">checkout a module</a> +   |   + <a href="sandweb.cgi?action=repository_settings_menu&repository_name=new">add a new repository</a> </td> <td width="20%" align="center"> @@ -25,18 +27,44 @@ </tr> <tr> - <td width="100%" align="left" colspan="2"> + <td width="100%" align="left"> <TMPL_VAR NAME="NO_MODULES"><br> </td> </tr> -<TMPL_LOOP NAME="MODULE_LOOP"> <tr> - <td width="40%" align="left"> -   <a href="sandweb.cgi?action=browse_repository_menu&repository_name=<TMPL_VAR NAME="MODULE_NAME">"><TMPL_VAR NAME="MODULE_NAME"></a> - </td> - <td width="60%" align="left"> -   <font size="2">[<a href="sandweb.cgi?action=repository_settings_menu&repository_name=<TMPL_VAR NAME="MODULE_NAME">">modify</a>]</font> + <td width="100%" align="left"> + <table width="100%" align="left" border="1"> + <tr> + <td width="20%" align="center" bgcolor="#CCCCCC"> + Module Name + </td> + <td width="40%" align="center" bgcolor="#CCCCCC"> + Description + </td> + <td width="25%" align="center" bgcolor="#CCCCCC"> + Repository + </td> + <td width="15%" align="center" bgcolor="#CCCCCC"> + Function + </td> + </tr> + <TMPL_LOOP NAME="MODULE_LOOP"> + <tr> + <td width="20%" align="left"> +   <a href="sandweb.cgi?action=browse_module_menu&module_name=<TMPL_VAR NAME="MODULE_NAME">"><TMPL_VAR NAME="MODULE_NAME"></a> + </td> + <td width="40%" align="left"> +   <TMPL_VAR NAME="MODULE_DESC"> + </td> + <td width="25%" align="center"> + <TMPL_VAR NAME="REPOSITORY"> + </td> + <td width="15%" align="center"> +   <font size="2">[<a href="sandweb.cgi?action=module_delete_menu&module_name=<TMPL_VAR NAME="MODULE_NAME">">delete</a>]</font> + </td> + </tr> + </TMPL_LOOP> + </table> </td> </tr> -</TMPL_LOOP> </table> </form> |