-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a15ca29
commit bf7142b
Showing
1 changed file
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<?xml version="1.0"?> | ||
<!-- ***** BEGIN LICENSE BLOCK ***** | ||
- Version: MPL 1.1 | ||
- | ||
- The contents of this file are subject to the Mozilla Public License Version | ||
- 1.1 (the "License"); you may not use this file except in compliance with | ||
- the License. You may obtain a copy of the License at | ||
- http://www.mozilla.org/MPL/ | ||
- | ||
- Software distributed under the License is distributed on an "AS IS" basis, | ||
- WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License | ||
- for the specific language governing rights and limitations under the | ||
- License. | ||
- | ||
- The Original Code is IRC Auto Downloader. | ||
- | ||
- The Initial Developer of the Original Code is | ||
- David Nilsson. | ||
- Portions created by the Initial Developer are Copyright (C) 2010, 2011 | ||
- the Initial Developer. All Rights Reserved. | ||
- | ||
- Contributor(s): | ||
- | ||
- ***** END LICENSE BLOCK ***** --> | ||
|
||
<trackerinfo | ||
type="athd" | ||
shortName="ATHD" | ||
longName="AtomicHD" | ||
siteName="atomichd.org"> | ||
|
||
<settings> | ||
<description text="Go to AtomicHD site and click on your username to find your passkey."/> | ||
<passkey tooltiptext="Copy the passkey from your details page"/> | ||
</settings> | ||
|
||
<servers> | ||
<server | ||
netowrk="AtomicHD" | ||
serverNames="irc.atomichd.org" | ||
channelNames="#athd.announce" | ||
announcerNames="ATHD" | ||
/> | ||
</servers> | ||
|
||
<parseinfo> | ||
<linepatterns> | ||
<extract> | ||
<!--[TV/x264] Black Sails S04E02 720p HDTV x264-FLEET - https://atomichd.org/details.php?id=110 - 939.14 MB--> | ||
<!--[Movies/XviD] Lavender 2016 HDRip XviD AC3-EVO - https://atomichd.org/details.php?id=106 - 1.40 GB--> | ||
<regex value="\[(.*?)\] (.*?) - (https?://.*/).*id=(\d+) - (.*)"/> | ||
<vars> | ||
<var name="category"/> | ||
<var name="torrentName"/> | ||
<var name="$baseUrl"/> | ||
<var name="$torrentId"/> | ||
<var name="$torrentSize"/> | ||
</vars> | ||
</extract> | ||
</linepatterns> | ||
<linematched> | ||
<var name="torrentUrl"> | ||
<var name="$baseUrl"/> | ||
<string value="download.php?torrent="/> | ||
<var name="$torrentId"/> | ||
<string value="&torrent_pass="/> | ||
<var name="passkey"/> | ||
</var> | ||
</linematched> | ||
<ignore> | ||
</ignore> | ||
</parseinfo> | ||
</trackerinfo> |