Annotation of MPIWGWeb/zpt/harvest_members_main.zpt, revision 1.1.2.1

1.1.2.1 ! dwinter     1: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
        !             2:         "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
        !             3: <html>
        !             4:   <body>
        !             5: 
        !             6: <div class="haupttext">
        !             7:      <p>&nbsp;</p>
        !             8:     <tal:block tal:define="found python:here.ZSQLInlineSearch(_table='personal_www',username=here.getId(),publish_the_data='yes')[0]">
        !             9:      
        !            10: 
        !            11:       <tal:block tal:define="founds2 python:here.ZSQLInlineSearch(_table='current_work',id_main=found.id,publish='yes')" tal:condition="founds2">  
        !            12:    <h1>Current work</h1>
        !            13: 
        !            14:      <p class="fliesstext" tal:repeat="found2 founds2">
        !            15:        <span tal:replace="found2/current"/>
        !            16:      </p>
        !            17: 
        !            18:       </tal:block>
        !            19: 
        !            20:       <tal:block tal:define="founds2 python:here.ZSQLInlineSearch(_table='research_interest',id_main=found.id,published='yes')" tal:condition="founds2">   
        !            21:    <h1>Research interests</h1>
        !            22:    <ul class="liste">
        !            23:      <li tal:repeat="found2 founds2">
        !            24:        <span tal:replace="found2/interest"/>
        !            25:      </li>
        !            26:    </ul>
        !            27:       </tal:block>
        !            28:       <tal:block tal:condition="python:here.getProjectsOfMember(email=here.getId())">
        !            29: 
        !            30: <!-- Projects -->
        !            31:    <h1>Projects</h1>
        !            32:    <ul class="liste"  tal:repeat="projects python:here.getProjectsOfMember(email=here.getId())">
        !            33:      <tal:block tal:repeat="project python:projects[1]">
        !            34:       <li tal:condition="python:here.isActual(project)"> <a tal:attributes="href python:project.absolute_url+'/index.html'"><span tal:replace="python:project.WEB_title[0].encode('utf-8')"/></a>
        !            35:      </li>
        !            36:       </tal:block>
        !            37:    </ul>
        !            38:       </tal:block>
        !            39:     
        !            40: 
        !            41: <!-- Curriculum vitae -->  
        !            42:       <tal:block tal:condition="not:python:here.ZSQLisEmpty(found.cv)">
        !            43:    <h1>Curriculum vitae</h1>
        !            44:    <p class="fliesstext" tal:content="structure python:here.formatAscii(found.cv)"> [FMP-Field: CV] </p>
        !            45:       </tal:block>
        !            46: 
        !            47: <!-- Awards -->  
        !            48:       <tal:block tal:condition="not:python:here.ZSQLisEmpty(found.awards)">
        !            49:    <h1>Awards</h1>
        !            50:    <p class="fliesstext"  tal:content="structure python:here.formatAscii(found.awards)"> [FMP-Field: awards, break] </p>
        !            51:       </tal:block>
        !            52: 
        !            53: <!-- Selected publications -->
        !            54:      <tal:block tal:condition="here/usePublicationsSpecial|python:False">  
        !            55:      <h1>Selected publications</h1>
        !            56:    <ul class="liste">
        !            57:         <tal:block tal:replace="structure here/specialPublicationsField"/>
        !            58:      <li>
        !            59:        <a tal:attributes="href python:'publications_full?-table=personal_www&amp;id='+found.id">more</a> 
        !            60:      </li>
        !            61:    </ul>
        !            62:       </tal:block>
        !            63: 
        !            64:       <tal:block tal:condition="not:here/usePublicationsSpecial|python:False">  
        !            65:       <tal:block tal:condition="python:here.ZSQLInlineSearch(storename='search3',_table='publications',id_main=found.id,_max=10000,publish='yes')">
        !            66:    <h1>Selected publications</h1>
        !            67: 
        !            68:    <ul class="liste">
        !            69:      <li tal:repeat="found3 python:here.sortBibliography(here.ZSQLInlineSearch(storename='search3',_table='publications',id_main=found.id,_max=10000,publish='yes'),here.getPublicationSelectionMode())">
        !            70:        <span tal:replace="structure python:here.formatBibliography(here,found3)"/>
        !            71:      </li>
        !            72:      <li tal:condition="python:here.ZSQLFoundCount(storename='search3')>5">
        !            73:        <a tal:attributes="href python:'publications_full?-table=personal_www&amp;id='+found.id">more</a> 
        !            74:      </li>
        !            75:    </ul>
        !            76:       </tal:block>
        !            77:       </tal:block>
        !            78: <!-- Talks -->  
        !            79:       <tal:block tal:define="founds4 python:here.ZSQLInlineSearch(storename='search4',_table='talks',id_main=found.id,_max=10000,_sort='priority',published='yes')" tal:condition="founds4">
        !            80:    <h1>Talks and presentations</h1>
        !            81:    <ul class="liste">
        !            82:      <li tal:repeat="found4 python:here.sortPriority(founds4)">
        !            83:        <span tal:condition="not:python:here.ZSQLisEmpty(found4.link)">
        !            84:          <a tal:attributes="href found4/link"><span tal:replace="found4/date"/> &#150; <span tal:replace="found4/place"/> &#150; <span tal:replace="found4/title"/></a>
        !            85:        </span>
        !            86:        <span tal:condition="python:here.ZSQLisEmpty(found4.link)">
        !            87:          <span tal:replace="found4/date"/> &#150; <span tal:replace="found4/place"/> &#150; <span tal:replace="found4/title"/>
        !            88:        </span>
        !            89:      </li>
        !            90:      <li tal:condition="python:here.ZSQLFoundCount(storename='search4')>5">
        !            91:        <a tal:attributes="href python:'talks_full?-table=personal_www&amp;id='+found.id">more</a>
        !            92:      </li>
        !            93:    </ul>
        !            94:       </tal:block>
        !            95: 
        !            96: <!-- >Teaching activities -->  
        !            97:       <tal:block tal:define="founds5 python:here.ZSQLInlineSearch(storename='search5',_table='teaching',id_main=found.id,_max=1000,_sort='priority')" tal:condition="founds5">
        !            98:    <h1>Teaching activities</h1>
        !            99:    <ul class="liste">
        !           100:      <li tal:repeat="found5 python:here.sortPriority(founds5)">
        !           101:        <span tal:condition="not:python:here.ZSQLisEmpty(found5.link)"> 
        !           102:          <a tal:attributes="href found5/link"><span tal:replace="found5/date"/> &#150; <span tal:replace="found5/place"/> &#150; <span tal:replace="found5/title"/>
        !           103:          </a>
        !           104:        </span>
        !           105:             <span tal:condition="python:here.ZSQLisEmpty(found5.link)">
        !           106:        <span tal:replace="found5/date"/> &#150; <span tal:replace="found5/place"/> &#150; <span tal:replace="found5/title"/>
        !           107:        </span>
        !           108:      </li>
        !           109:      <li tal:condition="python:here.ZSQLFoundCount(storename='search5')>5" class="p_indent"><a tal:attributes="href python:'teaching_full?-table=personal_www&amp;id='+found.id">more</a>
        !           110:      </li>
        !           111:    </ul>
        !           112:       </tal:block>
        !           113:     </tal:block>
        !           114: </div>
        !           115:   </body>
        !           116: </html>

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