]> git.phdru.name Git - bookmarks_db.git/commitdiff
Fix: convert unicode icon URLs to utf-8
authorOleg Broytman <phd@phdru.name>
Sat, 2 Apr 2016 19:27:58 +0000 (22:27 +0300)
committerOleg Broytman <phd@phdru.name>
Sat, 2 Apr 2016 19:27:58 +0000 (22:27 +0300)
Writers/bkmk_wflad.py
Writers/bkmk_whtml.py

index 189177f56cafc66453c8c45eb2363da79828747e..999872b1e488a93c062a3caa3514f0281da33439 100644 (file)
@@ -53,7 +53,10 @@ Comment: %s""" % (level+1, b.name, b.href, strftime(b.add_date), strftime(b.last
             ("real_title", "RealTitle"), ("test_time", "TestTime"),
             ("icon_href", "IconURI"), ("icon", "Icon"), ("charset", "Charset")):
          if hasattr(b, attr_name):
-            self.outfile.write("\n%s: %s" % (attr_out, getattr(b, attr_name)))
+            value = getattr(b, attr_name)
+            if isinstance(value, unicode):
+               value = value.encode('utf-8')
+            self.outfile.write("\n%s: %s" % (attr_out, value))
 
       if hasattr(b, "last_tested"):
          self.outfile.write("\n%s: %s" % ("LastTested", strftime(getattr(b, "last_tested"))))
index caf374737b29f3ea873cbe0c9599c931b7d233da..707b52a68becf5bb00db6181fa3645bf2f247aa9 100644 (file)
@@ -51,7 +51,11 @@ class writer_html(Writer):
          self.outfile.write(' LAST_MODIFIED="%s"' % b.last_modified)
       if BKMK_FORMAT == "MOZILLA":
          if b.keyword: self.outfile.write(' SHORTCUTURL="%s"' % b.keyword)
-         if b.icon_href: self.outfile.write(' ICON_URI="%s"' % b.icon_href)
+         if b.icon_href:
+            value = b.icon_href
+            if isinstance(value, unicode):
+               value = value.encode('utf-8')
+            self.outfile.write(' ICON_URI="%s"' % value)
          if b.icon: self.outfile.write(' ICON="%s"' % b.icon)
          if b.charset: self.outfile.write(' LAST_CHARSET="%s"' % b.charset)
       self.outfile.write('>%s</A>\n' % quote_title(b.name))