Annotation of ImageArchive/zpt/thumb2.zpt, revision 1.8

1.1       dwinter     1: <html>
                      2: <body>
1.5       dwinter     3: <span tal:replace="structure here/showFolders"/>
1.3       dwinter     4: <span tal:replace="structure here/showRuler"/> 
1.1       dwinter     5: 
1.3       dwinter     6: <table tal:define="colRows python:here.getColTimesRow(here.REQUEST.SESSION.get('showall','no'))">
1.6       dwinter     7: <tr tal:repeat="i python:here.show_thumbs_rows(colRows[0],numberOfRows=colRows[1],showall=here.REQUEST.SESSION.get('showall','no'))">
1.1       dwinter     8:   <td tal:repeat="thumb python:here.show_thumbs_columns(i,colRows[0])">
1.7       dwinter     9:    <a tal:attributes="id thumb;href python:here.REQUEST['URL1']+'?filename='+thumb +'&showall='+here.REQUEST.SESSION.get('showall','no')+'&generic='+here.REQUEST.get('generic','no')" target="_top">
1.4       dwinter    10:    <table>
                     11:    <tr><td>
                     12:        <span tal:replace="structure python:getattr(getattr(here,thumb),'thumb')()"/>
                     13:    </td></tr>
                     14:    <tr><td>
1.1       dwinter    15:    <span tal:replace="structure python:getattr(getattr(here,thumb),'title')"/>
1.4       dwinter    16:    </td></tr>
                     17:    
                     18:   </table>
1.1       dwinter    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>
1.8     ! dwinter    31: </html>

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