Browse Source

[mod] move wolframalpha to "science" category

Adam Tauber 9 years ago
parent
commit
fab698003f
2 changed files with 3 additions and 1 deletions
  1. 1
    0
      searx/settings.yml
  2. 2
    1
      searx/webapp.py

+ 1
- 0
searx/settings.yml View File

@@ -309,6 +309,7 @@ engines:
309 309
     engine : wolframalpha_noapi
310 310
     timeout: 6.0
311 311
     disabled : True
312
+    categories : science
312 313
 
313 314
 #The blekko technology and team have joined IBM Watson! -> https://blekko.com/
314 315
 #  - name : blekko images

+ 2
- 1
searx/webapp.py View File

@@ -119,7 +119,8 @@ _category_names = (gettext('files'),
119 119
                    gettext('videos'),
120 120
                    gettext('it'),
121 121
                    gettext('news'),
122
-                   gettext('map'))
122
+                   gettext('map'),
123
+                   gettext('scence'))
123 124
 
124 125
 outgoing_proxies = settings['outgoing'].get('proxies', None)
125 126