mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
puntotorrent: add config sort options #6821
add xbtit tag add torrent per page info
This commit is contained in:
@@ -91,9 +91,38 @@
|
|||||||
- {id: 98, cat: Other, desc: "Otros formatos - Adulto (+18)"}
|
- {id: 98, cat: Other, desc: "Otros formatos - Adulto (+18)"}
|
||||||
- {id: 99, cat: Other, desc: "Otros formatos - Música"}
|
- {id: 99, cat: Other, desc: "Otros formatos - Música"}
|
||||||
- {id: 10, cat: Other, desc: "Otros formatos - Estrenos"}
|
- {id: 10, cat: Other, desc: "Otros formatos - Estrenos"}
|
||||||
|
|
||||||
modes:
|
modes:
|
||||||
search: [q]
|
search: [q]
|
||||||
|
|
||||||
|
settings:
|
||||||
|
- name: username
|
||||||
|
type: text
|
||||||
|
label: Username
|
||||||
|
- name: password
|
||||||
|
type: password
|
||||||
|
label: Password
|
||||||
|
- name: sort
|
||||||
|
type: select
|
||||||
|
label: Sort requested from site
|
||||||
|
default: "3"
|
||||||
|
options:
|
||||||
|
"3": "created"
|
||||||
|
"5": "seeders"
|
||||||
|
"4": "size"
|
||||||
|
"2": "title"
|
||||||
|
- name: type
|
||||||
|
type: select
|
||||||
|
label: Order requested from site
|
||||||
|
default: "2"
|
||||||
|
options:
|
||||||
|
"2": "desc"
|
||||||
|
"1": "asc"
|
||||||
|
- name: info
|
||||||
|
type: info
|
||||||
|
label: Results Per Page
|
||||||
|
default: For best results, change the <b>Torrents per page:</b> setting to <b>100</b> on your account profile.
|
||||||
|
|
||||||
login:
|
login:
|
||||||
path: index.php?page=login
|
path: index.php?page=login
|
||||||
method: post
|
method: post
|
||||||
@@ -116,12 +145,16 @@
|
|||||||
- name: re_replace
|
- name: re_replace
|
||||||
args: ["[^a-zA-Z0-9]+", " "]
|
args: ["[^a-zA-Z0-9]+", " "]
|
||||||
inputs:
|
inputs:
|
||||||
page: "torrents"
|
page: torrents
|
||||||
$raw: "&category={{range .Categories}}{{.}};{{end}}"
|
$raw: "&category={{range .Categories}}{{.}};{{end}}"
|
||||||
active: "1"
|
active: 1
|
||||||
search: "{{ .Keywords }}"
|
search: "{{ .Keywords }}"
|
||||||
|
order: "{{ .Config.sort }}"
|
||||||
|
by: "{{ .Config.type }}"
|
||||||
|
|
||||||
rows:
|
rows:
|
||||||
selector: "#mcol .block-content-l table table.lista > tbody > tr:not(:first-child):not(.descripcion)"
|
selector: "#mcol .block-content-l table table.lista > tbody > tr:not(:first-child):not(.descripcion)"
|
||||||
|
|
||||||
fields:
|
fields:
|
||||||
category:
|
category:
|
||||||
selector: td:nth-child(1) a
|
selector: td:nth-child(1) a
|
||||||
@@ -195,11 +228,12 @@
|
|||||||
attribute: href
|
attribute: href
|
||||||
downloadvolumefactor:
|
downloadvolumefactor:
|
||||||
case:
|
case:
|
||||||
img[src$="golden.gif"]: "0"
|
img[src$="golden.gif"]: 0
|
||||||
img[src$="silver.gif"]: "0.5"
|
img[src$="silver.gif"]: 0.5
|
||||||
"*": "1"
|
"*": 1
|
||||||
uploadvolumefactor:
|
uploadvolumefactor:
|
||||||
case:
|
case:
|
||||||
img[src$="x2.gif"]: "2"
|
img[src$="x2.gif"]: 2
|
||||||
img[src$="x3.gif"]: "3"
|
img[src$="x3.gif"]: 3
|
||||||
"*": "1"
|
"*": 1
|
||||||
|
# xbtit 2.3.0
|
||||||
|
Reference in New Issue
Block a user