X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=phd.py;h=1e884cfd9ebd1c2a89aabd272cf95f60a2722e95;hb=f70f34fd4f10ae58d80e58e8584dab0546699704;hp=52f69370b61c4e932405eb8c170d2fb402255789;hpb=a65664bfcb76814a750b6dd6e1f38974bcee22be;p=phdru.name%2Fphdru.name.git diff --git a/phd.py b/phd.py index 52f6937..1e884cf 100644 --- 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"): @@ -101,10 +101,10 @@ class phd(Template): 800x600, 1024x800""" % {"img_name": img_name} def wikipedia(self, query): - return "http://en.wikipedia.org/wiki/%s" % quote_string(query.replace(' ', '_'), ext_safe=',') + return "https://en.wikipedia.org/wiki/%s" % quote_string(query.replace(' ', '_'), ext_safe=',') def wikipedia_ru(self, query): - return "http://ru.wikipedia.org/wiki/%s" % quote_string(query.replace(' ', '_'), ext_safe=',') + return "https://ru.wikipedia.org/wiki/%s" % quote_string(query.replace(' ', '_'), ext_safe=',') def nigma(self, query): return "http://www.nigma.ru/index.php?s=%s" % quote_string(query)