view zpt/staff/pubman/show_publications.zpt @ 47:225179dfd892

getPublications erweitert nach Typ ausserdem erh?lt man jetzt auch einzelne Publicationen nach escidoc:id
author dwinter
date Mon, 29 Apr 2013 16:01:24 +0200
parents
children a6ace48c2bf2
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.getPublications(publicationType='http://purl.org/eprint/type/Book');
			     book_article python:here.getPublications(publicationType='http://purl.org/eprint/type/BookItem');
			     articles python:here.getPublications(publicationType='http://purl.org/escidoc/metadata/ves/publication-types/article');
				">
       
        <tal:block >
          <h3>Books</h3>
          <ul class="publicationlist">
	    <li tal:repeat="found3 books">
	     <span>
	    <a tal:attributes="href python:''"><span tal:replace="structure python:found3[1]"/>
            </a>
	  </span>
	
            </li>
          </ul>
        </tal:block>

        <tal:block >
          <h3>Book Chapters</h3>
	  <ul class="publicationlist">
	   <li tal:repeat="found3 book_article">
	     <span >
	    <a tal:attributes="href python:''"><span tal:replace="structure python:found3[1]"/></a>
	  </span>
	
            </li>
          </ul>
        </tal:block>

        <tal:block>
	  <h3>Articles</h3>
	  <ul class="publicationlist">
	    <li tal:repeat="found3 articles">
	     <span ">
	    <a tal:attributes="href python:''"><span tal:replace="structure python:found3[1]"/>
            </a>
	  </span>
	  
            </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>
  </body>
</html>