--- MPIWGWeb/bibliography.py 2008/10/22 15:37:47 1.7.2.9 +++ MPIWGWeb/bibliography.py 2009/02/18 15:42:00 1.7.2.11 @@ -79,6 +79,15 @@ def formatBiblHelp(self,found,table,id,f ret+=foundIB.date+"."+foundIB.year+"," if foundIB.pages and (not foundIB.pages==''): ret+=foundIB.pages+". " + elif foundIB.reference_type.lower()=='magazine article': + ret+=CRListToSemicolon(foundIB.author)+". ""+foundIB.title+"." "+foundIB.secondary_title+", " + if foundIB.date: + ret+=foundIB.date+"." + if foundIB.year: + ret+=foundIB.year+"," + if foundIB.pages and (not foundIB.pages==''): + ret+=foundIB.pages+". " +