mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
totallykids: add imdb search. #4859
This commit is contained in:
@@ -59,6 +59,7 @@
|
|||||||
search: [q, imdbid]
|
search: [q, imdbid]
|
||||||
tv-search: [q, season, ep, imdbid]
|
tv-search: [q, season, ep, imdbid]
|
||||||
movie-search: [q, imdbid]
|
movie-search: [q, imdbid]
|
||||||
|
music-search: [q]
|
||||||
|
|
||||||
login:
|
login:
|
||||||
path: index.php?page=login
|
path: index.php?page=login
|
||||||
@@ -81,8 +82,9 @@
|
|||||||
page: torrents
|
page: torrents
|
||||||
search: "{{ if .Query.IMDBID }}{{ .Query.IMDBID }}{{else}}{{ .Keywords }}{{end}}"
|
search: "{{ if .Query.IMDBID }}{{ .Query.IMDBID }}{{else}}{{ .Keywords }}{{end}}"
|
||||||
category: "{{ if .Categories }}{{ range .Categories }}{{.}};{{end}}{{else}}0{{end}}"
|
category: "{{ if .Categories }}{{ range .Categories }}{{.}};{{end}}{{else}}0{{end}}"
|
||||||
# options: 0=title, 1=title&descr, 2=descr
|
# 0=title, 1=title&descr, 2=descr
|
||||||
options: "{{ if .Query.IMDBID }}1{{else}}0{{end}}"
|
options: "{{ if .Query.IMDBID }}2{{else}}0{{end}}"
|
||||||
|
# 0 all 1 activeonly 2 deadonly
|
||||||
active: 0
|
active: 0
|
||||||
order: "{{ .Config.sort }}"
|
order: "{{ .Config.sort }}"
|
||||||
by: "{{ .Config.type }}"
|
by: "{{ .Config.type }}"
|
||||||
|
@@ -50,9 +50,9 @@
|
|||||||
- {id: 24, cat: TV, desc: "Teens"}
|
- {id: 24, cat: TV, desc: "Teens"}
|
||||||
|
|
||||||
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]
|
||||||
music-search: [q]
|
music-search: [q]
|
||||||
|
|
||||||
login:
|
login:
|
||||||
@@ -74,10 +74,10 @@
|
|||||||
- path: index.php
|
- path: index.php
|
||||||
inputs:
|
inputs:
|
||||||
page: torrents
|
page: torrents
|
||||||
search: "{{ if .Keywords }}{{ .Keywords }}{{else}}{{end}}"
|
search: "{{ if .Query.IMDBID }}{{ .Query.IMDBID }}{{else}}{{ .Keywords }}{{end}}"
|
||||||
category: "{{ if .Categories }}{{ range .Categories }}{{.}};{{end}}{{else}}0{{end}}"
|
category: "{{ if .Categories }}{{ range .Categories }}{{.}};{{end}}{{else}}0{{end}}"
|
||||||
# 0 filename 1 file&descr 2 descr
|
# 0=title, 1=title&descr, 2=descr
|
||||||
options: 0
|
options: "{{ if .Query.IMDBID }}2{{else}}0{{end}}"
|
||||||
# 0 all 1 activeonly 2 deadonly
|
# 0 all 1 activeonly 2 deadonly
|
||||||
active: 0
|
active: 0
|
||||||
order: "{{ .Config.sort }}"
|
order: "{{ .Config.sort }}"
|
||||||
|
Reference in New Issue
Block a user