--- MPIWGWeb/MPIWGProjects.py 2008/08/22 15:16:09 1.47.2.88 +++ MPIWGWeb/MPIWGProjects.py 2008/08/25 07:55:02 1.47.2.89 @@ -267,8 +267,17 @@ class MPIWGProject(CatalogAware,Folder): def createExtendedPublicationList(self,RESPONSE=None): """erzeuge erweiterte publications liste""" pl = BibliographyManager("publicationList","","institutsbiblio",self.connection_id) - self._setOb("publicationList", pl) + self._setObject("publicationList", pl) + + zt=ZopePageTemplate('index.html') + pl._setObject('index.html',zt) + default_content_fn = os.path.join(package_home(globals()), + 'zpt/showExtendedProjectBibliography.zpt') + text = open(default_content_fn).read() + zt.pt_edit(text, 'text/html') + + if RESPONSE: RESPONSE.redirect("managePublications")