comparison zpt/project/pubman/show_publications.zpt @ 138:78cd6d661a13

with book pages etc..
author dwinter
date Fri, 31 May 2013 16:59:43 +0200
parents e424b68244c8
children
comparison
equal deleted inserted replaced
136:63e1c1c06fb3 138:78cd6d661a13
48 <tal:block tal:define="publications here/getAdditionalPublicationList;"> 48 <tal:block tal:define="publications here/getAdditionalPublicationList;">
49 <tal:x define="publicationsSorted python:here.mpiwgPubman.getEntriesFromPubman(publications)"> 49 <tal:x define="publicationsSorted python:here.mpiwgPubman.getEntriesFromPubman(publications)">
50 <h2>Books</h2> 50 <h2>Books</h2>
51 <ul class="publicationlist"> 51 <ul class="publicationlist">
52 <li tal:repeat="found3 python:publicationsSorted['book'] "><a 52 <li tal:repeat="found3 python:publicationsSorted['book'] "><a
53 tal:attributes="href python:'http://pubman.mpiwg-berlin.mpg.de/pubman/faces/viewItemFullPage.jsp?itemId='+found3[0]" 53 tal:attributes="href python:'http://pubman.mpiwg-berlin.mpg.de/pubman/faces/viewItemFullPage.jsp?itemId='+found3['escidocId']"
54 tal:content="structure python:found3[1]" /></li> 54 tal:content="structure python:found3['citation']" />
55 <div tal:condition="python:found3['bookId'] is not None"><a class="internal" tal:attributes="href python:'/en/resources/publications/'+here.getBookLinkFromID(found3['bookId'])">Book page</a></div>
56 <div tal:repeat="ident python:found3['linksIdentifier']"><a class="external" tal:attributes="href ident">See also</a></div>
57 <div tal:repeat="ident python:found3['linksLocator']"><a class="external" tal:attributes="href python:ident[1]" tal:content="python:ident[0]">See also:</a></div>
58 </li>
59
55 </ul> 60 </ul>
56 <h2>Chapters</h2> 61 <h2>Chapters</h2>
57 <ul class="publicationlist"> 62 <ul class="publicationlist">
58 <li tal:repeat="found3 python:publicationsSorted['book-item']"><a 63 <li tal:repeat="found3 python:publicationsSorted['book-item']"><a
59 tal:attributes="href python:'http://pubman.mpiwg-berlin.mpg.de/pubman/faces/viewItemFullPage.jsp?itemId='+found3[0]" 64 tal:attributes="href python:'http://pubman.mpiwg-berlin.mpg.de/pubman/faces/viewItemFullPage.jsp?itemId='+found3['escidocId']"
60 tal:content="structure python:found3[1]" /></li> 65 tal:content="structure python:found3['citation']" />
66 <div tal:condition="python:found3['bookId'] is not None"><a class="internal" tal:attributes="href python:'/en/resources/publications/'+here.getBookLinkFromID(found3['bookId'])">Book page</a></div>
67 <div tal:repeat="ident python:found3['linksIdentifier']"><a class="external" tal:attributes="href ident">See also</a></div>
68 <div tal:repeat="ident python:found3['linksLocator']"><a class="external" tal:attributes="href python:ident[1]" tal:content="python:ident[0]">See also:</a></div>
69 </li>
61 </ul> 70 </ul>
62 <h2>Articles</h2> 71 <h2>Articles</h2>
63 <ul class="publicationlist"> 72 <ul class="publicationlist">
64 <li tal:repeat="found3 python:publicationsSorted['book-item']"><a 73 <li tal:repeat="found3 python:publicationsSorted['book-item']"><a
65 tal:attributes="href python:'http://pubman.mpiwg-berlin.mpg.de/pubman/faces/viewItemFullPage.jsp?itemId='+found3[0]" 74 tal:attributes="href python:'http://pubman.mpiwg-berlin.mpg.de/pubman/faces/viewItemFullPage.jsp?itemId='+found3['escidocId']"
66 tal:content="structure python:found3[1]" /></li> 75 tal:content="structure python:found3['citation']" />
76 <div tal:condition="python:found3['bookId'] is not None"><a class="internal" tal:attributes="href python:'/en/resources/publications/'+here.getBookLinkFromID(found3['bookId'])">Book page</a></div>
77 <div tal:repeat="ident python:found3['linksIdentifier']"><a class="external" tal:attributes="href ident">See also</a></div>
78 <div tal:repeat="ident python:found3['linksLocator']"><a class="external" tal:attributes="href python:ident[1]" tal:content="python:ident[0]">See also:</a></div>
79 </li>
67 </ul> 80 </ul>
68 </tal:x> 81 </tal:x>
69 82
70 <!-- <ul class="publicationlist"> 83 <!-- <ul class="publicationlist">
71 84