|
@@ -242,15 +242,16 @@ engines:
|
242
|
242
|
disabled: True
|
243
|
243
|
|
244
|
244
|
- name : gitlab
|
245
|
|
- engine : xpath
|
|
245
|
+ engine : json_engine
|
246
|
246
|
paging : True
|
247
|
|
- search_url : https://gitlab.com/search?page={pageno}&search={query}
|
248
|
|
- url_xpath : //li[@class="project-row"]//a[@class="project"]/@href
|
249
|
|
- title_xpath : //li[@class="project-row"]//span[contains(@class, "project-full-name")]
|
250
|
|
- content_xpath : //li[@class="project-row"]//div[@class="description"]/p
|
|
247
|
+ search_url : https://gitlab.com/api/v4/projects?search={query}&page={pageno}
|
|
248
|
+ url_query : web_url
|
|
249
|
+ title_query : name_with_namespace
|
|
250
|
+ content_query : description
|
|
251
|
+ page_size : 20
|
251
|
252
|
categories : it
|
252
|
253
|
shortcut : gl
|
253
|
|
- timeout : 5.0
|
|
254
|
+ timeout : 10.0
|
254
|
255
|
disabled : True
|
255
|
256
|
|
256
|
257
|
- name : github
|
|
@@ -321,9 +322,9 @@ engines:
|
321
|
322
|
engine : xpath
|
322
|
323
|
paging : True
|
323
|
324
|
search_url : https://geektimes.ru/search/page{pageno}/?q={query}
|
324
|
|
- url_xpath : //div[@class="search_results"]//a[@class="post__title_link"]/@href
|
325
|
|
- title_xpath : //div[@class="search_results"]//a[@class="post__title_link"]
|
326
|
|
- content_xpath : //div[@class="search_results"]//div[contains(@class, "content")]
|
|
325
|
+ url_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]/@href
|
|
326
|
+ title_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]
|
|
327
|
+ content_xpath : //article[contains(@class, "post")]//div[contains(@class, "post__text")]
|
327
|
328
|
categories : it
|
328
|
329
|
timeout : 4.0
|
329
|
330
|
disabled : True
|
|
@@ -333,9 +334,9 @@ engines:
|
333
|
334
|
engine : xpath
|
334
|
335
|
paging : True
|
335
|
336
|
search_url : https://habrahabr.ru/search/page{pageno}/?q={query}
|
336
|
|
- url_xpath : //div[@class="search_results"]//a[contains(@class, "post__title_link")]/@href
|
337
|
|
- title_xpath : //div[@class="search_results"]//a[contains(@class, "post__title_link")]
|
338
|
|
- content_xpath : //div[@class="search_results"]//div[contains(@class, "content")]
|
|
337
|
+ url_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]/@href
|
|
338
|
+ title_xpath : //article[contains(@class, "post")]//a[@class="post__title_link"]
|
|
339
|
+ content_xpath : //article[contains(@class, "post")]//div[contains(@class, "post__text")]
|
339
|
340
|
categories : it
|
340
|
341
|
timeout : 4.0
|
341
|
342
|
disabled : True
|