view zpt/staff/pubman/show_publications.zpt @ 110:b554becd8226

Incomplete - # 74: More Link auf den pers?nlichne Homepages https://it-dev.mpiwg-berlin.mpg.de/tracs/webpage/ticket/74
author dwinter
date Tue, 28 May 2013 09:47:43 +0200
parents f4ac675b2031
children 11b7f98c7ed1
line wrap: on
line source

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
	  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" metal:use-macro="here/main_template/macros/page">
<head>
<tal:block metal:fill-slot="head">
</tal:block>
</head>
<body>
  <div class="center" metal:fill-slot="center">

    <h1>
      <span tal:replace="python:options['member'].title" /> <span tal:replace="python:options['member'].first_name" /> <span
        tal:replace="python:options['member'].last_name" />
    </h1>

    <p>
      <a tal:attributes="href string:$root/$section/members/${here/getId}">main entry</a>
    </p>

    <h2>Selected publications</h2>
    
    <tal:block
      tal:define="
			     books python:here.getPublicationsFromPubman(publicationType='http://purl.org/eprint/type/Book',limit=15);
			     book_article python:here.getPublicationsFromPubman(publicationType='http://purl.org/eprint/type/BookItem',limit=15);
			     articles python:here.getPublicationsFromPubman(publicationType='http://purl.org/escidoc/metadata/ves/publication-types/article',limit=30);
				">

      <tal:block>
        <h3>Books</h3>
        <ul class="plain">
          <li class="reference" tal:repeat="book books"><a tal:attributes="href python:'http://pubman.mpiwg-berlin.mpg.de/pubman/faces/viewItemFullPage.jsp?itemId='+book[0]"><span
                tal:replace="structure python:book[1]" /> </a>
          </li>
        </ul>
      </tal:block>

      <tal:block>
        <h3>Book Chapters</h3>
        <ul class="plain">
          <li class="reference" tal:repeat="book book_article"><a tal:attributes="href python:'http://pubman.mpiwg-berlin.mpg.de/pubman/faces/viewItemFullPage.jsp?itemId='+book[0]"><span
                tal:replace="structure python:book[1]" /></a>
          </li>
        </ul>
      </tal:block>

      <tal:block>
        <h3>Articles</h3>
        <ul class="plain">
          <li class="reference" tal:repeat="book articles"><a tal:attributes="href python:'http://pubman.mpiwg-berlin.mpg.de/pubman/faces/viewItemFullPage.jsp?itemId='+book[0]"><span
                tal:replace="structure python:book[1]" /> </a>
          </li>
        </ul>
      </tal:block>

    </tal:block>

    <!--
        <p> 
	  <a href="/institutsbiblio/FMPro?-db=personal-www&amp;-max=1&amp;-Lay=ALL&amp;-format=search_inst_bib.html&amp;ID=[FMP-Field: ID]&amp;-Error=null.html&amp;-find" target="_new"> 
              search the institute's bibliography </a>
 -->
<div class="item external">
        <a target="_blank" tal:attributes="href python:options['member'].getConeId()"> More publications on PubMan</a>
     </div>
  </div>
   
</body>
</html>