diff options
author | Adam Tauber <asciimoo@gmail.com> | 2016-12-25 22:40:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-25 22:40:36 +0100 |
commit | 383160e99a09061632b98ab850b173d03d8dc6eb (patch) | |
tree | a620fcf9d79e5a4f8ca3213e2688e72e289f2435 | |
parent | 07448e15e439dfee1d531ab9d1fd3aab15af5253 (diff) | |
parent | 89914e52e36a5048ec95dd075708f9d2bedf9ac1 (diff) | |
download | searxng-383160e99a09061632b98ab850b173d03d8dc6eb.tar.gz searxng-383160e99a09061632b98ab850b173d03d8dc6eb.zip |
Merge pull request #788 from suchkultur/add_ccctv_to_settings
Add ccctv engine to settings.yml
-rw-r--r-- | AUTHORS.rst | 1 | ||||
-rw-r--r-- | searx/settings.yml | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/AUTHORS.rst b/AUTHORS.rst index 0c224088f..1b6261dd0 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -60,3 +60,4 @@ generally made searx better: - Thomas Renard @threnard - Pydo `<https://github.com/pydo>`_ - Athemis `<https://github.com/Athemis>`_ +- Stefan Antoni `<http://stefan.antoni.io>` diff --git a/searx/settings.yml b/searx/settings.yml index 01ac69de4..69699605d 100644 --- a/searx/settings.yml +++ b/searx/settings.yml @@ -91,6 +91,17 @@ engines: disabled : True shortcut : bb + - name : ccc-tv + engine : xpath + paging : False + search_url : https://media.ccc.de/search/?q={query} + url_xpath : //div[@class="caption"]/h3/a/@href + title_xpath : //div[@class="caption"]/h3/a/text() + content_xpath : //div[@class="caption"]/h4/@title + categories : videos + disabled : True + shortcut : c3tv + - name : crossref engine : json_engine paging : True |