mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 14:38:04 -06:00
- Fixed torrents' names in mininova search engine
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
#VERSION: 1.12
|
#VERSION: 1.13
|
||||||
#AUTHORS: Fabien Devaux (fab@gnux.info)
|
#AUTHORS: Fabien Devaux (fab@gnux.info)
|
||||||
from novaprinter import prettyPrinter
|
from novaprinter import prettyPrinter
|
||||||
import urllib
|
import urllib
|
||||||
@@ -23,6 +23,16 @@ class mininova(object):
|
|||||||
return None
|
return None
|
||||||
return (self.url+lnks.item(i).attributes.get('href').value).strip()
|
return (self.url+lnks.item(i).attributes.get('href').value).strip()
|
||||||
|
|
||||||
|
def get_name(lnk):
|
||||||
|
lnks = lnk.getElementsByTagName('a')
|
||||||
|
i = 0
|
||||||
|
try:
|
||||||
|
while not lnks.item(i).attributes.get('href').value.startswith('/tor'):
|
||||||
|
i += 1
|
||||||
|
except:
|
||||||
|
return None
|
||||||
|
return lnks.item(i).firstChild.toxml()
|
||||||
|
|
||||||
def get_text(txt):
|
def get_text(txt):
|
||||||
if txt.nodeType == txt.TEXT_NODE:
|
if txt.nodeType == txt.TEXT_NODE:
|
||||||
return txt.toxml()
|
return txt.toxml()
|
||||||
@@ -46,6 +56,8 @@ class mininova(object):
|
|||||||
for td in tds:
|
for td in tds:
|
||||||
if self.table_items[i] == 'name':
|
if self.table_items[i] == 'name':
|
||||||
vals['link'] = get_link(td)
|
vals['link'] = get_link(td)
|
||||||
|
vals['name'] = get_name(td)
|
||||||
|
else:
|
||||||
vals[self.table_items[i]] = get_text(td).strip()
|
vals[self.table_items[i]] = get_text(td).strip()
|
||||||
i += 1
|
i += 1
|
||||||
vals['engine_url'] = self.url
|
vals['engine_url'] = self.url
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
isohunt: 1.01
|
isohunt: 1.01
|
||||||
torrentreactor: 1.02
|
torrentreactor: 1.02
|
||||||
btjunkie: 1.12
|
btjunkie: 1.12
|
||||||
mininova: 1.12
|
mininova: 1.13
|
||||||
piratebay: 1.01
|
piratebay: 1.01
|
||||||
|
|||||||
Reference in New Issue
Block a user