--- MPIWGWeb/bibliography.py 2006/11/06 16:08:30 1.7.2.8 +++ MPIWGWeb/bibliography.py 2012/12/07 10:12:56 1.7.2.12 @@ -23,7 +23,7 @@ def formatBiblHelp(self,found,table,id,f ret="" if not foundIB: try: - foundIB=self.ZSQLInlineSearch(_table=table,id=id)[0] + foundIB=self.ZSQLInlineSearch(_table=table,id=id,_op_id="eq")[0] except: return ret @@ -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(getBib(foundIB.author))+". ""+getBib(foundIB.title)+"." "+getBib(foundIB.secondary_title)+", " + if foundIB.date: + ret+=getBib(foundIB.date)+"." + if foundIB.year: + ret+=foundIB.year+"," + if foundIB.pages and (not getBib(foundIB.pages)==''): + ret+=foundIB.pages+". " +