mirror of https://github.com/Jackett/Jackett
deildu: add imdbid search. #4859
This commit is contained in:
parent
0aacf6344d
commit
fba3e1922f
|
@ -26,9 +26,9 @@
|
||||||
- {id: 8, cat: TV, desc: "TV shows"}
|
- {id: 8, cat: TV, desc: "TV shows"}
|
||||||
|
|
||||||
modes:
|
modes:
|
||||||
search: [q]
|
search: [q, imdbid]
|
||||||
tv-search: [q, season, ep]
|
tv-search: [q, season, ep, imdbid]
|
||||||
movie-search: [q]
|
movie-search: [q, imdbid]
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
- name: username
|
- name: username
|
||||||
|
@ -69,10 +69,14 @@
|
||||||
- path: browse.php
|
- path: browse.php
|
||||||
inputs:
|
inputs:
|
||||||
$raw: "{{ range .Categories }}c{{.}}=1&{{end}}"
|
$raw: "{{ range .Categories }}c{{.}}=1&{{end}}"
|
||||||
search: "{{ .Keywords }}"
|
search: "{{ if .Query.IMDBID }}{{ .Query.IMDBID }}{{else}}{{ .Keywords }}{{end}}"
|
||||||
|
# active 1 incldead 2 onlydead
|
||||||
incldead: 1
|
incldead: 1
|
||||||
|
# 1 = look in description
|
||||||
|
Lysing: "{{ if .Query.IMDBID }}1{{else}}{{end}}"
|
||||||
sort: "{{ .Config.sort }}"
|
sort: "{{ .Config.sort }}"
|
||||||
type: "{{ .Config.type }}"
|
type: "{{ .Config.type }}"
|
||||||
|
# does not return imdb links
|
||||||
|
|
||||||
rows:
|
rows:
|
||||||
selector: table[class="torrentlist"] > tbody > tr:has(a[href*="details.php?id="])
|
selector: table[class="torrentlist"] > tbody > tr:has(a[href*="details.php?id="])
|
||||||
|
|
Loading…
Reference in New Issue