Diff for /MPIWGWeb/bibliography.py between versions 1.7.2.6 and 1.7.2.8

version 1.7.2.6, 2005/11/23 14:05:10 version 1.7.2.8, 2006/11/06 16:08:30
Line 51  def formatBiblHelp(self,found,table,id,f Line 51  def formatBiblHelp(self,found,table,id,f
         ret+=getBib(foundIB.year)+"."          ret+=getBib(foundIB.year)+"."
   
     elif foundIB.reference_type.lower()=='book section' or foundIB.reference_type.lower()=='in book':      elif foundIB.reference_type.lower()=='book section' or foundIB.reference_type.lower()=='in book':
         ret+=getBib(CRListToSemicolon(foundIB.author))+". &quot;"+getBib(foundIB.title)+".&quot; In <i>"+getBib(foundIB.secondary_title)+"</i>"          ret+=getBib(CRListToSemicolon(foundIB.author))+". &quot;"+getBib(foundIB.title)+".&quot; In: <i>"+getBib(foundIB.secondary_title)+"</i>"
         if (CRListToSemicolon(foundIB.secondary_author)) and (not CRListToSemicolon(foundIB.secondary_author)==''):          if (CRListToSemicolon(foundIB.secondary_author)) and (not CRListToSemicolon(foundIB.secondary_author)==''):
             ret+=", eds.: "+CRListToSemicolon(foundIB.secondary_author)              ret+=", eds.: "+CRListToSemicolon(foundIB.secondary_author)
         ret+=". "          ret+=". "
Line 66  def formatBiblHelp(self,found,table,id,f Line 66  def formatBiblHelp(self,found,table,id,f
         
     elif foundIB.reference_type.lower()=='book':      elif foundIB.reference_type.lower()=='book':
         ret+=getBib(CRListToSemicolon(foundIB.author))+". <i>"+getBib(foundIB.title)+"</i>. "          ret+=getBib(CRListToSemicolon(foundIB.author))+". <i>"+getBib(foundIB.title)+"</i>. "
         if foundIB.pages and (not foundIB.pages==''):  #       if foundIB.pages and (not foundIB.pages==''):
             ret+=foundIB.pages+". "  #%            ret+=foundIB.pages+". "
         if foundIB.place_published and (not foundIB.place_published==''):          if foundIB.place_published and (not foundIB.place_published==''):
             ret+=foundIB.place_published+": "              ret+=foundIB.place_published+": "
         if foundIB.publisher and (not foundIB.publisher==''):          if foundIB.publisher and (not foundIB.publisher==''):

Removed from v.1.7.2.6  
changed lines
  Added in v.1.7.2.8


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