Diff for /cdli/zpt/viewCDLIFile.zpt between versions 1.3 and 1.11

version 1.3, 2006/06/18 12:05:21 version 1.11, 2008/01/21 17:19:01
Line 1 Line 1
 <html metal:use-macro="here/main_template/macros/page">  <html metal:use-macro="here/main_template/macros/page">
   <tal:block metal:fill-slot="body">      <tal:block metal:fill-slot="body" define="query python:here.REQUEST.QUERY_STRING;
                                                 vars python:query.split('&');
                                                 allVars python:map(lambda x: x.split('='), vars);
                                                 allVarsF python:filter(lambda x: not x == [''], allVars);
                                                 dictVars python:dict(allVarsF);
                                                 parent here/aq_parent;
                                                 gparent parent/aq_parent;
                                                 p_no python:here.REQUEST.get('fileId',here.aq_parent.title.split('.')[0])">
     
           <p tal:condition="not:python:dictVars.has_key('fromBasket')">
                <a tal:attributes="href gparent/absolute_url" tal:content="string:up to folder ${gparent/getId}"/>
           </p>
   
   <h2>Textdisplay</h2>    <h2>Textdisplay</h2>
   <p><a tal:content="python:'back(%s)'%here.aq_parent.aq_parent.title" tal:attributes="href python:here.aq_parent.aq_parent.absolute_url()"/></p>  
   <p>File Name: <span tal:replace="here/title"/> (version <span tal:replace="here/versionNumber"/>)</p>          <p>
   <a tal:attributes="href python:here.absolute_url()">download</a>            <a tal:attributes="href string:http://cdli.mpiwg-berlin.mpg.de/ID/$p_no" target="_blank">View database entry</a>
           </p>
           <p>
             <a tal:attributes="href parent/absolute_url" >View file history</a>
           </p>
       
           <tal:block condition="python:dictVars.has_key('fromBasket')">
               <tal:block define="basket python:here.getBasketFromId(dictVars['fromBasket'],context=here.cdliRoot.basketContainer)">
                   <p tal:condition="basket">
                       <a tal:content="python:'back to basket ('+basket.title+')'" tal:attributes="href python:basket.getLastVersion().absolute_url()"/>
                   </p>
                   <p tal:condition="not:basket">
                       <a tal:content="python:'back(%s)'%here.aq_parent.aq_parent.title" tal:attributes="href python:here.aq_parent.aq_parent.absolute_url()"/>
                   </p>
               </tal:block>
           </tal:block>
             
           <p>File Name: <span tal:replace="here/getId"/> (version <span tal:replace="here/versionNumber"/>)</p>
           <p tal:condition="python:dictVars.has_key('fromBasket') and dictVars.has_key('filenr')">
               <tal:block define="basket python:here.getBasketFromId(dictVars['fromBasket'],context=here.cdliRoot.basketContainer).getLastVersion();
                          files python:basket.getLastVersion().getContent();
                          index python:dictVars['filenr'];">
                   <span tal:omit-tag="" tal:condition="python: int(index) > 0">
                       <a tal:define="file python:files[int(index)-1]" tal:attributes="href python:basket.getObjUrl(file) + '/' + basket.getFileLastVersion(file).getId() + '/view?fromBasket='+dictVars['fromBasket']+'&filenr='+str(int(index)-1)">previous file</a>&nbsp;&nbsp;&nbsp;&nbsp;
                   </span>
                   <span tal:omit-tag="" tal:condition="python: int(index) < len(files)-1">
                       <a tal:define="file python:files[int(index)+1]" tal:attributes="href python:basket.getObjUrl(file) + '/' + basket.getFileLastVersion(file).getId() + '/view?fromBasket='+dictVars['fromBasket']+'&filenr='+str(int(index)+1)">next file</a>
                   </span>
               
               </tal:block>
           </p>
           <a tal:attributes="href python:here.absolute_url()">download</a>&nbsp;&nbsp;&nbsp;&nbsp;
   <a tal:condition="python:here.lockedBy==''" tal:attributes="href python:here.REQUEST['URL1']+'/downloadLocked'">download and lock</a>    <a tal:condition="python:here.lockedBy==''" tal:attributes="href python:here.REQUEST['URL1']+'/downloadLocked'">download and lock</a>
   <a tal:condition="not:python:here.lockedBy==''">locked</a>          <a tal:condition="not:python:here.lockedBy==''">locked</a>&nbsp;&nbsp;&nbsp;&nbsp;
   <a tal:condition="python:here.lockedBy==''" tal:attributes="href python:here.REQUEST['URL1']+'/'+'/addCDLIFileObjectForm'">Upload New Version</a>          <a tal:condition="python:here.lockedBy==''" tal:attributes="href python:here.REQUEST['URL1']+'/addCDLIFileObjectForm'">upload new version</a>&nbsp;&nbsp;&nbsp;&nbsp;
           <a tal:condition="python:here.lockedBy==''" tal:attributes="href python:here.REQUEST['URL1']+'/editATF'">edit in browser</a>
   <tal:block tal:condition="not:python:here.lockedBy==''">    <tal:block tal:condition="not:python:here.lockedBy==''">
       <b tal:attributes="href python:here.REQUEST['URL1']+'/addCDLIFileObjectForm'">Locked by: <span tal:replace="here/lockedBy"/></b>&nbsp;<a tal:attributes="href python:here.REQUEST['URL2']+'/unlock'">unlock</a>              <b tal:attributes="href python:here.REQUEST['URL1']+'/addCDLIFileObjectForm'">Locked by: <span tal:replace="here/lockedBy"/></b>&nbsp;&nbsp;&nbsp;&nbsp;<a tal:attributes="href python:here.REQUEST['URL2']+'/unlock'">unlock</a>
  </tal:block>   </tal:block>
   <pre tal:content="here/data"/>          <pre class="atf_file" tal:content="here/getFormattedData"/>
   </tal:block>    </tal:block>
  </html>   </html>
   

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


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