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

version 1.6, 2005/04/28 10:06:24 version 1.7, 2005/05/09 10:01:54
Line 38  def formatBiblHelp(self,found,table,id): Line 38  def formatBiblHelp(self,found,table,id):
         ret+=foundIB.year+"."          ret+=foundIB.year+"."
   
     elif foundIB.reference_type.lower()=='book section':      elif foundIB.reference_type.lower()=='book section':
         ret+=foundIB.author_semi_colon+". &quot;"+foundIB.title+".&quot; In <i>"+foundIB.secondary_title+"</i>"          ret+=getBib(foundIB.author_semi_colon)+". &quot;"+getBib(foundIB.title)+".&quot; In <i>"+getBib(foundIB.secondary_title)+"</i>"
         if (foundIB.secondary_author_semi_colon) and (not foundIB.secondary_author_semi_colon==''):          if (foundIB.secondary_author_semi_colon) and (not foundIB.secondary_author_semi_colon==''):
             ret+=", eds.: "+foundIB.secondary_author_semi_colon              ret+=", eds.: "+foundIB.secondary_author_semi_colon
         ret+=". "          ret+=". "

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


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