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

1.1     ! dwinter     1: <html>
        !             2: <body>
        !             3: <span tal:replace="structure here/firstSets"/> 
        !             4: <span tal:replace="structure here/prevSets"/> 
        !             5: <span tal:replace="structure here/nextSets"/>
        !             6: <span tal:replace="structure here/lastSets"/> 
        !             7: 
        !             8: <table tal:define="colRows python:here.getColTimesRow()">
        !             9: <tr tal:repeat="i python:here.show_thumbs_rows(colRows[0],numberOfRows=colRows[1])">
        !            10:   <td tal:repeat="thumb python:here.show_thumbs_columns(i,colRows[0])">
        !            11:    <a tal:attributes="id thumb;href python:'./zogilib?fn='+here.ImageViewerPath+'/'+thumb" target="digilib">
        !            12:    <span tal:replace="structure python:getattr(getattr(here,thumb),'thumb')()"/><br/>
        !            13:    <span tal:replace="structure python:getattr(getattr(here,thumb),'title')"/>
        !            14:    </a>
        !            15:    <span tal:condition="python:hasattr(getattr(here,thumb),'meta')">
        !            16:    <span tal:condition="not:python:getattr(here,thumb).getMeta()==None">
        !            17:    <br>
        !            18:    <a tal:attributes="href python:getattr(getattr(here,thumb),'getMeta')()" target="right">
        !            19:  Meta</a>
        !            20:    </span></span>
        !            21:   </td>
        !            22: </tr>
        !            23: </table>
        !            24: 
        !            25: </body>
        !            26: </html>

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