Diff for /versionedFile/zpt/addComment.zpt between versions 1.1 and 1.2

version 1.1, 2005/02/24 17:13:27 version 1.2, 2005/03/21 08:12:46
Line 1 Line 1
 <html>  <html>
 <body>  <body>
   <h2>General comment to all versions</h2>
 <form method="post" action="manageComment">  <form method="post" action="manageComment">
 <h2>Modify/View the file comment for <span tal:content="here/title"/>.</h2>  <h3>Modify/View the file comment for <span tal:content="here/title"/>.</h3>
 <p tal:condition="python:getattr(here,'comment',None)">  <p tal:condition="python:getattr(here,'comment',None)">
 Comment was modified by <span tal:replace="python:getattr(here,'comment_author','unknown')"/>. </p>  Comment was modified by <span tal:replace="python:getattr(here,'comment_author','unknown')"/>. </p>
 Comment:<br>  Comment:<br>
Line 9  Comment:<br> Line 10  Comment:<br>
 <input type="text" name="comment_author" tal:attributes="value python:here.REQUEST.get('AUTHENTICATED_USER','unknown')"><br>  <input type="text" name="comment_author" tal:attributes="value python:here.REQUEST.get('AUTHENTICATED_USER','unknown')"><br>
 <input type="submit" name="submit" value="do not change"> <input type="submit" name="submit" value="change">  <input type="submit" name="submit" value="do not change"> <input type="submit" name="submit" value="change">
 </form>  </form>
   <h2>Comments to single versions</h2>
   <table>
     <tr>
       <td>Version</td>
       <td>Comment</td>
     </tr>
     <tr tal:repeat="version python:here.getVersions()">
       <td tal:content="python:version[1].versionNumber"/>
       <td><a tal:attributes="href python:version[1].absolute_url()+'/manageVCommentForm'"><small tal:content="python:version[1].getVComment()"/></a></td>
     </tr>
   </table>
 </body>  </body>
 </html>  </html>

Removed from v.1.1  
changed lines
  Added in v.1.2


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