mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
bitspyder: fix category filtering and improve term search (#13965)
This commit is contained in:
@@ -93,6 +93,7 @@ search:
|
|||||||
paths:
|
paths:
|
||||||
- path: browse.php
|
- path: browse.php
|
||||||
inputs:
|
inputs:
|
||||||
|
$raw: "{{ range .Categories }}c{{.}}=1&{{end}}"
|
||||||
search: "{{ .Keywords }}"
|
search: "{{ .Keywords }}"
|
||||||
# 0 active, 1 incldead, 2 onlydead
|
# 0 active, 1 incldead, 2 onlydead
|
||||||
incldead: 1
|
incldead: 1
|
||||||
@@ -101,10 +102,15 @@ search:
|
|||||||
sort: "{{ .Config.sort }}"
|
sort: "{{ .Config.sort }}"
|
||||||
type: "{{ .Config.type }}"
|
type: "{{ .Config.type }}"
|
||||||
|
|
||||||
|
keywordsfilters:
|
||||||
|
- name: re_replace
|
||||||
|
args: ["\\s+", " "] # More than 1 space to 1 space
|
||||||
|
- name: re_replace
|
||||||
|
args: ["(\\w+)", "+$1"] # prepend + to each word
|
||||||
|
- name: trim
|
||||||
|
|
||||||
rows:
|
rows:
|
||||||
selector: table > tbody > tr[class]
|
selector: table > tbody > tr[class]
|
||||||
filters:
|
|
||||||
- name: andmatch
|
|
||||||
|
|
||||||
fields:
|
fields:
|
||||||
# there are two styles, we support both
|
# there are two styles, we support both
|
||||||
|
Reference in New Issue
Block a user