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

version 1.7.2.5, 2005/11/23 11:08:41 version 1.7.2.6, 2005/11/23 14:05:10
Line 42  def formatBiblHelp(self,found,table,id,f Line 42  def formatBiblHelp(self,found,table,id,f
     elif foundIB.reference_type.lower()=='edited book':      elif foundIB.reference_type.lower()=='edited book':
         if foundIB.author:          if foundIB.author:
             ret+=CRListToSemicolon(foundIB.author)+" (Editor/s)."              ret+=CRListToSemicolon(foundIB.author)+" (Editor/s)."
         if foundIB.title and (not foundIB.title)=="":          if foundIB.title and (not foundIB.title==""):
             ret+="<i>"+foundIB.title+"</i>."              ret+="<i>"+foundIB.title+"</i>."
         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+": "
Line 63  def formatBiblHelp(self,found,table,id,f Line 63  def formatBiblHelp(self,found,table,id,f
             ret+=foundIB.publisher+", "              ret+=foundIB.publisher+", "
         ret+=getBib(foundIB.year)+"."          ret+=getBib(foundIB.year)+"."
                   
      
     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==''):

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


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