fix html in atom feed titles

This commit is contained in:
j 2014-01-25 09:00:52 +00:00
parent f577c7abb2
commit 2a708e72cf
2 changed files with 3 additions and 3 deletions

View file

@ -103,7 +103,7 @@ class MetaClip:
@property
def public_id(self):
return u"%s/%0.03f-%0.03f" %(self.item.itemId, float(self.start), float(self.end))
return u"%s/%0.03f-%0.03f" % (self.item.itemId, float(self.start), float(self.end))
def __unicode__(self):
return self.public_id

View file

@ -998,7 +998,7 @@ def atom_xml(request):
entry = ET.Element("entry")
title = ET.SubElement(entry, "title")
title.text = item.get('title')
title.text = ox.decode_html(item.get('title'))
link = ET.SubElement(entry, "link")
link.attrib['rel'] = 'alternate'
link.attrib['href'] = "%s/info" % page_link
@ -1012,7 +1012,7 @@ def atom_xml(request):
if item.get('director'):
el = ET.SubElement(entry, "author")
name = ET.SubElement(el, "name")
name.text = u', '.join(item.get('director'))
name.text = ox.decode_html(u', '.join(item.get('director')))
elif item.user:
el = ET.SubElement(entry, "author")
name = ET.SubElement(el, "name")