Advertisement
Guest User

Untitled

a guest
Aug 13th, 2016
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <!-- ***** BEGIN LICENSE BLOCK *****
  3. - Version: MPL 1.1
  4. -
  5. - The contents of this file are subject to the Mozilla Public License Version
  6. - 1.1 (the "License"); you may not use this file except in compliance with
  7. - the License. You may obtain a copy of the License at
  8. - http://www.mozilla.org/MPL/
  9. -
  10. - Software distributed under the License is distributed on an "AS IS" basis,
  11. - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12. - for the specific language governing rights and limitations under the
  13. - License.
  14. -
  15. - The Original Code is IRC Auto Downloader.
  16. -
  17. - The Initial Developer of the Original Code is
  18. - David Nilsson.
  19. - Portions created by the Initial Developer are Copyright (C) 2010, 2011
  20. - the Initial Developer. All Rights Reserved.
  21. -
  22. - Contributor(s):
  23. -
  24. - ***** END LICENSE BLOCK ***** -->
  25.  
  26. <trackerinfo
  27. type="inf-t"
  28. shortName="INF-T"
  29. longName="Infinity-T"
  30. siteName="https://infinity-t.org">
  31.  
  32. <settings>
  33. <description text="Paste (Ctrl+V) any Infinity-T torrent direct download (RSS) link into the text box below to automatically extract passkey."/>
  34. <passkey
  35. tooltiptext="The passkey in your Infinity-T RSS feed."
  36. pasteRegex="[&amp;]passkey=([\da-fA-F]{32})"/>
  37. </settings>
  38.  
  39. <servers>
  40. <server
  41. network="Infinity-T"
  42. serverNames="irc.infinity-t.org"
  43. channelNames="#announce"
  44. announcerNames="Infinity-T"
  45. />
  46. </servers>
  47.  
  48. <parseinfo>
  49. <linepatterns>
  50. <extract>
  51. <!-- NEW TORRENT :: Class.Dismissed.S01E05.VIP.WEB.h264-ROFL :: TV/SD :: https://infinity-t.org/details.php?id=743 :: 188.93 MB [FREELEECH] -->
  52. <!-- NEW TORRENT :: 60.Days.In.S01.Where.Are.They.Now.Special.HDTV.x264-W4F :: TV/Boxset :: https://infinity-t.org/details.php?id=491 :: 249.64 MB -->
  53. <regex value="NEW TORRENT :: (.*) :: (.*) :: https?\:\/\/([^\/]+\/).*[&amp;\?]id=(\d+) :: (.*) (\[FREELEECH\])"/>
  54. <vars>
  55. <var name="torrentName"/>
  56. <var name="category"/>
  57. <var name="$baseUrl"/>
  58. <var name="$torrentId"/>
  59. <var name="torrentSize"/>
  60. <var name="$freeleech"/>
  61. </vars>
  62. </extract>
  63. </linepatterns>
  64. <linematched>
  65. <setregex srcvar="$freeleech" regex="FREELEECH" varName="freeleech" newValue="true"/>
  66.  
  67. <var name="torrentUrl">
  68. <string value="http://"/>
  69. <var name="$baseUrl"/>
  70. <string value="download.php?torrent="/>
  71. <var name="$torrentId"/>
  72. <string value="&amp;pkey="/>
  73. <var name="passkey"/>
  74. </var>
  75. </linematched>
  76. <ignore>
  77. </ignore>
  78. </parseinfo>
  79. </trackerinfo>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement