Annotation of ImageArchive/thumb2.zpt, revision 1.4

1.1       dwinter     1: <html>
                      2: <body>
1.4     ! dwinter     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])">
1.1       dwinter    11:    <a tal:attributes="id thumb;href python:here.absolute_url()+'?filename='+thumb" target="_top">
                     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>
1.2       dwinter    15:    <span tal:condition="python:hasattr(getattr(here,thumb),'meta')">
1.3       dwinter    16:    <span tal:condition="not:python:getattr(here,thumb).getMeta()==None">
1.2       dwinter    17:    <br>
                     18:    <a tal:attributes="href python:getattr(getattr(here,thumb),'getMeta')()" target="right">
                     19:  Meta</a>
1.3       dwinter    20:    </span></span>
1.1       dwinter    21:   </td>
                     22: </tr>
                     23: </table>
1.4     ! dwinter    24: 
1.1       dwinter    25: </body>
                     26: </html>

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