Diff for /MPIWGWeb/bibliography.py between versions 1.5 and 1.6

version 1.5, 2004/11/16 15:15:23 version 1.6, 2005/04/28 10:06:24
Line 31  def formatBiblHelp(self,found,table,id): Line 31  def formatBiblHelp(self,found,table,id):
   
     elif foundIB.reference_type.lower()=='edited book':      elif foundIB.reference_type.lower()=='edited book':
         ret+=foundIB.author_semi_colon+" (Editor/s). <i>"+foundIB.title+"</i>."          ret+=foundIB.author_semi_colon+" (Editor/s). <i>"+foundIB.title+"</i>."
         if not foundIB.place_published=='':          if foundIB.place_published and (not foundIB.place_published==''):
             ret+=foundIB.place_published+": "              ret+=foundIB.place_published+": "
         if not foundIB.publisher=='':          if foundIB.publisher and (not foundIB.publisher==''):
             ret+=foundIB.publisher+", "              ret+=foundIB.publisher+", "
         ret+=foundIB.year+"."          ret+=foundIB.year+"."
   

Removed from v.1.5  
changed lines
  Added in v.1.6


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