]> git.phdru.name Git - phdru.name/phdru.name.git/commitdiff
Replace spaces with underscores for Wikipedia.
authorOleg Broytman <phd@phdru.name>
Sat, 17 Nov 2007 22:19:31 +0000 (22:19 +0000)
committerOleg Broytman <phd@phdru.name>
Sat, 17 Nov 2007 22:19:31 +0000 (22:19 +0000)
Quote spaces with %20 instead of +.

git-svn-id: file:///home/phd/archive/SVN/phdru.name/scripts@72 7bb0bf08-9e0d-0410-b083-99cee3bf18b8

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))