]> git.phdru.name Git - phdru.name/phdru.name.git/blobdiff - phd.py
gen-sitemap: fix a bug: args.exclude can be None
[phdru.name/phdru.name.git] / phd.py
diff --git a/phd.py b/phd.py
index 19394839d9ebef92aca3173f3cdc708c34875f71..7d9cf13d7c895dd6c1e628ecadaaa355f7b7d587 100644 (file)
--- a/phd.py
+++ b/phd.py
@@ -39,7 +39,7 @@ class phd(Template):
 
    def body(self):
       if hasattr(self, "body_html"):
-         return self.body_html()
+         return self.body_html().encode('utf-8')
       if hasattr(self, "body_text"):
          return self.text2html()
       if hasattr(self, "body_rst"):
@@ -54,6 +54,8 @@ class phd(Template):
 
       new_paras = []
       for p in paragraphs:
+         if isinstance(p, unicode):
+            p = p.encode('utf-8')
          parts = p.split("\n   ")
          parts[0] = parts[0].strip()
          new_paras.append('\n</p>\n<p>\n'.join(parts))
@@ -80,7 +82,13 @@ class phd(Template):
          subtitle = "<h2>%s</h2>" % subtitle
 
       body = parts["body"]
-      parts = [part for part in (title, subtitle, body) if part]
+      parts = []
+      for part in (title, subtitle, body):
+          if not part:
+              continue
+          if isinstance(part, unicode):
+              part = part.encode('utf-8')
+          parts.append(part)
       return "\n\n".join(parts)
 
    def mkd2html(self):