diff options
| author | rhapsodhy <me@rhapsodhy.hu> | 2014-01-11 03:33:41 +0000 |
|---|---|---|
| committer | rhapsodhy <me@rhapsodhy.hu> | 2014-01-11 03:33:41 +0000 |
| commit | b0a440421772c334b090f89187b747a350d31e5a (patch) | |
| tree | b8c185f236b9fa27176ef0d98498537a3a67ae01 | |
| parent | 74ca542a0282e269c991cc75511ccc76a7c8901c (diff) | |
[enh] highlight piratebay results with light grey border, and indent peers+magnet link
| -rw-r--r-- | searx/engines/piratebay.py | 6 | ||||
| -rw-r--r-- | searx/templates/result_templates/torrent.html | 7 |
2 files changed, 10 insertions, 3 deletions
diff --git a/searx/engines/piratebay.py b/searx/engines/piratebay.py index 95ab884d5..11538dd6b 100644 --- a/searx/engines/piratebay.py +++ b/searx/engines/piratebay.py @@ -28,8 +28,8 @@ def response(resp): title = ' '.join(link.xpath('.//text()')) content = escape(' '.join(result.xpath('.//font[@class="detDesc"]//text()'))) seed, leech = result.xpath('.//td[@align="right"]/text()')[:2] - content += '<br />Seed: %s, Leech: %s' % (seed, leech) magnetlink = result.xpath('.//a[@title="Download this torrent using magnet"]')[0] - content += '<br /><a href="%s">magnet link</a>' % urljoin(url, magnetlink.attrib['href']) - results.append({'url': href, 'title': title, 'content': content}) + results.append({'url': href, 'title': title, 'content': content, + 'seed': seed, 'leech': leech, 'magnetlink': magnetlink.attrib['href'], + 'template': 'torrent.html'}) return results diff --git a/searx/templates/result_templates/torrent.html b/searx/templates/result_templates/torrent.html new file mode 100644 index 000000000..4b7cfbf2a --- /dev/null +++ b/searx/templates/result_templates/torrent.html @@ -0,0 +1,7 @@ +<div class="result torrent_result"> + <h3 class="result_title"><a href="{{ result.url }}">{{ result.title|safe }}</a></h3> + <p class="content">{% if result.content %}{{ result.content|safe }}<br />{% endif %}</p> + <p class="stats">Seed: {{ result.seed }}, Leech: {{ result.leech }}</p> + <p><a href="{{ result.magnetlink }}" class="magnetlink">magnet link</a></p> + <p class="url">{{ result.pretty_url }}</p> +</div> |