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

version 1.7.2.10, 2008/12/17 08:02:19 version 1.7.2.11, 2009/02/18 15:42:00
Line 81  def formatBiblHelp(self,found,table,id,f Line 81  def formatBiblHelp(self,found,table,id,f
             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(foundIB.author)+". &quot;"+foundIB.title+".&quot; <i>"+foundIB.secondary_title+"</i>, "
         ret+=foundIB.date+"."+foundIB.year+","      if foundIB.date:
               ret+=foundIB.date+"."
       if foundIB.year:
           ret+=foundIB.year+","
         if foundIB.pages and (not foundIB.pages==''):          if foundIB.pages and (not 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.11


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