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

version 1.7.2.10, 2008/12/17 08:02:19 version 1.7.2.12, 2012/12/07 10:12:56
Line 80  def formatBiblHelp(self,found,table,id,f Line 80  def formatBiblHelp(self,found,table,id,f
         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()=='magazine article':      elif foundIB.reference_type.lower()=='magazine article':
         ret+=CRListToSemicolon(foundIB.author)+". &quot;"+foundIB.title+".&quot; <i>"+foundIB.secondary_title+"</i>, "          ret+=CRListToSemicolon(getBib(foundIB.author))+". &quot;"+getBib(foundIB.title)+".&quot; <i>"+getBib(foundIB.secondary_title)+"</i>, "
         ret+=foundIB.date+"."+foundIB.year+","      if foundIB.date:
         if foundIB.pages and (not foundIB.pages==''):              ret+=getBib(foundIB.date)+"."
       if foundIB.year:
           ret+=foundIB.year+","
           if foundIB.pages and (not getBib(foundIB.pages)==''):
             ret+=foundIB.pages+". "              ret+=foundIB.pages+". "
   
   
                           
               
                           
     return ret      return ret

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


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