mirror of
https://github.com/Jackett/Jackett
synced 2025-02-24 15:21:06 +00:00
Add TNTVillage tracker
This commit is contained in:
parent
c0fa02d9a4
commit
38f78e116c
3 changed files with 67 additions and 1 deletions
|
@ -19,7 +19,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
|||
|
||||
### Supported Public Trackers
|
||||
* EZTV
|
||||
* Il Corsaro Nero
|
||||
* Il Corsaro Nero <!-- maintained by bonny1992 -->
|
||||
* Isohunt
|
||||
* KickAssTorrent
|
||||
* KickAssTorrent (kat.how clone)
|
||||
|
@ -28,6 +28,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
|||
* ShowRSS
|
||||
* Sky torrents
|
||||
* The Pirate Bay
|
||||
* TNTVillage
|
||||
* TorrentProject
|
||||
* Torrentz2
|
||||
|
||||
|
|
62
src/Jackett/Definitions/tntvillage.yml
Normal file
62
src/Jackett/Definitions/tntvillage.yml
Normal file
|
@ -0,0 +1,62 @@
|
|||
---
|
||||
site: tntvillage
|
||||
name: TNTVillage
|
||||
language: it-it
|
||||
type: public
|
||||
encoding: UTF-8
|
||||
links:
|
||||
- http://www.tntvillage.scambioetico.org/
|
||||
|
||||
caps:
|
||||
categorymappings:
|
||||
- {id: 4, cat: Movies, desc: "Movies category"}
|
||||
- {id: 2, cat: Audio, desc: "Music videos"}
|
||||
- {id: 29, cat: TV, desc: "TV Series"}
|
||||
- {id: 7, cat: TV/Anime, desc: "Animes"}
|
||||
- {id: 8, cat: TV/Anime, desc: "Cartoons"}
|
||||
- {id: 14, cat: TV/Documentary, desc: "Documentaries"}
|
||||
- {id: 30, cat: Books/Comics, desc: "Comics"}
|
||||
|
||||
modes:
|
||||
search: [q]
|
||||
tv-search: [q, season, ep]
|
||||
movie-search: [q]
|
||||
|
||||
settings: []
|
||||
|
||||
search:
|
||||
paths:
|
||||
- path: /src/releaselist.php
|
||||
method: post
|
||||
inputs:
|
||||
cat: 0
|
||||
page: 1
|
||||
srcrel: "{{ .Keywords }}"
|
||||
rows:
|
||||
selector: div.showrelease_tb table tbody tr:not(tr:nth-child(1))
|
||||
fields:
|
||||
title:
|
||||
selector: td:nth-child(7)
|
||||
category:
|
||||
selector: td:nth-child(3) a
|
||||
attribute: href
|
||||
filters:
|
||||
- name: split
|
||||
args: ["=", "-1"]
|
||||
details:
|
||||
selector: td:nth-child(7) a
|
||||
attribute: href
|
||||
download:
|
||||
selector: td:nth-child(1) a
|
||||
attribute: href
|
||||
magnet:
|
||||
selector: td:nth-child(2) a
|
||||
attribute: href
|
||||
seeders:
|
||||
selector: td:nth-child(5)
|
||||
leechers:
|
||||
selector: td:nth-child(4)
|
||||
downloadvolumefactor:
|
||||
text: "0"
|
||||
uploadvolumefactor:
|
||||
text: "1"
|
|
@ -701,6 +701,9 @@
|
|||
<Content Include="Definitions\ultimategamerclub.yml">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="Definitions\tntvillage.yml">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<None Include="packages.config">
|
||||
<SubType>Designer</SubType>
|
||||
</None>
|
||||
|
|
Loading…
Reference in a new issue