mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
ilcorsaronero: use infohash
code tidy add date TZ
This commit is contained in:
@@ -57,12 +57,12 @@ settings:
|
|||||||
|
|
||||||
search:
|
search:
|
||||||
paths:
|
paths:
|
||||||
- path: "{{if .Keywords}}advsearch.php?&category={{range .Categories}}{{.}};{{end}}&search={{ .Keywords}}&order=data&by=DESC&page=0{{else}}/browse/0{{end}}"
|
- path: "{{ if .Keywords }}advsearch.php?&category={{ range .Categories }}{{ . }};{{end}}&search={{ .Keywords }}&order=data&by=DESC&page=0{{ else }}/browse/0{{ end }}"
|
||||||
- path: "{{if .Keywords}}advsearch.php?&category={{range .Categories}}{{.}};{{end}}&search={{ .Keywords}}&order=data&by=DESC&page=1{{else}}/browse/1{{end}}"
|
- path: "{{ if .Keywords }}advsearch.php?&category={{ range .Categories }}{{ . }};{{end}}&search={{ .Keywords }}&order=data&by=DESC&page=1{{ else }}/browse/1{{ end }}"
|
||||||
- path: "{{if .Keywords}}advsearch.php?&category={{range .Categories}}{{.}};{{end}}&search={{ .Keywords}}&order=data&by=DESC&page=2{{else}}/browse/2{{end}}"
|
- path: "{{ if .Keywords }}advsearch.php?&category={{ range .Categories }}{{ . }};{{end}}&search={{ .Keywords }}&order=data&by=DESC&page=2{{ else }}/browse/2{{ end }}"
|
||||||
- path: "{{if .Keywords}}advsearch.php?&category={{range .Categories}}{{.}};{{end}}&search={{ .Keywords}}&order=data&by=DESC&page=3{{else}}/browse/3{{end}}"
|
- path: "{{ if .Keywords }}advsearch.php?&category={{ range .Categories }}{{ . }};{{end}}&search={{ .Keywords }}&order=data&by=DESC&page=3{{ else }}/browse/3{{ end }}"
|
||||||
- path: "{{if .Keywords}}advsearch.php?&category={{range .Categories}}{{.}};{{end}}&search={{ .Keywords}}&order=data&by=DESC&page=4{{else}}/browse/4{{end}}"
|
- path: "{{ if .Keywords }}advsearch.php?&category={{ range .Categories }}{{ . }};{{end}}&search={{ .Keywords }}&order=data&by=DESC&page=4{{ else }}/browse/4{{ end }}"
|
||||||
- path: "{{if .Keywords}}advsearch.php?&category={{range .Categories}}{{.}};{{end}}&search={{ .Keywords}}&order=data&by=DESC&page=5{{else}}/browse/5{{end}}"
|
- path: "{{ if .Keywords }}advsearch.php?&category={{ range .Categories }}{{ . }};{{end}}&search={{ .Keywords }}&order=data&by=DESC&page=5{{ else }}/browse/5{{ end }}"
|
||||||
keywordsfilters:
|
keywordsfilters:
|
||||||
- name: re_replace # S01 to 1
|
- name: re_replace # S01 to 1
|
||||||
args: ["(?i)\\bS0*(\\d+)\\b", "$1"]
|
args: ["(?i)\\bS0*(\\d+)\\b", "$1"]
|
||||||
@@ -75,6 +75,12 @@ search:
|
|||||||
- name: andmatch
|
- name: andmatch
|
||||||
|
|
||||||
fields:
|
fields:
|
||||||
|
category:
|
||||||
|
selector: td:nth-child(1) a
|
||||||
|
attribute: href
|
||||||
|
filters:
|
||||||
|
- name: split
|
||||||
|
args: ["/", -1]
|
||||||
title:
|
title:
|
||||||
selector: td:nth-child(2) a.tab
|
selector: td:nth-child(2) a.tab
|
||||||
attribute: href
|
attribute: href
|
||||||
@@ -105,12 +111,6 @@ search:
|
|||||||
args: ["(?i)\\b(?:Puntate\\s*)(\\d+)\\s?(\\d+)", "E0$1-0$2"]
|
args: ["(?i)\\b(?:Puntate\\s*)(\\d+)\\s?(\\d+)", "E0$1-0$2"]
|
||||||
- name: re_replace # rimozioni varie
|
- name: re_replace # rimozioni varie
|
||||||
args: ["(?i)(Serie completa|Completat?a?|in pausa)", ""]
|
args: ["(?i)(Serie completa|Completat?a?|in pausa)", ""]
|
||||||
category:
|
|
||||||
selector: td:nth-child(1) a
|
|
||||||
attribute: href
|
|
||||||
filters:
|
|
||||||
- name: split
|
|
||||||
args: ["/", -1]
|
|
||||||
description:
|
description:
|
||||||
selector: td:nth-child(1) a
|
selector: td:nth-child(1) a
|
||||||
attribute: href
|
attribute: href
|
||||||
@@ -131,22 +131,19 @@ search:
|
|||||||
- name: append
|
- name: append
|
||||||
args: ".torrent"
|
args: ".torrent"
|
||||||
download:
|
download:
|
||||||
text: "{{if .Config.itorrents-links}}{{ .Result.download-itorrents }}{{else}}{{end}}"
|
text: "{{ if .Config.itorrents-links }}{{ .Result.download-itorrents }}{{ else }}{{ end }}"
|
||||||
magnet:
|
infohash:
|
||||||
selector: input.downarrow
|
selector: input.downarrow
|
||||||
attribute: value
|
attribute: value
|
||||||
filters:
|
|
||||||
- name: prepend
|
|
||||||
args: "magnet:?xt=urn:btih:"
|
|
||||||
- name: append
|
|
||||||
args: "&dn={{ .Result.title }}.torrent&tr=udp://tracker.coppersurfer.tk:6969&tr=udp://tracker.leechers-paradise.org:6969&tr=udp://tracker.opentrackr.org:1337"
|
|
||||||
size:
|
size:
|
||||||
selector: td:nth-child(3) font
|
selector: td:nth-child(3) font
|
||||||
date:
|
date:
|
||||||
selector: td:nth-child(5) font
|
selector: td:nth-child(5) font
|
||||||
filters:
|
filters:
|
||||||
|
- name: append
|
||||||
|
args: " +01:00" # CET
|
||||||
- name: dateparse
|
- name: dateparse
|
||||||
args: "02.01.06"
|
args: "02.01.06 -07:00"
|
||||||
seeders:
|
seeders:
|
||||||
selector: td:nth-child(6) font
|
selector: td:nth-child(6) font
|
||||||
filters:
|
filters:
|
||||||
|
Reference in New Issue
Block a user