File:  [Repository] / cdli / zpt / BasketVersionMain.zpt
Revision 1.5: download - view: text, annotated - select for diffs - revision graph
Sun Mar 19 03:27:21 2006 UTC (18 years, 2 months ago) by dwinter
Branches: MAIN
CVS tags: HEAD
bug fixes and some new features

<html metal:use-macro="here/main_template/macros/page">
 <tal:block metal:fill-slot="body" tal:define="results  here/getContent;
                    start request/start|python:0;
                    batch python:modules['ZTUtils'].Batch(results, 
                                                          size=20, 
                                                          start=start);
                    previous python:batch.previous;
                    next python:batch.next">

  <h2>Basket: <span tal:replace="python:here.aq_parent.title"/></h2>
  <p>contains <span tal:replace="here/numberOfItems"/> items
  <a tal:attributes="href python:here.aq_parent.absolute_url()+'/history'">View history</a>
  </p>
  <p><a tal:attributes="href python:here.getId()+'/downloadObjectsAsOneFile'"> download basket (combined in one file)</a>
 <p><a tal:attributes="href python:here.getId()+'/downloadObjectsAsOneFile?lock=yes'"> download basket and lock all files(combined in one file)</a>
 <p><a tal:attributes="href python:here.basketContainer.absolute_url()+'/uploadBasket_html'"> upload a basket </a>
 <p>red = basket refers to a not actual version</p>
 <p>red and DEL = file has been deleted</p>
  <p>
    <a tal:condition="previous"
       tal:attributes="href string:${request/URL0}?start:int=${previous/first}"
       href="previous_url">previous <span tal:replace="previous/length">20</span> results</a>
    <a tal:condition="next"
       tal:attributes="href string:${request/URL0}?start:int=${next/first}"
       href="next_url">next <span tal:replace="next/length">20</span> results</a>
  </p>
 <form action="deleteObjects">
 <table  width="100%" border=0 cellspacing=1 cellpadding=2>
    <tr>
      <th align=left bgcolor="#88ff88">
      <a href="?sortField=title"> File</a>
      </th>
      <th align=left bgcolor="#88ff88">
      <a> Designation</a>
      </th>
      
      <th align=left bgcolor="#00">
	<a>Rev.</a>
      </th>
      <th align=left bgcolor="#cccccc">
	<a href="?sortField=date">Date</a>
      </th>
      <th align=left bgcolor="#cccccc">
	<a href="?sortField=author">Author</a>
      </th>
      <th align=left bgcolor="#cccccc">
	<a >Last log entry</a>
      </th>
      <th align=left bgcolor="#cccccc" width="80">
	<a href="?sortField=comment">Comment</a>
      </th>
      <th align=left bgcolor="#cccccc">
	<a>Download<br><font size="-1"><a tal:attributes="href python:here.absolute_url()+'/helpDownload'" target="help">(help)</a></font></a>
      </th>
      <th align=left bgcolor="#cccccc">
	<a>Downl. and lock</a>
      </th>
      <th align=left bgcolor="#cccccc">
	<a>Upload</a>
      </th>
      <th>
      C
      </th>
    </tr>
       
  <tal:x repeat="result batch">
   <tal:x tal:define="version python:here.getFile(result);lastVersion python:here.getFileLastVersion(result);actual python:here.isActual(result)">
    <tr tal:attributes="class python:test(actual[0],'actual','old')">
	<td><input type="checkbox" tal:attributes="value version/getId" name="ids">
		<tal:x condition="python:actual[1]==-1">DEL</tal:x>   <a tal:content="python:version.getTitle()" tal:attributes="href python:here.getObjUrl(result)+
		   '/'+lastVersion.getId()+'/view'"/>
    </td>
    <td>
		   <span tal:content="lastVersion/getDesignation"/>
     </td>
	<td>
	<span tal:replace="lastVersion/getVersionNumber"/>
	<font size="-1"><a tal:attributes="href python:here.getObjUrl(result)+'/history'">(history)</a></font>
	</td>
	<td tal:content="lastVersion/getTime"/>
	<td tal:content="lastVersion/lastEditor"/>
	<td tal:content="lastVersion/getVersionComment"/>
        <td><a tal:attributes="href python:here.getObjUrl(result)+'/manageVCommentForm'"><small tal:content="python:lastVersion.getVComment()"/></a></td>
        <!--<td><a tal:attributes="href python:version.absolute_url()+'/manageCommentForm'"><small tal:content="python:version.getComment()"/></a></td>-->
	<td><a tal:attributes="href python:here.getObjUrl(result)">download</a></td>
	
	<td tal:condition="python:version.lockedBy==''"><a tal:attributes="href python:here.getObjUrl(result)+'/downloadLocked'">download and lock</a></td>
	<td tal:condition="not:python:version.lockedBy==''"><a>locked</a></td>
	
	<td tal:condition="python:version.lockedBy==''"><a tal:attributes="href python:here.getObjUrl(result)+'/'+version.title+'/addCDLIFileObjectForm'">Upload New Version</a></td>
	<td tal:condition="not:python:version.lockedBy==''">
	  <b tal:attributes="href python:here.getObjUrl(result)+'/addCDLIFileObjectForm'">Locked by: <span tal:replace="version/lockedBy"/></b>&nbsp;
	  <a tal:attributes="href python:here.getObjUrl(result)+'/unlock'">unlock</a>
	</td>
	<td>
	 <a tal:repeat="collection python:version.isContainedInBaskets(context=here)" tal:content="collection/title"
	 tal:attributes="href python:collection.getLastVersion().absolute_url()"/>	</td>
   </tr>
    </tal:x>
  </tal:x>

  </table>
  <p>
    <a tal:condition="previous"
       tal:attributes="href string:${request/URL0}?start:int=${previous/first}"
       href="previous_url">previous <span tal:replace="previous/length">20</span> results</a>
    <a tal:condition="next"
       tal:attributes="href string:${request/URL0}?start:int=${next/first}"
       href="next_url">next <span tal:replace="next/length">20</span> results</a>
  </p>
<input type="submit" value="delete from basket">
</tal:block>
</html>

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