Diff for /MPIWGWeb/MPIWGProjects.py between versions 1.47.2.88 and 1.47.2.89

version 1.47.2.88, 2008/08/22 15:16:09 version 1.47.2.89, 2008/08/25 07:55:02
Line 267  class MPIWGProject(CatalogAware,Folder): Line 267  class MPIWGProject(CatalogAware,Folder):
     def createExtendedPublicationList(self,RESPONSE=None):      def createExtendedPublicationList(self,RESPONSE=None):
         """erzeuge erweiterte publications liste"""          """erzeuge erweiterte publications liste"""
         pl = BibliographyManager("publicationList","","institutsbiblio",self.connection_id)          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:          if RESPONSE:
             RESPONSE.redirect("managePublications")              RESPONSE.redirect("managePublications")

Removed from v.1.47.2.88  
changed lines
  Added in v.1.47.2.89


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