瀏覽代碼

Add language support

Cqoicebordel 10 年之前
父節點
當前提交
829948b85d
共有 2 個文件被更改,包括 13 次插入4 次删除
  1. 6
    0
      searx/engines/subtitleseeker.py
  2. 7
    4
      searx/settings.yml

+ 6
- 0
searx/engines/subtitleseeker.py 查看文件

@@ -16,6 +16,8 @@ from lxml import html
16 16
 categories = ['videos']
17 17
 paging = True
18 18
 
19
+language = ""
20
+
19 21
 # search-url
20 22
 url = 'http://www.subtitleseeker.com/'
21 23
 search_url = url+'search/TITLES/{query}&p={pageno}'
@@ -41,6 +43,10 @@ def response(resp):
41 43
     for result in dom.xpath(results_xpath):
42 44
         link = result.xpath(".//a")[0]
43 45
         href = link.attrib.get('href')
46
+        
47
+        if language is not "":
48
+            href = href + language + "/"
49
+
44 50
         title = escape(link.xpath(".//text()")[0])
45 51
 
46 52
         content = result.xpath('.//div[contains(@class,"red")]//text()')[0]

+ 7
- 4
searx/settings.yml 查看文件

@@ -1,13 +1,13 @@
1 1
 server:
2
-    port : 8888
3
-    secret_key : "ultrasecretkey" # change this!
4
-    debug : False # Debug mode, only for development
2
+    port : 2722
3
+    secret_key : "8f92c98926f04c8cb2a5fdc3bca19f7c" # change this!
4
+    debug : True # Debug mode, only for development
5 5
     request_timeout : 2.0 # seconds
6 6
     base_url : False # Set custom base_url. Possible values: False or "https://your.custom.host/location/"
7 7
     themes_path : "" # Custom ui themes path
8 8
     default_theme : default # ui theme
9 9
     https_rewrite : True # Force rewrite result urls. See searx/https_rewrite.py
10
-    useragent_suffix : "" # suffix of searx_useragent, could contain informations like an email address to the administrator
10
+    useragent_suffix : "Cqcb Style" # suffix of searx_useragent, could contain informations like an email address to the administrator
11 11
 
12 12
 engines:
13 13
   - name : wikipedia
@@ -130,6 +130,9 @@ engines:
130 130
   - name : subtitleseeker
131 131
     engine : subtitleseeker
132 132
     shortcut : ss
133
+# The language is an option. You can put any language written in english
134
+# Examples : English, French, German, Hungarian, Chinese...
135
+#    language : English
133 136
 
134 137
   - name : startpage
135 138
     engine : startpage