Diff for /basket/zpt/BasketFolder_template_standard.zpt between versions 1.8 and 1.9

version 1.8, 2006/04/06 16:49:14 version 1.9, 2006/04/07 17:44:40
Line 10  td.vario { background-color:#AC1D15 } Line 10  td.vario { background-color:#AC1D15 }
 <!-- span = bodytext -->  <!-- span = bodytext -->
 <span metal:fill-slot="body" tal:omit-tag="">  <span metal:fill-slot="body" tal:omit-tag="">
   
 <tal:block tal:define="authorized python:here.checkPermission('authorized')">  <tal:block tal:define="authorized python:here.checkPermission('authorized') or
       options.get('mode', 'open') == 'open'; global listEmpty python:1">
   
 <tal:block tal:condition="authorized">  <tal:block tal:condition="authorized">
     <h2 tal:define="mode python: options.get('mode', 'open')"><span       <h3 tal:define="global mode python: options.get('mode', 'open')"><span 
         tal:condition="python: mode == 'private'"           tal:condition="python: mode == 'private'" 
         tal:replace="python:'My '" /><span           tal:replace="python:'My '" /><span 
         tal:condition="python: mode == 'open_intern'"           tal:condition="python: mode == 'open_intern'" 
Line 22  td.vario { background-color:#AC1D15 } Line 23  td.vario { background-color:#AC1D15 }
         tal:replace="python:'Public '" />Sets          tal:replace="python:'Public '" />Sets
     <span tal:condition="python:here.checkPermission('edit') and mode != 'open_intern'">      <span tal:condition="python:here.checkPermission('edit') and mode != 'open_intern'">
         <a class="editLink" tal:attributes="          <a class="editLink" tal:attributes="
             href python:'manageBasketFolder?mode=%s'%mode"> | Edit overview</a></span></h2>              href python:'manageBasketFolder?mode=%s'%mode"> |&nbsp;Edit overview</a></span></h3>
       
       <p><span 
           tal:condition="python: mode == 'private'"
           tal:replace="structure python: 'This is a list of all your sets, including the sets of other users you have the permission to work on as an editor or administrator.'"/><span 
           tal:condition="python: mode == 'open_intern'" 
           tal:replace="structure python: 'Browse through the sets of other registered users. To include one of your sets you must change the access rights on its management page to <i>open_intern</i>.'"/><span 
           tal:condition="python: mode == 'open'" 
           tal:replace="structure python: 'These sets are thematic compilations of objects created by collaborators of the <i>Virtual Laboratory</i>.'"/>  </p><br>
           
     <tal:block tal:repeat="item python:here.getSets(mode=options.get('mode', 'open'))">      <tal:block tal:repeat="item python:here.getSets(mode=options.get('mode', 'open'))">
         <hr>          <hr tal:define="global listEmpty python:0">
         <a class="setTitle" tal:attributes="href item/absolute_url" tal:content="item/title"/>          <a class="setTitle" tal:attributes="href item/absolute_url" tal:content="item/title"/>
           <i class="small" tal:condition="python: 
               here.getActualUserName() != item.owner and mode == 'private'" tal:content="python:' [shared set]'" />
         <div class="TOC" tal:content="structure item/shortDescription"/>          <div class="TOC" tal:content="structure item/shortDescription"/>
     </tal:block>      </tal:block>
           
       <form tal:condition="python: listEmpty and mode == 'private'" action="setFolder/addBasket">
           There are no sets for your account.<br>Create a new set with title <input size="20" name="title"><input type="submit" value="add">
       </form>
       
 </tal:block>  </tal:block>
   
 <tal:block tal:condition="not: authorized">  <tal:block tal:condition="not: authorized">
 log in message  <h3>Private Page</h3>
   
   <p>We are sorry, but only registered users may access this page,<br>
   please <a href="users">log in</a> to view it.</p>
   
   <p>Not yet registered? <a href="register.html">Sign up</a> for a free account.</p><br><br>
   
   <p>You may find some thematic sets of objects compiled by collaborators <br>
   of the <i>Virtual Laboratory</i> in the <a href="?mode=open">Public Sets</a> section.</p>
 </tal:block>  </tal:block>
   
 </tal:block>  </tal:block>

Removed from v.1.8  
changed lines
  Added in v.1.9


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