1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-22 20:44:15 +00:00

- Fixed mininova search engie plugin

This commit is contained in:
Christophe Dumez 2007-09-27 18:47:26 +00:00
parent 00dbf7ba38
commit 0678e2e2bd
2 changed files with 12 additions and 7 deletions

1
TODO
View File

@ -79,6 +79,7 @@ LANGUAGES UPDATED:
- Bulgarian *OK*
rc1->rc2 changelog:
- BUGFIX: Fixed mininova search engine plugin
- BUGFIX: Fixed infoBar text when adding a torrent
- BUGFIX: Fixed a unsupported character in man page
- I18N: Updated Italian and Korean translations

View File

@ -1,4 +1,4 @@
#VERSION: 1.10
#VERSION: 1.11
#AUTHORS: Fabien Devaux (fab@gnux.info)
from novaprinter import prettyPrinter
import urllib
@ -15,11 +15,13 @@ class mininova(object):
def get_link(lnk):
lnks = lnk.getElementsByTagName('a')
if lnks.item(0).attributes.get('href').value.startswith('/faq'):
if len(lnks) > 1:
return self.url+lnks.item(1).attributes.get('href').value
else:
return self.url+lnks.item(0).attributes.get('href').value
i = 0
try:
while not lnks.item(i).attributes.get('href').value.startswith('/get'):
i += 1
except:
return None
return (self.url+lnks.item(i).attributes.get('href').value).strip()
def get_text(txt):
if txt.nodeType == txt.TEXT_NODE:
@ -43,7 +45,7 @@ class mininova(object):
vals = {}
for td in tds:
if self.table_items[i] == 'name':
vals['link'] = get_link(td).strip()
vals['link'] = get_link(td)
vals[self.table_items[i]] = get_text(td).strip()
i += 1
vals['engine_url'] = self.url
@ -51,6 +53,8 @@ class mininova(object):
vals['seeds'] = 0
if not vals['leech'].isdigit():
vals['leech'] = 0
if vals['link'] is None:
continue
prettyPrinter(vals)
res = res + 1
if res == 0: