Diff for /OSAS/OSA_system/Attic/archiveSelected.zpt between versions 1.1 and 1.3

version 1.1, 2003/12/18 17:22:29 version 1.3, 2004/01/09 12:47:05
Line 26  Archiving Line 26  Archiving
 <td>  <td>
 <td tal:condition="python:ret.getError()[1][1]=='ok'">  <td tal:condition="python:ret.getError()[1][1]=='ok'">
 <img src="images/ok.gif">  <img src="images/ok.gif">
   <a href="errors" tal:attributes="href python:here.storeerror(ret,here.REQUEST.SESSION['path'],here,i)">(view result)</a>
 </td>  </td>
 <td tal:condition="python:ret.getError()[1][1]=='error'">  <td tal:condition="python:ret.getError()[1][1]=='error'">
 <img src="images/fail.gif">  <img src="images/fail.gif">
Line 37  Archiving Line 38  Archiving
 </span>  </span>
   
 <h2>Second step: Archiving</h2>  <h2>Second step: Archiving</h2>
 <p><a tal:attributes="href python:'archiver?path='+here.REQUEST['path']">Click here for archiving</a></p>  <form tal:condition="python:here.isArray(here.REQUEST['path'])" action="archiver" method="post">
   <input tal:repeat="path python:here.REQUEST['path']" type="hidden" name="path" tal:attributes="value path">
   <input type="submit" value="Click here for archiving">
   </form>
   
   <form tal:condition="not:python:here.isArray(here.REQUEST['path'])" action="archiver" method="post">
   <input type="hidden" name="path" tal:attributes="value python:here.REQUEST['path']">
   <input type="submit" value="Click here for archiving">
   </form>
   
   <!--<p><a tal:attributes="href python:'archiver?path='+here.REQUEST['path']">Click here for archiving</a></p>-->
   
   
 </div>  </div>

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


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