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

version 1.4, 2004/10/18 13:16:41 version 1.5, 2004/11/16 15:15:23
Line 26  def formatBiblHelp(self,found,table,id): Line 26  def formatBiblHelp(self,found,table,id):
         if not self.ZSQLisEmpty(foundIB.number):          if not self.ZSQLisEmpty(foundIB.number):
             ret+=foundIB.number+" "              ret+=foundIB.number+" "
         ret+=foundIB.year+")"          ret+=foundIB.year+")"
         if 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':
Line 42  def formatBiblHelp(self,found,table,id): Line 42  def formatBiblHelp(self,found,table,id):
         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+=". "
         if 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+": "

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


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