Diff for /MPIWGWeb/MPIWGStaff.py between versions 1.10.2.44 and 1.10.2.47

version 1.10.2.44, 2008/08/20 12:24:29 version 1.10.2.47, 2008/08/25 11:30:09
Line 362  class MPIWGStaff(CatalogAware,ZSQLExtend Line 362  class MPIWGStaff(CatalogAware,ZSQLExtend
         return pt()          return pt()
   
     mainEditFile=PageTemplateFile(os.path.join(package_home(globals()),'zpt','editMPIWGStaff_main.zpt'))      mainEditFile=PageTemplateFile(os.path.join(package_home(globals()),'zpt','editMPIWGStaff_main.zpt'))
       addPublicationsBib=PageTemplateFile(os.path.join(package_home(globals()),'zpt','addPublicationsBib.zpt'))
   
     def getPathStyle(self, path, selected, style=""):      def getPathStyle(self, path, selected, style=""):
         """returns a string with the given style + 'sel' if path == selected."""          """returns a string with the given style + 'sel' if path == selected."""
Line 514  class MPIWGStaff(CatalogAware,ZSQLExtend Line 515  class MPIWGStaff(CatalogAware,ZSQLExtend
         for found in self.sortPriority(founds):          for found in self.sortPriority(founds):
             ret+=found.interest+"<br/>"              ret+=found.interest+"<br/>"
                   
         founds=self.ZSQLInlineSearch(_table='current_work',key_main=person.key)          
         if founds:          if (person.current_work) and (not person.current_work==""):
             ret="Current work: <br/><br/>"              ret="Current work: <br/><br/>"
         for found in self.sortPriority(founds):        
             ret+=found.current+"<br/>"              ret+=person.current_work+"<br/>"
           
         ret+="<br/>"          ret+="<br/>"
         ret+=self.formatAscii(person.cv)          ret+=self.formatAscii(person.cv)

Removed from v.1.10.2.44  
changed lines
  Added in v.1.10.2.47


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