Diff for /MPIWGWeb/zpt/Attic/editPublications.zpt between versions 1.1.2.9 and 1.1.2.14

version 1.1.2.9, 2007/04/18 10:03:12 version 1.1.2.14, 2008/08/27 21:08:40
Line 7 Line 7
 <tal:block metal:fill-slot="body"  <tal:block metal:fill-slot="body"
   tal:define="yes_no_list python:'yes\nno'; sortingMode python:'year\npriority'">    tal:define="yes_no_list python:'yes\nno'; sortingMode python:'year\npriority'">
   
   <h3><a href="addPublications">Add Publications to your list</a></h3>  
   <form action="changePublicationSelectionMode" method="post">  
   
   <h3>Select the 5 publications to be displayed in the first part of your homepage</h3>  
   <p>Choose the first 5 of my list following the order of</p>  
   <table tal:define="sm python:here.getPublicationSelectionMode()">  
     <tr tal:condition="python:sm=='priority'">  
       <td><span><input type="radio" name="publicationSelectionMode" value="year" />year</span>  
       <span><input checked type="radio" name="publicationSelectionMode" value="priority" />priority</span></td>  
       <td><input type="submit" value="change"></td>  
     </tr>  
     <tr tal:condition="not:python:sm=='priority'">  
       <td><span><input checked type="radio" name="publicationSelectionMode" value="year" />  
       year</span> <span><input type="radio" name="publicationSelectionMode"  
         value="priority" /> priority</span></td>  
       <td><input type="submit" value="change"></td>  
     </tr>  
   </table>  
   </form>  
   
   
   <h2>Publication list</h2>    <h2>Publication list</h2>
Line 44 Line 26
   </form>    </form>
   
   <form action="changePublications" method="post">    <form action="changePublications" method="post">
   <input type="hidden" name="key_main" tal:attributes="value person/key">    <input type="hidden" name="key_main" tal:attributes="value python:here.decode(person.key)">
   <input type="hidden" name="main_fields"    <input type="hidden" name="main_fields"
     value="publications__title,publications__publish">      value="publications__title,publications__publish">
   
   <tal:block    <tal:block
     tal:define="books python:here.ZSQLSimpleSearch('select *,oid from publications where lower(key_main)=\'%s\' and lower(referencetype)in (\'book\') and publish=\'yes\' order by priority'%here.getKey().lower());      tal:define="books python:here.ZSQLSimpleSearch('select *,oid from publications where lower(key_main)=\'%s\' and lower(referencetype)in (\'book\') and publish=\'yes\' order by priority'%here.getKey().lower());
                  edited_books python:here.ZSQLSimpleSearch('select *,oid from publications where lower(key_main)=\'%s\' and lower(referencetype)in (\'edited book\') and publish=\'yes\' order by priority'%here.getKey().lower());                   edited_books python:here.ZSQLSimpleSearch('select *,oid from publications where lower(key_main)=\'%s\' and lower(referencetype)in (\'edited book\') and publish=\'yes\' order by priority'%here.getKey().lower());
Line 67 Line 50
             tal:attributes="href python:'editBibliography?id=%s'%found.id_gen_bib">edit</a>              tal:attributes="href python:'editBibliography?id=%s'%found.id_gen_bib">edit</a>
           <a            <a
             tal:attributes="href python:'deleteField?table=publications&oid=%s'%found.oid">delete</a></td>              tal:attributes="href python:'deleteField?table=publications&oid=%s'%found.oid">delete</a></td>
           <td><span tal:replace="structure python:here.decode(here.formatBibliography(here,found))" /></td>            <td><span tal:replace="structure python:here.formatBibliography(here,here.decode(found))" /></td>
           <td valign="top"><input            <td valign="top"><input
             tal:attributes="name python:'publications__priority__'+str(found.oid);              tal:attributes="name python:'publications__priority__'+str(found.oid);
                      value python:here.integer(found.priority)"                       value python:here.integer(found.priority)"
Line 96 Line 79
             tal:attributes="href python:'editBibliography?id=%s'%found.id_gen_bib">edit</a>              tal:attributes="href python:'editBibliography?id=%s'%found.id_gen_bib">edit</a>
           <a            <a
             tal:attributes="href python:'deleteField?table=publications&oid=%s'%found.oid">delete</a></td>              tal:attributes="href python:'deleteField?table=publications&oid=%s'%found.oid">delete</a></td>
           <td><span tal:replace="structure python:here.decode(here.formatBibliography(here,found))" /></td>            <td><span tal:replace="structure python:here.formatBibliography(here,here.decode(found))" /></td>
           <td valign="top"><input            <td valign="top"><input
             tal:attributes="name python:'publications__priority__'+str(found.oid);              tal:attributes="name python:'publications__priority__'+str(found.oid);
                     value python:here.integer(found.priority)"                      value python:here.integer(found.priority)"
Line 125 Line 108
             tal:attributes="href python:'editBibliography?id=%s'%found.id_gen_bib">edit</a>              tal:attributes="href python:'editBibliography?id=%s'%found.id_gen_bib">edit</a>
           <a            <a
             tal:attributes="href python:'deleteField?table=publications&oid=%s'%found.oid">delete</a></td>              tal:attributes="href python:'deleteField?table=publications&oid=%s'%found.oid">delete</a></td>
           <td><span tal:replace="structure python:here.decode(here.formatBibliography(here,found))" /></td>            <td><span tal:replace="structure python:here.formatBibliography(here,here.decode(found))" /></td>
           <td valign="top"><input            <td valign="top"><input
             tal:attributes="name python:'publications__priority__'+str(found.oid);              tal:attributes="name python:'publications__priority__'+str(found.oid);
                      value python:here.integer(found.priority)"                       value python:here.integer(found.priority)"
Line 152 Line 135
       <tr tal:repeat="found python:here.sortBibliography(not_displayed)">        <tr tal:repeat="found python:here.sortBibliography(not_displayed)">
         <td><a          <td><a
           tal:attributes="href python:'deleteField?table=publications&oid=%s'%found.oid">delete</a></td>            tal:attributes="href python:'deleteField?table=publications&oid=%s'%found.oid">delete</a></td>
         <td><span tal:replace="structure python:here.decode(here.formatBibliography(here,found))" /></td>          <td><span tal:replace="structure python:here.formatBibliography(here,here.decode(found))" /></td>
         <td valign="top"><input          <td valign="top"><input
           tal:attributes="name python:'publications__priority__'+str(found.oid);            tal:attributes="name python:'publications__priority__'+str(found.oid);
                              value python:here.integer(found.priority)"                               value python:here.integer(found.priority)"
Line 170 Line 153
   </tal:block>    </tal:block>
   <input type="submit" value="change">    <input type="submit" value="change">
   </form>    </form>
   
   <br/> <br/> <br/> 
     
     <form action="changePublicationSelectionMode" method="post">
   
       <h3>Select the 5 publications to be displayed in the first part of your homepage</h3>
       <p>Choose the first 5 of my list following the order of</p>
       <table tal:define="sm python:here.getPublicationSelectionMode()">
         <tr tal:condition="python:sm=='priority'">
       <td><span><input type="radio" name="publicationSelectionMode" value="year" />year</span>
         <span><input checked type="radio" name="publicationSelectionMode" value="priority" />priority</span></td>
       <td><input type="submit" value="change"></td>
       </tr>
         <tr tal:condition="not:python:sm=='priority'">
       <td><span><input checked type="radio" name="publicationSelectionMode" value="year" />
           year</span> <span><input type="radio" name="publicationSelectionMode"
                        value="priority" /> priority</span></td>
       <td><input type="submit" value="change"></td>
       </tr>
         </table>
         </form>
         
         <br/><br/>
         <h3><a href="addPublicationsBib">Add Publications to your list</a></h3>
      <!--   <h4>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="addPublications">Add 
   entries from the Institutsbibliographie</a></h4>
         <h4>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="newBibliography">Add an entry that cannot be found in the 
   Institutsbibliographie</a></h4> -->
   
 </tal:block>  </tal:block>
 </body>  </body>
 </html>  </html>

Removed from v.1.1.2.9  
changed lines
  Added in v.1.1.2.14


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