mirror of
https://github.com/Jackett/Jackett
synced 2025-03-04 18:59:01 +00:00
hdarea: new row selectors. #15525
This commit is contained in:
parent
103342bdc8
commit
ac26992998
1 changed files with 12 additions and 7 deletions
|
@ -81,6 +81,11 @@ login:
|
||||||
path: index.php
|
path: index.php
|
||||||
selector: a[href="usercp.php"]
|
selector: a[href="usercp.php"]
|
||||||
|
|
||||||
|
download:
|
||||||
|
selectors:
|
||||||
|
- selector: a[href^="download.php?id="]
|
||||||
|
attribute: href
|
||||||
|
|
||||||
search:
|
search:
|
||||||
paths:
|
paths:
|
||||||
- path: torrents.php
|
- path: torrents.php
|
||||||
|
@ -127,7 +132,7 @@ search:
|
||||||
attribute: href
|
attribute: href
|
||||||
date_elapsed:
|
date_elapsed:
|
||||||
# time type: time elapsed (default)
|
# time type: time elapsed (default)
|
||||||
selector: td:nth-child(4) > span[title]
|
selector: td.rowfollow:nth-last-child(6) > span[title]
|
||||||
attribute: title
|
attribute: title
|
||||||
optional: true
|
optional: true
|
||||||
filters:
|
filters:
|
||||||
|
@ -137,7 +142,7 @@ search:
|
||||||
args: "yyyy-MM-dd HH:mm:ss zzz"
|
args: "yyyy-MM-dd HH:mm:ss zzz"
|
||||||
date_added:
|
date_added:
|
||||||
# time added
|
# time added
|
||||||
selector: td:nth-child(4):not(:has(span))
|
selector: td.rowfollow:nth-last-child(6):not(:has(span))
|
||||||
optional: true
|
optional: true
|
||||||
filters:
|
filters:
|
||||||
- name: append
|
- name: append
|
||||||
|
@ -147,13 +152,13 @@ search:
|
||||||
date:
|
date:
|
||||||
text: "{{ if or .Result.date_elapsed .Result.date_added }}{{ or .Result.date_elapsed .Result.date_added }}{{ else }}now{{ end }}"
|
text: "{{ if or .Result.date_elapsed .Result.date_added }}{{ or .Result.date_elapsed .Result.date_added }}{{ else }}now{{ end }}"
|
||||||
size:
|
size:
|
||||||
selector: td:nth-child(5)
|
selector: td.rowfollow:nth-last-child(5)
|
||||||
seeders:
|
seeders:
|
||||||
selector: td:nth-child(6)
|
selector: td.rowfollow:nth-last-child(4)
|
||||||
leechers:
|
leechers:
|
||||||
selector: td:nth-child(7)
|
selector: td.rowfollow:nth-last-child(3)
|
||||||
grabs:
|
grabs:
|
||||||
selector: td:nth-child(8)
|
selector: td.rowfollow:nth-last-child(2)
|
||||||
downloadvolumefactor:
|
downloadvolumefactor:
|
||||||
case:
|
case:
|
||||||
img.pro_free: 0
|
img.pro_free: 0
|
||||||
|
@ -173,4 +178,4 @@ search:
|
||||||
description:
|
description:
|
||||||
selector: td:nth-child(2)
|
selector: td:nth-child(2)
|
||||||
remove: a, b, font, img, span
|
remove: a, b, font, img, span
|
||||||
# NexusPHP Standard v1.5 Beta 4
|
# NexusPHP Standard v1.5 Beta 4 (customised)
|
||||||
|
|
Loading…
Add table
Reference in a new issue