Annotation of OSAS/OSA_system/archiveSelected.zpt, revision 1.1

1.1     ! dwinter     1: <html metal:use-macro="here/main_template/macros/page">
        !             2:   <head>
        !             3:     <title metal:fill-slot="title">Archive</title>
        !             4:   </head>
        !             5:   <body>
        !             6:    <div tal:omit-tag metal:fill-slot="nav_title">
        !             7: <div tal:omit-tag metal:define-macro="navigation">
        !             8: 
        !             9: Archiving
        !            10: <p><a class="map" href="processes">Show archiving processes</a></p>
        !            11: 
        !            12: 
        !            13:    </div>
        !            14: </div>
        !            15:    <div metal:fill-slot="body">
        !            16:     <h2>First Step:Checking Metafiles</h2> 
        !            17: 
        !            18: 
        !            19: 
        !            20: <span tal:define="global i python:0">
        !            21: <table  tal:define="check python:here.metachecker(here.REQUEST['path'])">
        !            22: <tr tal:repeat="ret python:check.messages()">
        !            23: <td tal:define="global i python:i+1">
        !            24: <span tal:replace="python:ret.getError()[0]"/>
        !            25: </td>
        !            26: <td>
        !            27: <td tal:condition="python:ret.getError()[1][1]=='ok'">
        !            28: <img src="images/ok.gif">
        !            29: </td>
        !            30: <td tal:condition="python:ret.getError()[1][1]=='error'">
        !            31: <img src="images/fail.gif">
        !            32: <a href="errors" tal:attributes="href python:here.storeerror(ret,here.REQUEST['path'],here,i)">(view errors)</a>
        !            33: </td>
        !            34: 
        !            35: </tr>
        !            36: </table>
        !            37: </span>
        !            38: 
        !            39: <h2>Second step: Archiving</h2>
        !            40: <p><a tal:attributes="href python:'archiver?path='+here.REQUEST['path']">Click here for archiving</a></p>
        !            41: 
        !            42: 
        !            43: </div>
        !            44:   </body>
        !            45: </html>

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