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

version 1.7.2.8, 2006/11/06 16:08:30 version 1.7.2.10, 2008/12/17 08:02:19
Line 23  def formatBiblHelp(self,found,table,id,f Line 23  def formatBiblHelp(self,found,table,id,f
     ret=""      ret=""
     if not foundIB:      if not foundIB:
         try:          try:
             foundIB=self.ZSQLInlineSearch(_table=table,id=id)[0]              foundIB=self.ZSQLInlineSearch(_table=table,id=id,_op_id="eq")[0]
   
         except:          except:
             return ret              return ret
Line 78  def formatBiblHelp(self,found,table,id,f Line 78  def formatBiblHelp(self,found,table,id,f
         ret+=CRListToSemicolon(foundIB.author)+". &quot;"+foundIB.title+".&quot; <i>"+foundIB.secondary_title+"</i>, "          ret+=CRListToSemicolon(foundIB.author)+". &quot;"+foundIB.title+".&quot; <i>"+foundIB.secondary_title+"</i>, "
         ret+=foundIB.date+"."+foundIB.year+","          ret+=foundIB.date+"."+foundIB.year+","
         if foundIB.pages and (not foundIB.pages==''):          if foundIB.pages and (not foundIB.pages==''):
               ret+=foundIB.pages+". "
       elif foundIB.reference_type.lower()=='magazine article':
           ret+=CRListToSemicolon(foundIB.author)+". &quot;"+foundIB.title+".&quot; <i>"+foundIB.secondary_title+"</i>, "
           ret+=foundIB.date+"."+foundIB.year+","
           if foundIB.pages and (not foundIB.pages==''):
             ret+=foundIB.pages+". "              ret+=foundIB.pages+". "
   
   

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


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