]> git.phdru.name Git - phdru.name/phdru.name.git/blobdiff - phd_pp.py
Replace spaces with underscores for Wikipedia.
[phdru.name/phdru.name.git] / phd_pp.py
index 64df5196ef3be6e232cd584853c4d927d85655f4..b3ad03aec704cbc5f27fc3f0cf9b108debc736b6 100644 (file)
--- a/phd_pp.py
+++ b/phd_pp.py
@@ -99,11 +99,11 @@ class phd_pp(Template):
       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)
+      return "http://en.wikipedia.org/wiki/%s" % quote_string(query.replace(' ', '_'))
 
    def wikipedia_ru(self, query):
-      return "http://ru.wikipedia.org/wiki/%s" % quote_string(query)
+      return "http://ru.wikipedia.org/wiki/%s" % quote_string(query.replace(' ', '_'))
 
 
 def quote_string(s, to_encoding="utf-8"):
-   return urllib.quote_plus(unicode(s, "koi8-r").encode(to_encoding))
+   return urllib.quote(unicode(s, "koi8-r").encode(to_encoding))