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

version 1.7.2.3, 2005/11/16 19:09:28 version 1.7.2.5, 2005/11/23 11:08:41
Line 32  def formatBiblHelp(self,found,table,id,f Line 32  def formatBiblHelp(self,found,table,id,f
         ret+=getBib(CRListToSemicolon(foundIB.author))+". &quot;"+getBib(foundIB.title)+". &quot; "+"<i>%s</i>"%getBib(foundIB.secondary_title)+" "+getBib(foundIB.volume)+" ("          ret+=getBib(CRListToSemicolon(foundIB.author))+". &quot;"+getBib(foundIB.title)+". &quot; "+"<i>%s</i>"%getBib(foundIB.secondary_title)+" "+getBib(foundIB.volume)+" ("
         if not self.ZSQLisEmpty(foundIB.number):          if not self.ZSQLisEmpty(foundIB.number):
             ret+=foundIB.number+"&nbsp;"              ret+=foundIB.number+"&nbsp;"
         ret+=foundIB.year+")"  
           if foundIB.year:
               ret+=getattr(foundIB,'year','')
           ret+=")"
         if foundIB.pages and (not foundIB.pages)=='':          if foundIB.pages and (not foundIB.pages)=='':
             ret+=": "+foundIB.pages+"."              ret+=": "+foundIB.pages+"."
   
     elif foundIB.reference_type.lower()=='edited book':      elif foundIB.reference_type.lower()=='edited book':
         ret+=CRListToSemicolon(foundIB.author)+" (Editor/s). <i>"+foundIB.title+"</i>."          if foundIB.author:
               ret+=CRListToSemicolon(foundIB.author)+" (Editor/s)."
           if foundIB.title and (not foundIB.title)=="":
               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+": "
         if foundIB.publisher and (not foundIB.publisher==''):          if foundIB.publisher and (not foundIB.publisher==''):

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


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