Annotation of externalVersionedFile/zpt/selectDiff.zpt, revision 1.1.1.1

1.1       dwinter     1: <html>
                      2:   <h2>Select files for diff in - <span tal:content="here/title"/></h2>
                      3:   <p>Select two files for diff</p>
                      4: 
                      5: <form action="showDiffs" method="post">
                      6:   <table  width="100%" border=0 cellspacing=1 cellpadding=2>
                      7:     <tr>
                      8:       <th>select</th>
                      9:       <th align=left bgcolor="#88ff88">File</th>
                     10:       <th align=left bgcolor="#cccccc">
                     11:    <a href="">Rev.</a>
                     12:       </th>
                     13:       <th align=left bgcolor="#cccccc">
                     14:    <a href="">Date</a>
                     15:       </th>
                     16:       <th align=left bgcolor="#cccccc">
                     17:    <a href="">Author</a>
                     18:       </th>
                     19:       <th align=left bgcolor="#cccccc">
                     20:    <a href="">Log entry</a>
                     21:       </th>
                     22:       <th align=left bgcolor="#cccccc">
                     23:    <a href="">Download</a>
                     24:       </th>
                     25:       <th align=left bgcolor="#cccccc">
                     26:    <a href="">Downl. and Lock</a>
                     27:       </th>
                     28:     </tr>
                     29:     <tr tal:repeat="version python:here.getVersions()">
                     30:        <td><input type="checkbox" name="fileList" tal:attributes="value python:version[1].getId()"></td>
                     31:    <td tal:content="python:version[1].title"/>
                     32:    <td tal:content="python:version[1].versionNumber"/>
                     33:    <td tal:content="python:version[1].getTime()"/>
                     34:    <td tal:content="python:version[1].lastEditor()"/>
                     35:    <td tal:content="python:version[1].versionComment"/>
                     36:    <td><a tal:attributes="href python:version[1].absolute_url()">download</a></td>
                     37:    <td tal:condition="python:here.lockedBy==''"><a tal:attributes="href python:here.REQUEST['URL1']+'/'+version[1].getId()+'/downloadLocked'">download and lock</a></td>
                     38:    <td tal:condition="not:python:here.lockedBy==''"><a>locked</a></td>
                     39:    
                     40:       </tr>
                     41:    </table>
                     42:    <input type="submit" value="submit">
                     43: </form>
                     44: </html>

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