mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 02:49:27 +01:00
Web: Fix unicode problems for titleSnarfer.
This commit is contained in:
parent
124ca33f4e
commit
3579701d2d
@ -97,13 +97,13 @@ class Web(callbacks.PluginRegexp):
|
||||
return
|
||||
parser = Title()
|
||||
try:
|
||||
parser.feed(text)
|
||||
parser.feed(text.decode('utf-8'))
|
||||
except HTMLParser.HTMLParseError:
|
||||
self.log.debug('Encountered a problem parsing %u. Title may '
|
||||
'already be set, though', url)
|
||||
if parser.title:
|
||||
domain = utils.web.getDomain(url)
|
||||
title = utils.web.htmlToText(parser.title.strip())
|
||||
title = utils.web.htmlToText(parser.title.strip().encode('utf-8'))
|
||||
s = format(_('Title: %s (at %s)'), title, domain)
|
||||
irc.reply(s, prefixNick=False)
|
||||
titleSnarfer = urlSnarfer(titleSnarfer)
|
||||
@ -178,12 +178,12 @@ class Web(callbacks.PluginRegexp):
|
||||
text = utils.web.getUrl(url, size=size)
|
||||
parser = Title()
|
||||
try:
|
||||
parser.feed(text)
|
||||
parser.feed(text.decode('utf-8'))
|
||||
except HTMLParser.HTMLParseError:
|
||||
self.log.debug('Encountered a problem parsing %u. Title may '
|
||||
'already be set, though', url)
|
||||
if parser.title:
|
||||
irc.reply(utils.web.htmlToText(parser.title.strip()))
|
||||
irc.reply(utils.web.htmlToText(parser.title.strip().encode('utf-8')))
|
||||
elif len(text) < size:
|
||||
irc.reply(_('That URL appears to have no HTML title.'))
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user