Annotation of ImageArchive/zpt/thumbListMD.zpt, revision 1.1

1.1     ! dwinter     1: <html>
        !             2: <body>
        !             3: <span tal:replace="structure here/showFolders"/>
        !             4: <span tal:replace="structure here/showRuler"/> 
        !             5: 
        !             6: <table tal:define="colRows python:here.getColTimesRow(here.REQUEST.SESSION.get('showall','no'))">
        !             7: <tr tal:repeat="i python:here.show_thumbs_rows(colRows[0],numberOfRows=colRows[1])">
        !             8:   <td tal:repeat="thumb python:here.show_thumbs_columns(i,colRows[0])">
        !             9:    <a tal:attributes="id thumb;href python:here.REQUEST['URL1']+'?filename='+thumb" target="_top">
        !            10:    <table>
        !            11:    <tr><td>
        !            12:        <span tal:replace="structure python:getattr(getattr(here,thumb),'thumbMD')()"/>
        !            13:    </td></tr>
        !            14:    <tr><td>
        !            15:    <span tal:replace="structure python:getattr(getattr(here,thumb),'title')"/>
        !            16:    </td></tr>
        !            17:    
        !            18:   </table>
        !            19:    </a>
        !            20:    <span tal:condition="python:hasattr(getattr(here,thumb),'meta')">
        !            21:    <span tal:condition="not:python:getattr(here,thumb).getMeta()==None">
        !            22:    <br>
        !            23:    <a tal:attributes="href python:getattr(getattr(here,thumb),'getMeta')()" target="right">
        !            24:  Meta</a>
        !            25:    </span></span>
        !            26:   </td>
        !            27: </tr>
        !            28: </table>
        !            29: 
        !            30: </body>
        !            31: </html>

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