From: Oleg Broytman Date: Tue, 9 Oct 2007 14:12:07 +0000 (+0000) Subject: Wikipedia (en and ru). X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;h=49891ef00be55498d99a740a7d3b992e5971625b;p=phdru.name%2Fphdru.name.git Wikipedia (en and ru). git-svn-id: file:///home/phd/archive/SVN/phdru.name/scripts@71 7bb0bf08-9e0d-0410-b083-99cee3bf18b8 --- diff --git a/phd_pp.py b/phd_pp.py index 603211a..64df519 100644 --- a/phd_pp.py +++ b/phd_pp.py @@ -93,7 +93,17 @@ class phd_pp(Template): 800x600, 1024x800""" % {"img_name": img_name} def google_ru(self, query): - return "http://www.google.ru/search?hl=ru&ie=utf-8&oe=utf-8&q=%s" % urllib.quote_plus(unicode(query, "koi8-r").encode("utf-8")) + return "http://www.google.ru/search?hl=ru&ie=utf-8&oe=utf-8&q=%s" % quote_string(query) def yandex(self, query): - return "http://www.yandex.ru/yandsearch?text=%s&rpt=rad" % urllib.quote_plus(unicode(query, "koi8-r").encode("cp1251")) + return "http://www.yandex.ru/yandsearch?text=%s&rpt=rad" % quote_string(query, "cp1251") + + def wikipedia(self, query): + return "http://en.wikipedia.org/wiki/%s" % quote_string(query) + + def wikipedia_ru(self, query): + return "http://ru.wikipedia.org/wiki/%s" % quote_string(query) + + +def quote_string(s, to_encoding="utf-8"): + return urllib.quote_plus(unicode(s, "koi8-r").encode(to_encoding))