File:  [Repository] / externalVersionedFile / zpt / selectDiff.zpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Mon Oct 25 10:00:25 2004 UTC (19 years, 6 months ago) by dwinter
Branches: dwinter, MAIN
CVS tags: first, HEAD
new

<html>
  <h2>Select files for diff in - <span tal:content="here/title"/></h2>
  <p>Select two files for diff</p>

<form action="showDiffs" method="post">
  <table  width="100%" border=0 cellspacing=1 cellpadding=2>
    <tr>
      <th>select</th>
      <th align=left bgcolor="#88ff88">File</th>
      <th align=left bgcolor="#cccccc">
	<a href="">Rev.</a>
      </th>
      <th align=left bgcolor="#cccccc">
	<a href="">Date</a>
      </th>
      <th align=left bgcolor="#cccccc">
	<a href="">Author</a>
      </th>
      <th align=left bgcolor="#cccccc">
	<a href="">Log entry</a>
      </th>
      <th align=left bgcolor="#cccccc">
	<a href="">Download</a>
      </th>
      <th align=left bgcolor="#cccccc">
	<a href="">Downl. and Lock</a>
      </th>
    </tr>
    <tr tal:repeat="version python:here.getVersions()">
    	<td><input type="checkbox" name="fileList" tal:attributes="value python:version[1].getId()"></td>
	<td tal:content="python:version[1].title"/>
	<td tal:content="python:version[1].versionNumber"/>
	<td tal:content="python:version[1].getTime()"/>
	<td tal:content="python:version[1].lastEditor()"/>
	<td tal:content="python:version[1].versionComment"/>
	<td><a tal:attributes="href python:version[1].absolute_url()">download</a></td>
	<td tal:condition="python:here.lockedBy==''"><a tal:attributes="href python:here.REQUEST['URL1']+'/'+version[1].getId()+'/downloadLocked'">download and lock</a></td>
	<td tal:condition="not:python:here.lockedBy==''"><a>locked</a></td>
	
      </tr>
   </table>
   <input type="submit" value="submit">
</form>
</html>

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