[Comoblog-commit] comoblog/admin/templates manage_modules.tpl.htm,1.2,1.3
Status: Inactive
Brought to you by:
markwallis
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-11-13 12:35:36
|
Update of /cvsroot/comoblog/comoblog/admin/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31904/admin/templates Modified Files: manage_modules.tpl.htm Log Message: CORE: Introduce a new module versioning framework to allow us to track module compatability during install and upgrade Index: manage_modules.tpl.htm =================================================================== RCS file: /cvsroot/comoblog/comoblog/admin/templates/manage_modules.tpl.htm,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- manage_modules.tpl.htm 2 Sep 2005 01:06:15 -0000 1.2 +++ manage_modules.tpl.htm 13 Nov 2005 12:35:27 -0000 1.3 @@ -1,8 +1,6 @@ <!-- BEGIN: main --> {FILE "templates/header.tpl.htm"} - - <!-- BEGIN: installed --> <br /> <table width="760" align="center" border="0" cellspacing="0" cellpadding="10" style="border: 3px solid #cccccc; background-color: #efefef"> @@ -24,6 +22,24 @@ <br /> <!-- END: installed --> +<!-- BEGIN: failed --> +<br /> +<table width="760" align="center" border="0" cellspacing="0" cellpadding="10" style="border: 3px solid #cccccc; background-color: #efefef"> + <tr> + <td valign="top" width="50"><img src="img/1.gif" width="48" height="48" border="0" align="absmiddle"></td> + <td valign="top" width="710"> + <b>SOME MODULES FAILED TO INSTALL:</b><br /> + <ul> + <!-- BEGIN: module --> + <li>{MOD_NAME} - {ERROR}</li> + <!-- END: module --> + </ul> + </td> + </tr> +</table> +<br /> +<!-- END: failed--> + <table width="760" align="center" border="0" cellspacing="0" cellpadding="0"> <tr> <td valign="middle"><p><img src="img/modules.gif" border="0" align="absmiddle"> <b>MANAGE INSTALLED MODULES</b></p></td> @@ -32,24 +48,29 @@ <form action="{ACTION}" method="POST" enctype="multipart/form-data"> <!-- BEGIN: modules --> <br /> -<table width="760" align="center" border="0" cellspacing="0" cellpadding="5" style="border-width:1px; border-color: #000000; border-style: solid;"> +<table width="740" align="center" border="0" cellspacing="0" cellpadding="5" style="border-width:1px; border-color: #000000; border-style: solid;"> <tr height="1"> - <td><img src="../../img/1x1.gif" width="200" height="1"></td> + <td><img src="../../img/1x1.gif" width="140" height="1"></td> + <td><img src="../../img/1x1.gif" width=30 height="1"></td> <td><img src="../../img/1x1.gif" width="310" height="1"></td> <td><img src="../../img/1x1.gif" width="150" height="1"></td> <td><img src="../../img/1x1.gif" width="50" height="1"></td> <td><img src="../../img/1x1.gif" width="50" height="1"></td> + <td><img src="../../img/1x1.gif" width="10" height="1"</td> </tr> <tr> - <td width="200" valign="top" style="border-bottom:1px solid black;"><b>MODULE</b></td> + <td width="140" valign="top" style="border-bottom:1px solid black;"><b>MODULE</b></td> + <td width="30" valign="top" style="border-bottom:1px solid black;"><b>VERSION</b></td> <td width="310" valign="top" style="border-bottom:1px solid black;"><b>DESCRIPTION</b></td> <td width="150" valign="top" style="border-bottom:1px solid black;" align="center"><b>CHANGE POSITION / ACTIVATION STATUS</b></td> <td colspan="2" width="100" valign="top" style="border-bottom:1px solid black;" align="center"><b>CHANGE DISPLAY ORDER</b></td> + <td valign="top" width="10" style="border-bottom:1px solid black;" align="center"></td> </tr> <!-- BEGIN: module --> <input type="hidden" name="mod_id_{COUNTER}" value="{MODULE.mod_id}"> <tr bgcolor="{BGCOLOR}"<!-- BEGIN: updated --> style="background-color: #ffff99"<!-- END: updated -->> <td valign="top"><b>{MODULE.mod_name}</b></td> + <td valign="top"><b>{MODULE.mod_version}</b></td> <td valign="top">{MODULE.mod_description}</td> <td valign="top" align="center"> <select name="mod_pos_{COUNTER}" style="width:150px"> @@ -62,6 +83,8 @@ <a href="module_order.php?i={MODULE.mod_id}&d=down" title="move down"><img src="img/move_down.gif" border="0" alt="move down"></a> <!-- END: down --></td> <td width="50" align="center"><!-- BEGIN: up --> <a href="module_order.php?i={MODULE.mod_id}&d=up" title="move up"><img src="img/move_up.gif" border="0" alt="move up"></a><!-- END: up --> + <td><!-- BEGIN: uncertified --> + <img src='img/warning.gif'><!-- END: uncertified --> </td> </tr> @@ -73,7 +96,14 @@ <td align="right"><br /><input type="image" src="img/save_big.gif" border="0" onClick="this.src='img/save_wait.gif';"> </td> </tr> </table> - +<!-- BEGIN: uncertified_warning --> +<br><br> +<table width="760" border="0" align="center" border="0" cellspacing="0" cellpadding="0"> + <tr> + <td align="center"><br /><img src='img/warning.gif'> - WARNING: This module is not certified against this version of CoMoblog. It may not function correctly.</td> + </tr> +</table> +<!-- END: uncertified_warning --> </form> {FILE "templates/footer.tpl.htm"} -<!-- END: main --> \ No newline at end of file +<!-- END: main --> |