mirror of
https://github.com/Jackett/Jackett
synced 2025-01-20 14:39:31 +00:00
punkshorror: various improvements
- find full title if available - filter rows with andmatch to avoid unrelated matches - use ULVF - add multi category filtering
This commit is contained in:
parent
1710d0f04b
commit
d034213ea1
1 changed files with 17 additions and 5 deletions
|
@ -87,8 +87,7 @@ search:
|
|||
paths:
|
||||
- path: browse.php
|
||||
inputs:
|
||||
# site does not support multiple cats
|
||||
cat: 0
|
||||
$raw: "{{ range .Categories }}c{{.}}=1&{{end}}"
|
||||
onlyname: 1
|
||||
search: "{{ .Keywords }}"
|
||||
# 0 active, 1 all, 2 deadonly, 3 freeleech
|
||||
|
@ -99,6 +98,8 @@ search:
|
|||
|
||||
rows:
|
||||
selector: table.alap99 > tbody#linkhatter > tr
|
||||
filters:
|
||||
- name: andmatch
|
||||
|
||||
fields:
|
||||
category:
|
||||
|
@ -107,8 +108,16 @@ search:
|
|||
filters:
|
||||
- name: querystring
|
||||
args: cat
|
||||
title_default:
|
||||
# can be abbreviated
|
||||
selector: a[href^="details.php?id="]
|
||||
title_optional:
|
||||
# usually full length
|
||||
selector: a[href^="details.php?id="]
|
||||
attribute: title
|
||||
optional: true
|
||||
title:
|
||||
selector: td[align="left"] > a.altlink > b
|
||||
text: "{{ if .Result.title_optional }}{{ .Result.title_optional }}{{ else }}{{ .Result.title_default }}{{ end }}"
|
||||
details:
|
||||
selector: a[href^="details.php?id="]
|
||||
attribute: href
|
||||
|
@ -140,7 +149,7 @@ search:
|
|||
grabs:
|
||||
selector: td:nth-last-child(4)
|
||||
seeders:
|
||||
selector: td:nth-last-child(3) font
|
||||
selector: td:nth-last-child(3)
|
||||
leechers:
|
||||
selector: td:nth-last-child(2)
|
||||
downloadvolumefactor:
|
||||
|
@ -148,7 +157,10 @@ search:
|
|||
img[src="pic/golden.gif"]: 0
|
||||
"*": 1
|
||||
uploadvolumefactor:
|
||||
text: 1
|
||||
selector: td:nth-child(7) > center > b > font
|
||||
filters:
|
||||
- name: regexp
|
||||
args: (\d+)
|
||||
minimumratio:
|
||||
text: 0.8
|
||||
minimumseedtime:
|
||||
|
|
Loading…
Reference in a new issue