mirror of
https://github.com/Jackett/Jackett
synced 2025-03-10 14:14:25 +00:00
thesceneplace: improve row field detection. resolves #12992
With some user ranks being presented with different torrent page layouts, we now grab the date, seeds, leech and grabs from an anchor off the download column. and the size can skip the uploader column if present.
This commit is contained in:
parent
8922a45287
commit
c88c7e5dce
1 changed files with 6 additions and 6 deletions
|
@ -132,24 +132,24 @@ search:
|
|||
download:
|
||||
selector: a[href^="download.php?id="]
|
||||
attribute: href
|
||||
superuser:
|
||||
uploader:
|
||||
selector: a[href^="index.php?page=userdetails"]
|
||||
optional: true
|
||||
date:
|
||||
selector: "{{ if .Result.superuser }}td:nth-last-child(10){{ else }}td:nth-last-child(8){{ end }}"
|
||||
selector: td:has(a[href^="download.php?id="]) ~ td
|
||||
filters:
|
||||
- name: append
|
||||
args: " +00:00" # auto adjusted by site account profile
|
||||
- name: dateparse
|
||||
args: "02/01/2006 -07:00"
|
||||
seeders:
|
||||
selector: "{{ if .Result.superuser }}td:nth-last-child(9){{ else }}td:nth-last-child(7){{ end }}"
|
||||
selector: td:has(a[href^="download.php?id="]) ~ td ~ td
|
||||
leechers:
|
||||
selector: "{{ if .Result.superuser }}td:nth-last-child(8){{ else }}td:nth-last-child(6){{ end }}"
|
||||
selector: td:has(a[href^="download.php?id="]) ~ td ~ td ~ td
|
||||
grabs:
|
||||
selector: "{{ if .Result.superuser }}td:nth-last-child(7){{ else }}td:nth-last-child(5){{ end }}"
|
||||
selector: td:has(a[href^="download.php?id="]) ~ td ~ td ~ td ~ td
|
||||
size:
|
||||
selector: "{{ if .Result.superuser }}td:nth-last-child(5){{ else }}td:nth-last-child(4){{ end }}"
|
||||
selector: "td:has(a[href^=\"download.php?id=\"]) ~ td ~ td ~ td ~ td ~ td{{ if .Result.uploader }} ~ td{{ else }}{{ end }}"
|
||||
downloadvolumefactor:
|
||||
case:
|
||||
img[src="images/freeleech.gif"]: 0
|
||||
|
|
Loading…
Add table
Reference in a new issue