From: Florian G. <re...@us...> - 2007-09-28 21:53:16
|
Update of /cvsroot/perfparse/_perfparse-phpgui/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11373/phpgui/templates Modified Files: select_metric.tpl.html show_effective_del_policies.tpl.html Log Message: some cosmetic changes and a little work on the php interface Index: show_effective_del_policies.tpl.html =================================================================== RCS file: /cvsroot/perfparse/_perfparse-phpgui/templates/show_effective_del_policies.tpl.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** show_effective_del_policies.tpl.html 6 Sep 2007 22:59:51 -0000 1.2 --- show_effective_del_policies.tpl.html 28 Sep 2007 21:53:16 -0000 1.3 *************** *** 110,113 **** --- 110,114 ---- <tr><td> <select name="group_id"> + <option value="-1"><{tr}>Unassigned<{/tr}></option> <{foreach from=$groupinfos key=gid item=gname}> <option value="<{$gid}>"><{$gname}></option> *************** *** 195,201 **** <table width=600 border=1 cellpadding=5 cellspacing=0 bgcolor="#CCCCCC"><tr><td> <table width="100%" border=0 cellpadding=0 cellspacing=0> ! ! ! </table></td></tr></table></p> <{/if}> --- 196,216 ---- <table width=600 border=1 cellpadding=5 cellspacing=0 bgcolor="#CCCCCC"><tr><td> <table width="100%" border=0 cellpadding=0 cellspacing=0> ! <tr><td><b><{tr}>Service<{/tr}></b></td><td><b><{tr}>Raw deletion policy<{/tr}></b></td> ! <td><b><{tr}>Effective raw deletion policy<{/tr}></b></td> ! <td><b><{tr}>Metric<{/tr}></b></td><td><b><{tr}>Bin deletion policy<{/tr}></b></td> ! <td><b><{tr}>Effective bin deletion policy<{/tr}></b></td> ! </tr> ! <{foreach from=$metricsinfos key=serviceid item=servicearray}> ! <tr> ! <td rowspan="<{$servicearray.count_metrics}>"><{$servicearray.service_description}></td> ! <td rowspan="<{$servicearray.count_metrics}>">todo</td> ! <td rowspan="<{$servicearray.count_metrics}>">todo</td> ! <{foreach from=$servicearray.metrics key=metricid item=metric}> ! <td><{$metric}></td> ! <td>todo</td> ! <td>todo</td> ! </tr> ! <{/foreach}> ! <{/foreach}> </table></td></tr></table></p> <{/if}> Index: select_metric.tpl.html =================================================================== RCS file: /cvsroot/perfparse/_perfparse-phpgui/templates/select_metric.tpl.html,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** select_metric.tpl.html 14 Sep 2006 09:15:29 -0000 1.9 --- select_metric.tpl.html 28 Sep 2007 21:53:16 -0000 1.10 *************** *** 69,78 **** <table width="100%" border=1 cellpadding=5 cellspacing=0 bgcolor="#FFFFFF"> <tr> ! <{foreach from=$metric key=metricid item=metricname}> ! <{if $metricid != "service_description"}> <td><font face="Arial, Helvetica" size=2> <input type="checkbox" name="graphs[<{$metricid}>][display]" value="true" id="<{$metric.service_description}>_<{$metricname}>" onclick="javascript:UncheckMetricSwitch(this,'all_<{$metric.service_description}>_<{$metricname}>')"/><{$metricname}> </td> - <{/if}> <{/foreach}> </tr></table> --- 69,76 ---- <table width="100%" border=1 cellpadding=5 cellspacing=0 bgcolor="#FFFFFF"> <tr> ! <{foreach from=$metric.metrics key=metricid item=metricname}> <td><font face="Arial, Helvetica" size=2> <input type="checkbox" name="graphs[<{$metricid}>][display]" value="true" id="<{$metric.service_description}>_<{$metricname}>" onclick="javascript:UncheckMetricSwitch(this,'all_<{$metric.service_description}>_<{$metricname}>')"/><{$metricname}> </td> <{/foreach}> </tr></table> |