Annotation of OSAS/OSA_system/processViewerIndex.zpt, revision 1.2

1.1       dwinter     1: <html metal:use-macro="here/main_template/macros/page">
                      2:   <head>
                      3:     <title metal:fill-slot="title">Running Processes</title>
1.2     ! dwinter     4: <meta metal:fill-slot="meta" http-equiv="refresh" content="30; URL=/mpiwg/storage/processes" />
1.1       dwinter     5:   </head>
                      6:   <body metal:fill-slot="body" tal:define="check python:here.getoverview('/var/tmp/archiver')">
                      7: <h2>Last and ongoing archiving processes</h2>
1.2     ! dwinter     8: <table tal:define="retlist python:check.messages()">
        !             9: <div tal:omit-tag tal:repeat="ret retlist">
1.1       dwinter    10: <tr>
                     11: <td>
                     12: <span tal:replace="python:ret.getError()[0]"/>
                     13: </td>
                     14: <td>
                     15: <td tal:condition="python:ret.getError()[1][1]=='ok'">
                     16: <img src="images/ok.gif">
                     17: </td>
                     18: <td tal:condition="python:ret.getError()[1][1]=='error'">
                     19: <img src="images/fail.gif">
                     20: </td>
                     21: <td tal:condition="python:ret.getError()[1][1]=='running'">
                     22: <b>running</b>
                     23: </td>
                     24: <td>
1.2     ! dwinter    25: <!--<div tal:omit-tag tal:define="dummy python:here.storeFile(retlist)"/>
1.1       dwinter    26: 
1.2     ! dwinter    27: <p tal:replace="python:retlist"/>-->
        !            28: <a target="_blank" tal:attributes="href python:'view?number='+str(retlist.index(ret))">view status</a>
1.1       dwinter    29: </td>
                     30: </tr>
                     31: 
                     32:   
                     33:     </div>
                     34: </table>
                     35:    </body>
                     36: </html>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>