]> git.phdru.name Git - phdru.name/phdru.name.git/commitdiff
Use StartPage as the default search engine
authorOleg Broytman <phd@phdru.name>
Sun, 31 May 2015 20:57:45 +0000 (23:57 +0300)
committerOleg Broytman <phd@phdru.name>
Wed, 23 Dec 2015 15:54:13 +0000 (18:54 +0300)
phd.py

diff --git a/phd.py b/phd.py
index 1e884cfd9ebd1c2a89aabd272cf95f60a2722e95..3e275e6f21c8a3fe5490a032cf5208b8e1abf7e8 100644 (file)
--- a/phd.py
+++ b/phd.py
@@ -106,11 +106,14 @@ class phd(Template):
    def wikipedia_ru(self, query):
       return "https://ru.wikipedia.org/wiki/%s" % quote_string(query.replace(' ', '_'), ext_safe=',')
 
+   def startpage(self, query):
+       return "https://startpage.com/do/search?q=%s" % quote_string(query)
+
+   search = startpage
+
    def nigma(self, query):
        return "http://www.nigma.ru/index.php?s=%s" % quote_string(query)
 
-   search = nigma
-
    def yandex(self, query):
       return "http://www.yandex.ru/yandsearch?text=%s&rpt=rad" % quote_string(query, "cp1251")