From 06fb34ce6c8902d9de311a84328100735a661274 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 14 Apr 2012 17:57:15 -0700 Subject: [PATCH 1/4] Nzb Url column added. --- .../Datastore/Migrations/Migration20120414.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 NzbDrone.Core/Datastore/Migrations/Migration20120414.cs diff --git a/NzbDrone.Core/Datastore/Migrations/Migration20120414.cs b/NzbDrone.Core/Datastore/Migrations/Migration20120414.cs new file mode 100644 index 000000000..6c6e296aa --- /dev/null +++ b/NzbDrone.Core/Datastore/Migrations/Migration20120414.cs @@ -0,0 +1,15 @@ +using System.Data; +using Migrator.Framework; + +namespace NzbDrone.Core.Datastore.Migrations +{ + + [Migration(20120414)] + public class Migration20120414 : NzbDroneMigration + { + protected override void MainDbUpgrade() + { + Database.AddColumn("History", "Url", DbType.String, ColumnProperty.Null); + } + } +} \ No newline at end of file From ce0a6f8b86b56436adb2cc64c585a3e7eccfef0f Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Wed, 2 May 2012 08:37:09 -0700 Subject: [PATCH 2/4] NzbInfoUrl added to history and episode parse result, will be added to history item before being added to the DB. --- .../{Migration20120414.cs => Migration20120430.cs} | 6 +++--- NzbDrone.Core/Model/EpisodeParseResult.cs | 2 ++ NzbDrone.Core/Providers/DownloadProvider.cs | 2 +- NzbDrone.Core/Repository/History.cs | 1 + 4 files changed, 7 insertions(+), 4 deletions(-) rename NzbDrone.Core/Datastore/Migrations/{Migration20120414.cs => Migration20120430.cs} (50%) diff --git a/NzbDrone.Core/Datastore/Migrations/Migration20120414.cs b/NzbDrone.Core/Datastore/Migrations/Migration20120430.cs similarity index 50% rename from NzbDrone.Core/Datastore/Migrations/Migration20120414.cs rename to NzbDrone.Core/Datastore/Migrations/Migration20120430.cs index 6c6e296aa..ca949c36b 100644 --- a/NzbDrone.Core/Datastore/Migrations/Migration20120414.cs +++ b/NzbDrone.Core/Datastore/Migrations/Migration20120430.cs @@ -4,12 +4,12 @@ using Migrator.Framework; namespace NzbDrone.Core.Datastore.Migrations { - [Migration(20120414)] - public class Migration20120414 : NzbDroneMigration + [Migration(20120430)] + public class Migration20120430 : NzbDroneMigration { protected override void MainDbUpgrade() { - Database.AddColumn("History", "Url", DbType.String, ColumnProperty.Null); + Database.AddColumn("History", "NzbInfoUrl", DbType.String, ColumnProperty.Null); } } } \ No newline at end of file diff --git a/NzbDrone.Core/Model/EpisodeParseResult.cs b/NzbDrone.Core/Model/EpisodeParseResult.cs index b8375bef4..97a4a78a4 100644 --- a/NzbDrone.Core/Model/EpisodeParseResult.cs +++ b/NzbDrone.Core/Model/EpisodeParseResult.cs @@ -30,6 +30,8 @@ namespace NzbDrone.Core.Model public string NzbUrl { get; set; } + public string NzbInfoUrl { get; set; } + public string OriginalString { get; set; } public Series Series { get; set; } diff --git a/NzbDrone.Core/Providers/DownloadProvider.cs b/NzbDrone.Core/Providers/DownloadProvider.cs index 521491f4f..e70f87e74 100644 --- a/NzbDrone.Core/Providers/DownloadProvider.cs +++ b/NzbDrone.Core/Providers/DownloadProvider.cs @@ -52,7 +52,6 @@ namespace NzbDrone.Core.Providers { logger.Trace("Download added to Queue: {0}", downloadTitle); - foreach (var episode in _episodeProvider.GetEpisodesByParseResult(parseResult)) { var history = new History(); @@ -63,6 +62,7 @@ namespace NzbDrone.Core.Providers history.NzbTitle = parseResult.OriginalString; history.EpisodeId = episode.EpisodeId; history.SeriesId = episode.SeriesId; + history.NzbInfoUrl = parseResult.NzbInfoUrl; _historyProvider.Add(history); _episodeProvider.MarkEpisodeAsFetched(episode.EpisodeId); diff --git a/NzbDrone.Core/Repository/History.cs b/NzbDrone.Core/Repository/History.cs index d34d6c2b2..0c00ff2c9 100644 --- a/NzbDrone.Core/Repository/History.cs +++ b/NzbDrone.Core/Repository/History.cs @@ -16,6 +16,7 @@ namespace NzbDrone.Core.Repository public DateTime Date { get; set; } public bool IsProper { get; set; } public string Indexer { get; set; } + public string NzbInfoUrl { get; set; } [ResultColumn] public Episode Episode { get; set; } From b314ff5e822e92467be4c7ee06f7b190543b966f Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Wed, 2 May 2012 12:02:39 -0700 Subject: [PATCH 3/4] Added NzbInfoUrl to indexers. --- NzbDrone.Core.Test/IndexerTests.cs | 35 ++++++++++++++++++- .../ProviderTests/IndexerProviderTest.cs | 30 ++++++++++++++-- NzbDrone.Core/NzbDrone.Core.csproj | 1 + .../Providers/Indexer/FileSharingTalk.cs | 5 +++ .../Providers/Indexer/IndexerBase.cs | 8 +++++ NzbDrone.Core/Providers/Indexer/Newzbin.cs | 5 +++ NzbDrone.Core/Providers/Indexer/Newznab.cs | 5 +++ NzbDrone.Core/Providers/Indexer/NzbClub.cs | 5 +++ NzbDrone.Core/Providers/Indexer/NzbIndex.cs | 5 +++ NzbDrone.Core/Providers/Indexer/NzbMatrix.cs | 5 +++ NzbDrone.Core/Providers/Indexer/NzbsOrg.cs | 5 +++ NzbDrone.Core/Providers/Indexer/NzbsRUs.cs | 4 +++ NzbDrone.Core/Providers/Indexer/Wombles.cs | 4 +++ 13 files changed, 113 insertions(+), 4 deletions(-) diff --git a/NzbDrone.Core.Test/IndexerTests.cs b/NzbDrone.Core.Test/IndexerTests.cs index 417eaa5a8..4559f8deb 100644 --- a/NzbDrone.Core.Test/IndexerTests.cs +++ b/NzbDrone.Core.Test/IndexerTests.cs @@ -26,7 +26,6 @@ namespace NzbDrone.Core.Test // ReSharper disable InconsistentNaming public class IndexerTests : CoreTest { - [TestCase("nzbsorg.xml")] [TestCase("nzbsrus.xml")] [TestCase("newzbin.xml")] @@ -563,5 +562,39 @@ namespace NzbDrone.Core.Test Thread.CurrentThread.CurrentCulture = currentCulture; } + + [TestCase("nzbsorg.xml", "info")] + [TestCase("nzbsrus.xml", "info")] + [TestCase("newzbin.xml", "info")] + [TestCase("nzbmatrix.xml", "info")] + [TestCase("newznab.xml", "info")] + [TestCase("wombles.xml", "info")] + [TestCase("filesharingtalk.xml", "info")] + [TestCase("nzbindex.xml", "info")] + [TestCase("nzbclub.xml", "info")] + public void NzbInfoUrl_should_contain_information_string(string fileName, string expectedContent) + { + Mocker.GetMock() + .Setup(h => h.DownloadStream(It.IsAny(), It.IsAny())) + .Returns(File.OpenRead(".\\Files\\Rss\\" + fileName)); + + var fakeSettings = Builder.CreateNew().Build(); + Mocker.GetMock() + .Setup(c => c.GetSettings(It.IsAny())) + .Returns(fakeSettings); + + var mockIndexer = Mocker.Resolve(); + var parseResults = mockIndexer.FetchRss(); + + foreach (var episodeParseResult in parseResults) + { + episodeParseResult.NzbInfoUrl.Should().Contain(expectedContent); + } + + parseResults.Should().NotBeEmpty(); + parseResults.Should().OnlyContain(s => s.Indexer == mockIndexer.Name); + parseResults.Should().OnlyContain(s => !String.IsNullOrEmpty(s.OriginalString)); + parseResults.Should().OnlyContain(s => s.Age >= 0); + } } } diff --git a/NzbDrone.Core.Test/ProviderTests/IndexerProviderTest.cs b/NzbDrone.Core.Test/ProviderTests/IndexerProviderTest.cs index f8aed279b..7fc319096 100644 --- a/NzbDrone.Core.Test/ProviderTests/IndexerProviderTest.cs +++ b/NzbDrone.Core.Test/ProviderTests/IndexerProviderTest.cs @@ -141,11 +141,15 @@ namespace NzbDrone.Core.Test.ProviderTests get { return "Mocked Indexer"; } } - protected override string NzbDownloadUrl(SyndicationItem item) { return item.Links[0].Uri.ToString(); } + + protected override string NzbInfoUrl(SyndicationItem item) + { + return item.Links[1].Uri.ToString(); + } } public class TestUrlIndexer : IndexerBase @@ -194,6 +198,11 @@ namespace NzbDrone.Core.Test.ProviderTests { return "http://google.com"; } + + protected override string NzbInfoUrl(SyndicationItem item) + { + return "http://google.com"; + } } public class CustomParserIndexer : IndexerBase @@ -243,6 +252,11 @@ namespace NzbDrone.Core.Test.ProviderTests return "http://www.google.com"; } + protected override string NzbInfoUrl(SyndicationItem item) + { + return "http://www.google.com"; + } + protected override EpisodeParseResult CustomParser(SyndicationItem item, EpisodeParseResult currentResult) { if (currentResult == null) currentResult = new EpisodeParseResult(); @@ -297,6 +311,11 @@ namespace NzbDrone.Core.Test.ProviderTests { throw new NotImplementedException(); } + + protected override string NzbInfoUrl(SyndicationItem item) + { + throw new NotImplementedException(); + } } public class DefaultEnabledIndexer : IndexerBase @@ -345,12 +364,17 @@ namespace NzbDrone.Core.Test.ProviderTests { get { return "Mocked Indexer"; } } - - + protected override string NzbDownloadUrl(SyndicationItem item) { return item.Links[0].Uri.ToString(); } + + protected override string NzbInfoUrl(SyndicationItem item) + { + return item.Links[1].Uri.ToString(); + } + public override bool EnabledByDefault { get { return true; } diff --git a/NzbDrone.Core/NzbDrone.Core.csproj b/NzbDrone.Core/NzbDrone.Core.csproj index 6e960e097..8a4e71889 100644 --- a/NzbDrone.Core/NzbDrone.Core.csproj +++ b/NzbDrone.Core/NzbDrone.Core.csproj @@ -224,6 +224,7 @@ + diff --git a/NzbDrone.Core/Providers/Indexer/FileSharingTalk.cs b/NzbDrone.Core/Providers/Indexer/FileSharingTalk.cs index 645b89dda..ff0daadb1 100644 --- a/NzbDrone.Core/Providers/Indexer/FileSharingTalk.cs +++ b/NzbDrone.Core/Providers/Indexer/FileSharingTalk.cs @@ -68,6 +68,11 @@ namespace NzbDrone.Core.Providers.Indexer return item.Links[0].Uri.ToString(); } + protected override string NzbInfoUrl(SyndicationItem item) + { + return item.Links[0].Uri.ToString(); + } + protected override EpisodeParseResult CustomParser(SyndicationItem item, EpisodeParseResult currentResult) { if (currentResult != null) diff --git a/NzbDrone.Core/Providers/Indexer/IndexerBase.cs b/NzbDrone.Core/Providers/Indexer/IndexerBase.cs index af9bf25aa..3b8af79f5 100644 --- a/NzbDrone.Core/Providers/Indexer/IndexerBase.cs +++ b/NzbDrone.Core/Providers/Indexer/IndexerBase.cs @@ -97,6 +97,13 @@ namespace NzbDrone.Core.Providers.Indexer /// Download link URL protected abstract string NzbDownloadUrl(SyndicationItem item); + /// + /// Generates link to the NZB info at the indexer + /// + /// RSS Feed item to generate the link for + /// Nzb Info URL + protected abstract string NzbInfoUrl(SyndicationItem item); + /// /// Fetches RSS feed and process each news item. /// @@ -191,6 +198,7 @@ namespace NzbDrone.Core.Providers.Indexer if (parsedEpisode != null) { parsedEpisode.NzbUrl = NzbDownloadUrl(item); + parsedEpisode.NzbInfoUrl = NzbInfoUrl(item); parsedEpisode.Indexer = Name; result.Add(parsedEpisode); } diff --git a/NzbDrone.Core/Providers/Indexer/Newzbin.cs b/NzbDrone.Core/Providers/Indexer/Newzbin.cs index 74101a75b..733f70ce3 100644 --- a/NzbDrone.Core/Providers/Indexer/Newzbin.cs +++ b/NzbDrone.Core/Providers/Indexer/Newzbin.cs @@ -101,6 +101,11 @@ namespace NzbDrone.Core.Providers.Indexer return item.Id + "nzb"; } + protected override string NzbInfoUrl(SyndicationItem item) + { + return item.Links[0].Uri.ToString(); + } + protected override EpisodeParseResult CustomParser(SyndicationItem item, EpisodeParseResult currentResult) { if (currentResult != null) diff --git a/NzbDrone.Core/Providers/Indexer/Newznab.cs b/NzbDrone.Core/Providers/Indexer/Newznab.cs index 41e988dde..e6a9aa41c 100644 --- a/NzbDrone.Core/Providers/Indexer/Newznab.cs +++ b/NzbDrone.Core/Providers/Indexer/Newznab.cs @@ -74,6 +74,11 @@ namespace NzbDrone.Core.Providers.Indexer return item.Links[0].Uri.ToString(); } + protected override string NzbInfoUrl(SyndicationItem item) + { + return item.Links[0].Uri.ToString(); + } + protected override EpisodeParseResult CustomParser(SyndicationItem item, EpisodeParseResult currentResult) { if (currentResult != null) diff --git a/NzbDrone.Core/Providers/Indexer/NzbClub.cs b/NzbDrone.Core/Providers/Indexer/NzbClub.cs index f16fa0133..beed3893a 100644 --- a/NzbDrone.Core/Providers/Indexer/NzbClub.cs +++ b/NzbDrone.Core/Providers/Indexer/NzbClub.cs @@ -46,6 +46,11 @@ namespace NzbDrone.Core.Providers.Indexer return item.Links[0].Uri.ToString(); } + protected override string NzbInfoUrl(SyndicationItem item) + { + return item.Links[0].Uri.ToString(); + } + protected override IList GetEpisodeSearchUrls(string seriesTitle, int seasonNumber, int episodeNumber) { var searchUrls = new List(); diff --git a/NzbDrone.Core/Providers/Indexer/NzbIndex.cs b/NzbDrone.Core/Providers/Indexer/NzbIndex.cs index 675644891..69aacea8d 100644 --- a/NzbDrone.Core/Providers/Indexer/NzbIndex.cs +++ b/NzbDrone.Core/Providers/Indexer/NzbIndex.cs @@ -46,6 +46,11 @@ namespace NzbDrone.Core.Providers.Indexer return item.Links[1].Uri.ToString(); } + protected override string NzbInfoUrl(SyndicationItem item) + { + return item.Links[0].Uri.ToString(); + } + protected override IList GetEpisodeSearchUrls(string seriesTitle, int seasonNumber, int episodeNumber) { var searchUrls = new List(); diff --git a/NzbDrone.Core/Providers/Indexer/NzbMatrix.cs b/NzbDrone.Core/Providers/Indexer/NzbMatrix.cs index 1efadfc3f..922e33cf6 100644 --- a/NzbDrone.Core/Providers/Indexer/NzbMatrix.cs +++ b/NzbDrone.Core/Providers/Indexer/NzbMatrix.cs @@ -101,6 +101,11 @@ namespace NzbDrone.Core.Providers.Indexer return item.Links[0].Uri.ToString(); } + protected override string NzbInfoUrl(SyndicationItem item) + { + return item.Links[0].Uri.ToString(); + } + protected override EpisodeParseResult CustomParser(SyndicationItem item, EpisodeParseResult currentResult) { if (currentResult != null) diff --git a/NzbDrone.Core/Providers/Indexer/NzbsOrg.cs b/NzbDrone.Core/Providers/Indexer/NzbsOrg.cs index 3363f2e21..320d7a000 100644 --- a/NzbDrone.Core/Providers/Indexer/NzbsOrg.cs +++ b/NzbDrone.Core/Providers/Indexer/NzbsOrg.cs @@ -98,6 +98,11 @@ namespace NzbDrone.Core.Providers.Indexer return item.Id; } + protected override string NzbInfoUrl(SyndicationItem item) + { + return item.Links[0].Uri.ToString(); + } + protected override EpisodeParseResult CustomParser(SyndicationItem item, EpisodeParseResult currentResult) { if (currentResult != null) diff --git a/NzbDrone.Core/Providers/Indexer/NzbsRUs.cs b/NzbDrone.Core/Providers/Indexer/NzbsRUs.cs index d88c51abf..bc9024fce 100644 --- a/NzbDrone.Core/Providers/Indexer/NzbsRUs.cs +++ b/NzbDrone.Core/Providers/Indexer/NzbsRUs.cs @@ -49,6 +49,10 @@ namespace NzbDrone.Core.Providers.Indexer return item.Links[0].Uri.ToString(); } + protected override string NzbInfoUrl(SyndicationItem item) + { + return item.Links[0].Uri.ToString(); + } protected override IList GetEpisodeSearchUrls(string seriesTitle, int seasonNumber, int episodeNumber) { diff --git a/NzbDrone.Core/Providers/Indexer/Wombles.cs b/NzbDrone.Core/Providers/Indexer/Wombles.cs index efbb35e4f..3110afed5 100644 --- a/NzbDrone.Core/Providers/Indexer/Wombles.cs +++ b/NzbDrone.Core/Providers/Indexer/Wombles.cs @@ -45,6 +45,10 @@ namespace NzbDrone.Core.Providers.Indexer return item.Links[0].Uri.ToString(); } + protected override string NzbInfoUrl(SyndicationItem item) + { + return item.Links[0].Uri.ToString(); + } protected override IList GetEpisodeSearchUrls(string seriesTitle, int seasonNumber, int episodeNumber) { From 5aff4ab2402bdbc417ef319594e67da98995fa0a Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Wed, 2 May 2012 15:42:21 -0700 Subject: [PATCH 4/4] New: NzbInfoUrl added to history (link to NZB info at indexer) - Not supported for Womble's. --- NzbDrone.Core.Test/Files/RSS/nzbmatrix.xml | 738 +++++++++--------- NzbDrone.Core.Test/IndexerTests.cs | 201 ++++- .../ProviderTests/IndexerProviderTest.cs | 2 +- .../Providers/Indexer/FileSharingTalk.cs | 2 +- NzbDrone.Core/Providers/Indexer/Newznab.cs | 2 +- NzbDrone.Core/Providers/Indexer/NzbClub.cs | 2 +- NzbDrone.Core/Providers/Indexer/NzbMatrix.cs | 4 +- NzbDrone.Core/Providers/Indexer/Wombles.cs | 2 +- NzbDrone.Web/Controllers/HistoryController.cs | 3 +- NzbDrone.Web/Models/HistoryModel.cs | 1 + NzbDrone.Web/Scripts/NzbDrone/grid.js | 8 +- NzbDrone.Web/Views/History/Index.cshtml | 4 + 12 files changed, 573 insertions(+), 396 deletions(-) diff --git a/NzbDrone.Core.Test/Files/RSS/nzbmatrix.xml b/NzbDrone.Core.Test/Files/RSS/nzbmatrix.xml index 71872272e..faf8729a6 100644 --- a/NzbDrone.Core.Test/Files/RSS/nzbmatrix.xml +++ b/NzbDrone.Core.Test/Files/RSS/nzbmatrix.xml @@ -1,4 +1,4 @@ - + NZBMatrix.com RSS 2.0 @@ -6,497 +6,507 @@ NZBMatrix NZBMatrix.com RSS Feed - Usenet http://nzbmatrix.com - Copyright 2011 NZBMatrix - Mon, 25 Apr 2011 18:09:40 +0200 + Copyright 2012 NZBMatrix + Wed, 02 May 2012 21:36:24 +0200 - The New Inventors Save Water Special DVDRip XviD SPRiNTER - http://nzbmatrix.com/nzb-details.php?id=914525&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914525&hit=1 - Name: The New Inventors Save Water Special DVDRip XviD SPRiNTER
Category: TV: Divx/Xvid
Size: 1.58 GB
Added: 2011-04-25 15:12:38
Group: alt.binaries.multimedia
NFO: View NFO ]]>
- TV: Divx/Xvid - tv.divx/xvid + WKRP In Cincinnati 1x02 Pilot Episode pt2 par2 01 of 26 + http://api.nzbmatrix.com/v1.1/download.php?id=1265035&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1265035&username=NzbDrone&apikey=FAKEAPIKEY + Name: WKRP In Cincinnati 1x02 Pilot Episode pt2 par2 01 of 26
Category: TV: SD
Size: 271.58 MB
Added: 2012-05-02 18:27:26
Group: alt.binaries.classic.tv.shows
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- House S04E11 FRENCH 720p HDTV x264 BAWLS - http://nzbmatrix.com/nzb-details.php?id=914522&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914522&hit=1 - Name: House S04E11 FRENCH 720p HDTV x264 BAWLS
Category: TV: HD
Size: 1.24 GB
Added: 2011-04-25 15:06:58
Group: alt.binaries.multimedia
NFO: View NFO ]]>
- TV: HD - tv.hd - 41 - + repost 01 of 26 WKRP In Cincinnati 1x01 Pilot Episode pt1 par2 + http://api.nzbmatrix.com/v1.1/download.php?id=1265034&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1265034&username=NzbDrone&apikey=FAKEAPIKEY + Name: repost 01 of 26 WKRP In Cincinnati 1x01 Pilot Episode pt1 par2
Category: TV: SD
Size: 268.98 MB
Added: 2012-05-02 18:27:25
Group: alt.binaries.classic.tv.shows
View NZB: View ]]>
+ TV: SD + tv.sd + 6 +
- House S04E10 FRENCH 720p HDTV x264 BAWLS - http://nzbmatrix.com/nzb-details.php?id=914520&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914520&hit=1 - Name: House S04E10 FRENCH 720p HDTV x264 BAWLS
Category: TV: HD
Size: 1.24 GB
Added: 2011-04-25 15:06:25
Group: alt.binaries.multimedia
NFO: View NFO ]]>
- TV: HD - tv.hd - 41 - + WKRP In Cincinnati 1x11 The Contest Nobody Could Win par2 01 of 26 + http://api.nzbmatrix.com/v1.1/download.php?id=1265033&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1265033&username=NzbDrone&apikey=FAKEAPIKEY + Name: WKRP In Cincinnati 1x11 The Contest Nobody Could Win par2 01 of 26
Category: TV: SD
Size: 271.59 MB
Added: 2012-05-02 18:27:24
Group: alt.binaries.classic.tv.shows
View NZB: View ]]>
+ TV: SD + tv.sd + 6 +
- House S04E09 FRENCH 720p HDTV x264 BAWLS - http://nzbmatrix.com/nzb-details.php?id=914518&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914518&hit=1 - Name: House S04E09 FRENCH 720p HDTV x264 BAWLS
Category: TV: HD
Size: 1.24 GB
Added: 2011-04-25 15:05:26
Group: alt.binaries.multimedia
NFO: View NFO ]]>
- TV: HD - tv.hd - 41 - + WKRP In Cincinnati 1x10 A Date With Jennifer par2 01 of 26 + http://api.nzbmatrix.com/v1.1/download.php?id=1265032&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1265032&username=NzbDrone&apikey=FAKEAPIKEY + Name: WKRP In Cincinnati 1x10 A Date With Jennifer par2 01 of 26
Category: TV: SD
Size: 271.59 MB
Added: 2012-05-02 18:27:23
Group: alt.binaries.classic.tv.shows
View NZB: View ]]>
+ TV: SD + tv.sd + 6 +
- Breakout Kings S01E08 Steaks 720p WEB DL DD5 1 H 264 EbP - http://nzbmatrix.com/nzb-details.php?id=914497&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914497&hit=1 - Name: Breakout Kings S01E08 Steaks 720p WEB DL DD5 1 H 264 EbP
Category: TV: HD
Size: 1.48 GB
Added: 2011-04-25 14:16:41
Group: alt.binaries.hdtv ]]>
- TV: HD - tv.hd - 41 - + WKRP In Cincinnati 1x09 Mamas Review par2 01 of 26 + http://api.nzbmatrix.com/v1.1/download.php?id=1265031&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1265031&username=NzbDrone&apikey=FAKEAPIKEY + Name: WKRP In Cincinnati 1x09 Mamas Review par2 01 of 26
Category: TV: SD
Size: 271.60 MB
Added: 2012-05-02 18:27:23
Group: alt.binaries.classic.tv.shows
View NZB: View ]]>
+ TV: SD + tv.sd + 6 +
- Melrose Place 2009 S01E11 FRENCH 720p HDTV x264 HTO - http://nzbmatrix.com/nzb-details.php?id=914492&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914492&hit=1 - Name: Melrose Place 2009 S01E11 FRENCH 720p HDTV x264 HTO
Category: TV: HD
Size: 1.29 GB
Added: 2011-04-25 13:59:22
Group: alt.binaries.multimedia
NFO: View NFO ]]>
- TV: HD - tv.hd - 41 - + WKRP In Cincinnati 1x08 Love Returns par2 01 of 25 + http://api.nzbmatrix.com/v1.1/download.php?id=1265030&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1265030&username=NzbDrone&apikey=FAKEAPIKEY + Name: WKRP In Cincinnati 1x08 Love Returns par2 01 of 25
Category: TV: SD
Size: 253.21 MB
Added: 2012-05-02 18:27:21
Group: alt.binaries.classic.tv.shows
View NZB: View ]]>
+ TV: SD + tv.sd + 6 +
- WTCC 2011 Belgie Race2 DUTCH HDTV XViD NSN - http://nzbmatrix.com/nzb-details.php?id=914489&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914489&hit=1 - Name: WTCC 2011 Belgie Race2 DUTCH HDTV XViD NSN
Category: TV: Divx/Xvid
Size: 810.83 MB
Added: 2011-04-25 13:54:56
Group: alt.binaries.multimedia
NFO: View NFO ]]>
- TV: Divx/Xvid - tv.divx/xvid + WKRP In Cincinnati 1x07 Turkeys Away par2 01 of 26 + http://api.nzbmatrix.com/v1.1/download.php?id=1265029&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1265029&username=NzbDrone&apikey=FAKEAPIKEY + Name: WKRP In Cincinnati 1x07 Turkeys Away par2 01 of 26
Category: TV: SD
Size: 271.55 MB
Added: 2012-05-02 18:27:20
Group: alt.binaries.classic.tv.shows
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- WTCC 2011 Belgie Race1 DUTCH HDTV XViD NSN - http://nzbmatrix.com/nzb-details.php?id=914487&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914487&hit=1 - Name: WTCC 2011 Belgie Race1 DUTCH HDTV XViD NSN
Category: TV: Divx/Xvid
Size: 812.25 MB
Added: 2011-04-25 13:52:41
Group: alt.binaries.multimedia
NFO: View NFO ]]>
- TV: Divx/Xvid - tv.divx/xvid + WKRP In Cincinnati 1x06 Baileys Show par2 01 of 26 + http://api.nzbmatrix.com/v1.1/download.php?id=1265028&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1265028&username=NzbDrone&apikey=FAKEAPIKEY + Name: WKRP In Cincinnati 1x06 Baileys Show par2 01 of 26
Category: TV: SD
Size: 269.84 MB
Added: 2012-05-02 18:27:19
Group: alt.binaries.classic.tv.shows
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- Misfits S02E04 FRENCH LD DVDRip XviD JMT - http://nzbmatrix.com/nzb-details.php?id=914478&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914478&hit=1 - Name: Misfits S02E04 FRENCH LD DVDRip XviD JMT
Category: TV: Divx/Xvid
Size: 411.96 MB
Added: 2011-04-25 13:33:59
Group: alt.binaries.multimedia ]]>
- TV: Divx/Xvid - tv.divx/xvid + WKRP In Cincinnati 1x05 Hold Up par2 01 of 26 + http://api.nzbmatrix.com/v1.1/download.php?id=1265027&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1265027&username=NzbDrone&apikey=FAKEAPIKEY + Name: WKRP In Cincinnati 1x05 Hold Up par2 01 of 26
Category: TV: SD
Size: 271.46 MB
Added: 2012-05-02 18:27:18
Group: alt.binaries.classic.tv.shows
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- The Benson Interruption S01E01 - http://nzbmatrix.com/nzb-details.php?id=914475&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914475&hit=1 - Name: The Benson Interruption S01E01
Category: TV: Divx/Xvid
Size: 270.59 MB
Added: 2011-04-25 13:24:57
Group: alt.binaries.teevee
NFO: View NFO ]]>
- TV: Divx/Xvid - tv.divx/xvid + WKRP In Cincinnati 1x04 Hoodlum Rock par2 01 of 26 + http://api.nzbmatrix.com/v1.1/download.php?id=1265026&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1265026&username=NzbDrone&apikey=FAKEAPIKEY + Name: WKRP In Cincinnati 1x04 Hoodlum Rock par2 01 of 26
Category: TV: SD
Size: 271.54 MB
Added: 2012-05-02 18:27:16
Group: alt.binaries.classic.tv.shows
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- Car Warriors S01E08 HDTV XviD CRiMSON - http://nzbmatrix.com/nzb-details.php?id=914441&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914441&hit=1 - Name: Car Warriors S01E08 HDTV XviD CRiMSON
Category: TV: Divx/Xvid
Size: 398.51 MB
Added: 2011-04-25 12:04:29
Group: alt.binaries.teevee ]]>
- TV: Divx/Xvid - tv.divx/xvid + WKRP In Cincinnati 1x03 Les On A Ledge par2 01 of 26 + http://api.nzbmatrix.com/v1.1/download.php?id=1265025&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1265025&username=NzbDrone&apikey=FAKEAPIKEY + Name: WKRP In Cincinnati 1x03 Les On A Ledge par2 01 of 26
Category: TV: SD
Size: 271.59 MB
Added: 2012-05-02 18:27:15
Group: alt.binaries.classic.tv.shows
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- NBA 23 04 2011 WCQF G4 Mavericks vs Blazers - http://nzbmatrix.com/nzb-details.php?id=914433&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914433&hit=1 - Name: NBA 23 04 2011 WCQF G4 Mavericks vs Blazers
Category: TV: Sport/Ent
Size: 2.52 GB
Added: 2011-04-25 11:50:47
Group: alt.binaries.boneless ]]>
- TV: Sport/Ent - tv.sport/ent - 7 - + 3 Stooges original DVDrip xvid Yenc: 3 stooges 1934 1936 E01 PAR2 + http://api.nzbmatrix.com/v1.1/download.php?id=1265024&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1265024&username=NzbDrone&apikey=FAKEAPIKEY + Name: 3 Stooges original DVDrip xvid Yenc: 3 stooges 1934 1936 E01 PAR2
Category: TV: SD
Size: 9.13 GB
Added: 2012-05-02 18:27:09
Group: alt.binaries.classic.tv.shows
View NZB: View ]]>
+ TV: SD + tv.sd + 6 +
- Supernatural S06E18 Frontierland German Custom Subbed WS HDTV XviD iNTERNAL BaCKToRG - http://nzbmatrix.com/nzb-details.php?id=914432&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914432&hit=1 - Name: Supernatural S06E18 Frontierland German Custom Subbed WS HDTV XviD iNTERNAL BaCKToRG
Category: TV: Divx/Xvid
Size: 399.38 MB
Added: 2011-04-25 11:49:23
Group: alt.binaries.multimedia
NFO: View NFO ]]>
- TV: Divx/Xvid - tv.divx/xvid + WKRP In Cincinnati 1x13 Goodbye Johnny par2 01 of 26 + http://api.nzbmatrix.com/v1.1/download.php?id=1265023&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1265023&username=NzbDrone&apikey=FAKEAPIKEY + Name: WKRP In Cincinnati 1x13 Goodbye Johnny par2 01 of 26
Category: TV: SD
Size: 271.54 MB
Added: 2012-05-02 18:27:06
Group: alt.binaries.classic.tv.shows
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- Supernatural S06E17 My Heart Will Go On German Custom Subbed WS HDTV XviD iNTERNAL BaCKToRG - http://nzbmatrix.com/nzb-details.php?id=914427&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914427&hit=1 - Name: Supernatural S06E17 My Heart Will Go On German Custom Subbed WS HDTV XviD iNTERNAL BaCKToRG
Category: TV: Divx/Xvid
Size: 399.32 MB
Added: 2011-04-25 11:47:26
Group: alt.binaries.multimedia
NFO: View NFO ]]>
- TV: Divx/Xvid - tv.divx/xvid + WKRP In Cincinnati 1x12 Tornado par2 01 of 26 + http://api.nzbmatrix.com/v1.1/download.php?id=1265022&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1265022&username=NzbDrone&apikey=FAKEAPIKEY + Name: WKRP In Cincinnati 1x12 Tornado par2 01 of 26
Category: TV: SD
Size: 271.49 MB
Added: 2012-05-02 18:27:05
Group: alt.binaries.classic.tv.shows
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- How I Met Your Mother S06E20 The Exploding Meatball Sub German Custom Subbed WS HDTV XviD iNTERNAL BaCKToRG - http://nzbmatrix.com/nzb-details.php?id=914420&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914420&hit=1 - Name: How I Met Your Mother S06E20 The Exploding Meatball Sub German Custom Subbed WS HDTV XviD iNTERNAL BaCKToRG
Category: TV: Divx/Xvid
Size: 199.67 MB
Added: 2011-04-25 11:35:54
Group: alt.binaries.multimedia
NFO: View NFO ]]>
- TV: Divx/Xvid - tv.divx/xvid + Seconds from Disaster S05E02 The Bismarck HDTV x264 DEADPiXEL + http://api.nzbmatrix.com/v1.1/download.php?id=1265019&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1265019&username=NzbDrone&apikey=FAKEAPIKEY + Name: Seconds from Disaster S05E02 The Bismarck HDTV x264 DEADPiXEL
Category: TV: SD
Size: 308.81 MB
Added: 2012-05-02 18:04:10
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- Desperate Housewives S07E18 Moments in the Woods German Custom Subbed WS HDTV XviD iNTERNAL BaCKToRG - http://nzbmatrix.com/nzb-details.php?id=914418&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914418&hit=1 - Name: Desperate Housewives S07E18 Moments in the Woods German Custom Subbed WS HDTV XviD iNTERNAL BaCKToRG
Category: TV: Divx/Xvid
Size: 399.33 MB
Added: 2011-04-25 11:34:59
Group: alt.binaries.multimedia
NFO: View NFO ]]>
- TV: Divx/Xvid - tv.divx/xvid - 6 - + Hit The Road Jack S01E07 720p HDTV x264 TLA + http://api.nzbmatrix.com/v1.1/download.php?id=1265016&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1265016&username=NzbDrone&apikey=FAKEAPIKEY + Name: Hit The Road Jack S01E07 720p HDTV x264 TLA
Category: TV: HD (x264)
Size: 777.42 MB
Added: 2012-05-02 17:53:53
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: HD (x264) + tv.hd (x264) + 41 +
- UR Samtiden Darfor Stannar Unga Inom Idrotten 2011 SWEDiSH WS PDTV XviD DiSCUSSET - http://nzbmatrix.com/nzb-details.php?id=914410&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914410&hit=1 - Name: UR Samtiden Darfor Stannar Unga Inom Idrotten 2011 SWEDiSH WS PDTV XviD DiSCUSSET
Category: TV: Divx/Xvid
Size: 428.24 MB
Added: 2011-04-25 11:23:04
Group: alt.binaries.multimedia
NFO: View NFO ]]>
- TV: Divx/Xvid - tv.divx/xvid + Hit The Road Jack S01E07 HDTV x264 TLA + http://api.nzbmatrix.com/v1.1/download.php?id=1265014&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1265014&username=NzbDrone&apikey=FAKEAPIKEY + Name: Hit The Road Jack S01E07 HDTV x264 TLA
Category: TV: SD
Size: 275.32 MB
Added: 2012-05-02 17:49:43
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- The Sunday Footy Show 2011 04 24 WS PDTV XviD WLT - http://nzbmatrix.com/nzb-details.php?id=914409&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914409&hit=1 - Name: The Sunday Footy Show 2011 04 24 WS PDTV XviD WLT
Category: TV: Divx/Xvid
Size: 387.34 MB
Added: 2011-04-25 11:20:29
Group: alt.binaries.teevee
NFO: View NFO ]]>
- TV: Divx/Xvid - tv.divx/xvid + Wild Life At The Zoo S01E03 PDTV XviD OTT + http://api.nzbmatrix.com/v1.1/download.php?id=1265010&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1265010&username=NzbDrone&apikey=FAKEAPIKEY + Name: Wild Life At The Zoo S01E03 PDTV XviD OTT
Category: TV: SD
Size: 265.62 MB
Added: 2012-05-02 17:39:11
Group: alt.binaries.teevee
NFO: View NFO
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- The Sunday Roast 2011 04 24 WS PDTV XviD WLT - http://nzbmatrix.com/nzb-details.php?id=914407&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914407&hit=1 - Name: The Sunday Roast 2011 04 24 WS PDTV XviD WLT
Category: TV: Divx/Xvid
Size: 387.49 MB
Added: 2011-04-25 11:19:33
Group: alt.binaries.teevee
NFO: View NFO ]]>
- TV: Divx/Xvid - tv.divx/xvid - 6 - + Top Shot S04E12 720p HDTV x264 KILLERS + http://api.nzbmatrix.com/v1.1/download.php?id=1265007&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1265007&username=NzbDrone&apikey=FAKEAPIKEY + Name: Top Shot S04E12 720p HDTV x264 KILLERS
Category: TV: HD (x264)
Size: 2.22 GB
Added: 2012-05-02 17:29:52
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: HD (x264) + tv.hd (x264) + 41 +
- Punky Brewster S02 iNTERNAL DVDRip XviD RUNNER - http://nzbmatrix.com/nzb-details.php?id=914406&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914406&hit=1 - Name: Punky Brewster S02 iNTERNAL DVDRip XviD RUNNER
Category: TV: Divx/Xvid
Size: 4.41 GB
Added: 2011-04-25 11:19:30
Group: alt.binaries.multimedia
NFO: View NFO
IMDB Link: Go To IMDB]]>
- TV: Divx/Xvid - tv.divx/xvid + The Biggest Loser Australia s07e69 PDTV XviD BF1 + http://api.nzbmatrix.com/v1.1/download.php?id=1265006&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1265006&username=NzbDrone&apikey=FAKEAPIKEY + Name: The Biggest Loser Australia s07e69 PDTV XviD BF1
Category: TV: SD
Size: 770.88 MB
Added: 2012-05-02 17:23:23
Group: alt.binaries.multimedia
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- Punky Brewster S01 iNTERNAL DVDRip XviD RUNNER - http://nzbmatrix.com/nzb-details.php?id=914404&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914404&hit=1 - Name: Punky Brewster S01 iNTERNAL DVDRip XviD RUNNER
Category: TV: Divx/Xvid
Size: 4.69 GB
Added: 2011-04-25 11:17:43
Group: alt.binaries.multimedia
NFO: View NFO
IMDB Link: Go To IMDB]]>
- TV: Divx/Xvid - tv.divx/xvid + Deadliest Catch S08E04 HDTV x264 KILLERS + http://api.nzbmatrix.com/v1.1/download.php?id=1265003&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1265003&username=NzbDrone&apikey=FAKEAPIKEY + Name: Deadliest Catch S08E04 HDTV x264 KILLERS
Category: TV: SD
Size: 669.59 MB
Added: 2012-05-02 17:15:58
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- The Only Way Is Essex S02E11 WS PDTV XviD CiA - http://nzbmatrix.com/nzb-details.php?id=914385&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914385&hit=1 - Name: The Only Way Is Essex S02E11 WS PDTV XviD CiA
Category: TV: Divx/Xvid
Size: 329.12 MB
Added: 2011-04-25 10:49:28
Group: alt.binaries.matrix
NFO: View NFO ]]>
- TV: Divx/Xvid - tv.divx/xvid + Track and Field USA vs The World at the Penn Relays 2012 HDTV X264 QCF + http://api.nzbmatrix.com/v1.1/download.php?id=1265002&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1265002&username=NzbDrone&apikey=FAKEAPIKEY + Name: Track and Field USA vs The World at the Penn Relays 2012 HDTV X264 QCF
Category: TV: SD
Size: 998.90 MB
Added: 2012-05-02 17:08:24
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- The 7pm Project 2011 04 25 Kath Robinson WS PDTV XviD FQM - http://nzbmatrix.com/nzb-details.php?id=914384&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914384&hit=1 - Name: The 7pm Project 2011 04 25 Kath Robinson WS PDTV XviD FQM
Category: TV: Divx/Xvid
Size: 198.78 MB
Added: 2011-04-25 10:49:06
Group: alt.binaries.teevee
NFO: View NFO ]]>
- TV: Divx/Xvid - tv.divx/xvid + Randling S01E01 PDTV x264 RTA + http://api.nzbmatrix.com/v1.1/download.php?id=1264790&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264790&username=NzbDrone&apikey=FAKEAPIKEY + Name: Randling S01E01 PDTV x264 RTA
Category: TV: SD
Size: 247.27 MB
Added: 2012-05-02 16:11:40
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- Hawthorne S02E06 FRENCH 720p HDTV x264 BAWLS - http://nzbmatrix.com/nzb-details.php?id=914378&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914378&hit=1 - Name: Hawthorne S02E06 FRENCH 720p HDTV x264 BAWLS
Category: TV: HD
Size: 1.29 GB
Added: 2011-04-25 10:41:49
Group: alt.binaries.multimedia
NFO: View NFO ]]>
- TV: HD - tv.hd - 41 - + The Biggest Loser AU S07E69 PDTV x264 RTA + http://api.nzbmatrix.com/v1.1/download.php?id=1264787&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264787&username=NzbDrone&apikey=FAKEAPIKEY + Name: The Biggest Loser AU S07E69 PDTV x264 RTA
Category: TV: SD
Size: 901.54 MB
Added: 2012-05-02 16:10:19
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: SD + tv.sd + 6 +
- Saving Grace S03E15 FRENCH 720p HDTV x264 BAWLS - http://nzbmatrix.com/nzb-details.php?id=914377&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914377&hit=1 - Name: Saving Grace S03E15 FRENCH 720p HDTV x264 BAWLS
Category: TV: HD
Size: 1.28 GB
Added: 2011-04-25 10:41:05
Group: alt.binaries.multimedia
NFO: View NFO ]]>
- TV: HD - tv.hd + Jimmy Kimmel 2012 05 01 720p HDTV x264 ORENJI + http://api.nzbmatrix.com/v1.1/download.php?id=1264774&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264774&username=NzbDrone&apikey=FAKEAPIKEY + Name: Jimmy Kimmel 2012 05 01 720p HDTV x264 ORENJI
Category: TV: HD (x264)
Size: 1.15 GB
Added: 2012-05-02 15:51:52
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: HD (x264) + tv.hd (x264) 41 - +
- Hawthorne S02E06 FRENCH HDTV XViD BAWLS - http://nzbmatrix.com/nzb-details.php?id=914374&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914374&hit=1 - Name: Hawthorne S02E06 FRENCH HDTV XViD BAWLS
Category: TV: Divx/Xvid
Size: 376.16 MB
Added: 2011-04-25 10:40:06
Group: alt.binaries.multimedia
NFO: View NFO ]]>
- TV: Divx/Xvid - tv.divx/xvid + Aquila (1997–1998) S2 + http://api.nzbmatrix.com/v1.1/download.php?id=1264771&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264771&username=NzbDrone&apikey=FAKEAPIKEY + Name: Aquila (1997–1998) S2
Category: TV: SD
Size: 1.16 GB
Added: 2012-05-02 15:42:42
Group: alt.binaries.multimedia.scifi
NFO: View NFO
View NZB: View
IMDB Link: Go To IMDB]]>
+ TV: SD + tv.sd 6 - +
- Saving Grace S03E15 FRENCH HDTV XViD BAWLS - http://nzbmatrix.com/nzb-details.php?id=914373&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914373&hit=1 - Name: Saving Grace S03E15 FRENCH HDTV XViD BAWLS
Category: TV: Divx/Xvid
Size: 406.52 MB
Added: 2011-04-25 10:38:50
Group: alt.binaries.multimedia
NFO: View NFO ]]>
- TV: Divx/Xvid - tv.divx/xvid + Aquila (1997–1998) S1 + http://api.nzbmatrix.com/v1.1/download.php?id=1264770&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264770&username=NzbDrone&apikey=FAKEAPIKEY + Name: Aquila (1997–1998) S1
Category: TV: SD
Size: 1.36 GB
Added: 2012-05-02 15:42:31
Group: alt.binaries.multimedia.scifi
NFO: View NFO
View NZB: View
IMDB Link: Go To IMDB]]>
+ TV: SD + tv.sd 6 - +
- Saddle Ranch S01E02 Always Down to Party HDTV XviD MOMENTUM - http://nzbmatrix.com/nzb-details.php?id=914363&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914363&hit=1 - Name: Saddle Ranch S01E02 Always Down to Party HDTV XviD MOMENTUM
Category: TV: Divx/Xvid
Size: 199.83 MB
Added: 2011-04-25 10:20:58
Group: alt.binaries.teevee
NFO: View NFO ]]>
- TV: Divx/Xvid - tv.divx/xvid + Top Shot S04E11 HDTV x264 KILLERS + http://api.nzbmatrix.com/v1.1/download.php?id=1264746&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264746&username=NzbDrone&apikey=FAKEAPIKEY + Name: Top Shot S04E11 HDTV x264 KILLERS
Category: TV: SD
Size: 514.21 MB
Added: 2012-05-02 14:56:54
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- Saddle Ranch S01E02 720p HDTV x264 MOMENTUM - http://nzbmatrix.com/nzb-details.php?id=914359&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914359&hit=1 - Name: Saddle Ranch S01E02 720p HDTV x264 MOMENTUM
Category: TV: HD
Size: 638.89 MB
Added: 2011-04-25 10:15:33
Group: alt.binaries.teevee
NFO: View NFO ]]>
- TV: HD - tv.hd + The Biggest Loser S13E18 720p HDTV x264 ORENJI + http://api.nzbmatrix.com/v1.1/download.php?id=1264727&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264727&username=NzbDrone&apikey=FAKEAPIKEY + Name: The Biggest Loser S13E18 720p HDTV x264 ORENJI
Category: TV: HD (x264)
Size: 1.28 GB
Added: 2012-05-02 14:31:46
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: HD (x264) + tv.hd (x264) 41 - +
- The Killing S01E05 Super 8 720p WEB DL DD5 1 H 264 TB - http://nzbmatrix.com/nzb-details.php?id=914354&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914354&hit=1 - Name: The Killing S01E05 Super 8 720p WEB DL DD5 1 H 264 TB
Category: TV: HD
Size: 1.52 GB
Added: 2011-04-25 10:06:12
Group: alt.binaries.hdtv
NFO: View NFO ]]>
- TV: HD - tv.hd + American Experience S24E07 720p HDTV x264 ORENJI + http://api.nzbmatrix.com/v1.1/download.php?id=1264721&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264721&username=NzbDrone&apikey=FAKEAPIKEY + Name: American Experience S24E07 720p HDTV x264 ORENJI
Category: TV: HD (x264)
Size: 1.76 GB
Added: 2012-05-02 14:27:47
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: HD (x264) + tv.hd (x264) 41 - +
- NBA 23 04 2011 WCQF G3 Spurs vs Grizzlies - http://nzbmatrix.com/nzb-details.php?id=914349&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914349&hit=1 - Name: NBA 23 04 2011 WCQF G3 Spurs vs Grizzlies
Category: TV: Sport/Ent
Size: 2.68 GB
Added: 2011-04-25 09:45:52
Group: alt.binaries.boneless ]]>
- TV: Sport/Ent - tv.sport/ent - 7 - -
- - NBA 23 04 2011 ECQF G4 Pacers vs Bulls - http://nzbmatrix.com/nzb-details.php?id=914348&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914348&hit=1 - Name: NBA 23 04 2011 ECQF G4 Pacers vs Bulls
Category: TV: Sport/Ent
Size: 2.17 GB
Added: 2011-04-25 09:44:47
Group: alt.binaries.boneless ]]>
- TV: Sport/Ent - tv.sport/ent - 7 - + The Matt Lucas Awards S01E04 720p HDTV x264 C4TV + http://api.nzbmatrix.com/v1.1/download.php?id=1264704&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264704&username=NzbDrone&apikey=FAKEAPIKEY + Name: The Matt Lucas Awards S01E04 720p HDTV x264 C4TV
Category: TV: HD (x264)
Size: 753.04 MB
Added: 2012-05-02 13:55:42
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: HD (x264) + tv.hd (x264) + 41 +
- The Real Housewives of Orange County S06E08 Kiss and Tell HDTV XviD MOMENTUM - http://nzbmatrix.com/nzb-details.php?id=914347&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914347&hit=1 - Name: The Real Housewives of Orange County S06E08 Kiss and Tell HDTV XviD MOMENTUM
Category: TV: Divx/Xvid
Size: 398.70 MB
Added: 2011-04-25 09:27:23
Group: alt.binaries.teevee
NFO: View NFO ]]>
- TV: Divx/Xvid - tv.divx/xvid + Craig Ferguson 2012 05 01 Jesse Tyler Ferguson HDTV x264 2HD + http://api.nzbmatrix.com/v1.1/download.php?id=1264702&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264702&username=NzbDrone&apikey=FAKEAPIKEY + Name: Craig Ferguson 2012 05 01 Jesse Tyler Ferguson HDTV x264 2HD
Category: TV: SD
Size: 303.25 MB
Added: 2012-05-02 13:51:28
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- The Real Housewives of Orange County S06E08 720p HDTV x264 MOMENTUM - http://nzbmatrix.com/nzb-details.php?id=914346&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914346&hit=1 - Name: The Real Housewives of Orange County S06E08 720p HDTV x264 MOMENTUM
Category: TV: HD
Size: 1.27 GB
Added: 2011-04-25 09:15:39
Group: alt.binaries.teevee
NFO: View NFO ]]>
- TV: HD - tv.hd + Craig Ferguson 2012 05 01 Jesse Tyler Ferguson 720p HDTV x264 2HD + http://api.nzbmatrix.com/v1.1/download.php?id=1264696&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264696&username=NzbDrone&apikey=FAKEAPIKEY + Name: Craig Ferguson 2012 05 01 Jesse Tyler Ferguson 720p HDTV x264 2HD
Category: TV: HD (x264)
Size: 1.10 GB
Added: 2012-05-02 13:39:47
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: HD (x264) + tv.hd (x264) 41 - +
- EPL 2011 Bolton Wanderers Vs Arsenal 720p HDTV x264 FAIRPLAY - http://nzbmatrix.com/nzb-details.php?id=914345&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914345&hit=1 - Name: EPL 2011 Bolton Wanderers Vs Arsenal 720p HDTV x264 FAIRPLAY
Category: TV: Sport/Ent
Size: 2.49 GB
Added: 2011-04-25 09:13:32
Group: alt.binaries.teevee
NFO: View NFO ]]>
- TV: Sport/Ent - tv.sport/ent - 7 - + The Matt Lucas Awards S01E04 HDTV x264 C4TV + http://api.nzbmatrix.com/v1.1/download.php?id=1264693&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264693&username=NzbDrone&apikey=FAKEAPIKEY + Name: The Matt Lucas Awards S01E04 HDTV x264 C4TV
Category: TV: SD
Size: 248.48 MB
Added: 2012-05-02 13:27:19
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: SD + tv.sd + 6 +
- Doctor Who Confidential Season 3 - http://nzbmatrix.com/nzb-details.php?id=914342&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914342&hit=1 - Name: Doctor Who Confidential Season 3
Category: TV: Divx/Xvid
Size: 6.13 GB
Added: 2011-04-25 08:26:28
Group: alt.binaries.drwho ]]>
- TV: Divx/Xvid - tv.divx/xvid + Britain Unzipped S01E02 PDTV x264 C4TV + http://api.nzbmatrix.com/v1.1/download.php?id=1264692&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264692&username=NzbDrone&apikey=FAKEAPIKEY + Name: Britain Unzipped S01E02 PDTV x264 C4TV
Category: TV: SD
Size: 640.75 MB
Added: 2012-05-02 13:11:41
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- Doctor Who Confidential Season 2 - http://nzbmatrix.com/nzb-details.php?id=914341&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914341&hit=1 - Name: Doctor Who Confidential Season 2
Category: TV: Divx/Xvid
Size: 5.85 GB
Added: 2011-04-25 08:25:33
Group: alt.binaries.drwho ]]>
- TV: Divx/Xvid - tv.divx/xvid + Australias Got Talent S06E09 PDTV x264 TASTETV + http://api.nzbmatrix.com/v1.1/download.php?id=1264685&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264685&username=NzbDrone&apikey=FAKEAPIKEY + Name: Australias Got Talent S06E09 PDTV x264 TASTETV
Category: TV: SD
Size: 582.44 MB
Added: 2012-05-02 13:01:48
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- Doctor Who Confidential Season 1 - http://nzbmatrix.com/nzb-details.php?id=914340&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914340&hit=1 - Name: Doctor Who Confidential Season 1
Category: TV: Divx/Xvid
Size: 4.92 GB
Added: 2011-04-25 08:24:33
Group: alt.binaries.drwho ]]>
- TV: Divx/Xvid - tv.divx/xvid + The Project 2012 05 02 PDTV x264 RTA + http://api.nzbmatrix.com/v1.1/download.php?id=1264671&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264671&username=NzbDrone&apikey=FAKEAPIKEY + Name: The Project 2012 05 02 PDTV x264 RTA
Category: TV: SD
Size: 373.64 MB
Added: 2012-05-02 11:59:05
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- Wipeout Canada S01E04 WS DSR XviD 2HD - http://nzbmatrix.com/nzb-details.php?id=914337&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914337&hit=1 - Name: Wipeout Canada S01E04 WS DSR XviD 2HD
Category: TV: Divx/Xvid
Size: 400.08 MB
Added: 2011-04-25 08:11:22
Group: alt.binaries.teevee
NFO: View NFO ]]>
- TV: Divx/Xvid - tv.divx/xvid - 6 - + The GC S01E01 720p HDTV x264 FiHTV + http://api.nzbmatrix.com/v1.1/download.php?id=1264662&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264662&username=NzbDrone&apikey=FAKEAPIKEY + Name: The GC S01E01 720p HDTV x264 FiHTV
Category: TV: HD (x264)
Size: 633.58 MB
Added: 2012-05-02 11:14:54
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: HD (x264) + tv.hd (x264) + 41 +
- NRL 2011 Round 7 Wests Tigers vs Brisbane Broncos WS PDTV XviD WLT - http://nzbmatrix.com/nzb-details.php?id=914333&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914333&hit=1 - Name: NRL 2011 Round 7 Wests Tigers vs Brisbane Broncos WS PDTV XviD WLT
Category: TV: Divx/Xvid
Size: 1.26 GB
Added: 2011-04-25 07:43:40
Group: alt.binaries.teevee
NFO: View NFO ]]>
- TV: Divx/Xvid - tv.divx/xvid - 6 - + The Real Housewives of Orange County S07E09 Bowling for Champs 720p HD TV x264 + http://api.nzbmatrix.com/v1.1/download.php?id=1264660&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264660&username=NzbDrone&apikey=FAKEAPIKEY + Name: The Real Housewives of Orange County S07E09 Bowling for Champs 720p HD TV x264
Category: TV: HD (x264)
Size: 863.08 MB
Added: 2012-05-02 11:05:42
Group: alt.binaries.multimedia
View NZB: View ]]>
+ TV: HD (x264) + tv.hd (x264) + 41 +
- Treme S02E01 Accentuate the Positive HDTV XviD FQM - http://nzbmatrix.com/nzb-details.php?id=914332&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914332&hit=1 - Name: Treme S02E01 Accentuate the Positive HDTV XviD FQM
Category: TV: Divx/Xvid
Size: 628.20 MB
Added: 2011-04-25 07:36:01
Group: alt.binaries.multimedia
NFO: View NFO ]]>
- TV: Divx/Xvid - tv.divx/xvid + Hardcore Pawn S05E20 Ashleys Breakdown HDTV XviD [WRCR] + http://api.nzbmatrix.com/v1.1/download.php?id=1264659&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264659&username=NzbDrone&apikey=FAKEAPIKEY + Name: Hardcore Pawn S05E20 Ashleys Breakdown HDTV XviD [WRCR]
Category: TV: SD
Size: 199.26 MB
Added: 2012-05-02 11:02:00
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- Peppa Pig Potato City Vol 14 DVDRip XviD KiDDoS - http://nzbmatrix.com/nzb-details.php?id=914329&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914329&hit=1 - Name: Peppa Pig Potato City Vol 14 DVDRip XviD KiDDoS
Category: TV: Divx/Xvid
Size: 729.36 MB
Added: 2011-04-25 06:55:06
Group: alt.binaries.multimedia
NFO: View NFO ]]>
- TV: Divx/Xvid - tv.divx/xvid + Packed To The Rafters S05E03 The Power Of Words PDTV x264 BWB + http://api.nzbmatrix.com/v1.1/download.php?id=1264642&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264642&username=NzbDrone&apikey=FAKEAPIKEY + Name: Packed To The Rafters S05E03 The Power Of Words PDTV x264 BWB
Category: TV: SD
Size: 378.34 MB
Added: 2012-05-02 10:44:35
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- Degrassi TNG S06 DVDRip XviD - http://nzbmatrix.com/nzb-details.php?id=914328&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914328&hit=1 - Name: Degrassi TNG S06 DVDRip XviD
Category: TV: Divx/Xvid
Size: 3.94 GB
Added: 2011-04-25 06:49:45
Group: alt.binaries.multimedia
NFO: View NFO
IMDB Link: Go To IMDB]]>
- TV: Divx/Xvid - tv.divx/xvid - 6 - + Friends S06E14 720p HDTV DD2 0 x264 Hype + http://api.nzbmatrix.com/v1.1/download.php?id=1264629&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264629&username=NzbDrone&apikey=FAKEAPIKEY + Name: Friends S06E14 720p HDTV DD2 0 x264 Hype
Category: TV: HD (x264)
Size: 1.05 GB
Added: 2012-05-02 10:26:25
Group: alt.binaries.tvseries
NFO: View NFO
View NZB: View
IMDB Link: Go To IMDB]]>
+ TV: HD (x264) + tv.hd (x264) + 41 +
- Degrassi The Next Generation S05 DVDRip XviD FFNDVD - http://nzbmatrix.com/nzb-details.php?id=914327&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914327&hit=1 - Name: Degrassi The Next Generation S05 DVDRip XviD FFNDVD
Category: TV: Divx/Xvid
Size: 3.86 GB
Added: 2011-04-25 06:48:50
Group: alt.binaries.multimedia
NFO: View NFO
IMDB Link: Go To IMDB]]>
- TV: Divx/Xvid - tv.divx/xvid - 6 - + Private Practice S05E20 720p WEB DL DD5 1 H 264 + http://api.nzbmatrix.com/v1.1/download.php?id=1264614&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264614&username=NzbDrone&apikey=FAKEAPIKEY + Name: Private Practice S05E20 720p WEB DL DD5 1 H 264
Category: TV: HD (x264)
Size: 1.69 GB
Added: 2012-05-02 09:37:11
Group: alt.binaries.hdtv
View NZB: View ]]>
+ TV: HD (x264) + tv.hd (x264) + 41 + +
+ + 90210 S04E22 720p WEB DL DD5 1 H 264 + http://api.nzbmatrix.com/v1.1/download.php?id=1264613&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264613&username=NzbDrone&apikey=FAKEAPIKEY + Name: 90210 S04E22 720p WEB DL DD5 1 H 264
Category: TV: HD (x264)
Size: 1.64 GB
Added: 2012-05-02 09:37:01
Group: alt.binaries.hdtv
View NZB: View ]]>
+ TV: HD (x264) + tv.hd (x264) + 41 +
- Degrassi TNG S04 DVDRip XviD aAF - http://nzbmatrix.com/nzb-details.php?id=914326&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914326&hit=1 - Name: Degrassi TNG S04 DVDRip XviD aAF
Category: TV: Divx/Xvid
Size: 4.51 GB
Added: 2011-04-25 06:47:52
Group: alt.binaries.multimedia
NFO: View NFO
IMDB Link: Go To IMDB]]>
- TV: Divx/Xvid - tv.divx/xvid + Jimmy Kimmel 2012 05 01 David Arquette HDTV x264 2HD + http://api.nzbmatrix.com/v1.1/download.php?id=1264610&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264610&username=NzbDrone&apikey=FAKEAPIKEY + Name: Jimmy Kimmel 2012 05 01 David Arquette HDTV x264 2HD
Category: TV: SD
Size: 485.79 MB
Added: 2012-05-02 09:24:17
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- Wipeout Canada S01E03 WS DSR XviD 2HD - http://nzbmatrix.com/nzb-details.php?id=914325&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914325&hit=1 - Name: Wipeout Canada S01E03 WS DSR XviD 2HD
Category: TV: Divx/Xvid
Size: 400.08 MB
Added: 2011-04-25 06:19:49
Group: alt.binaries.teevee
NFO: View NFO ]]>
- TV: Divx/Xvid - tv.divx/xvid + The Colbert Report 2012 05 01 Carne Ross HDTV x264 2HD + http://api.nzbmatrix.com/v1.1/download.php?id=1264605&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264605&username=NzbDrone&apikey=FAKEAPIKEY + Name: The Colbert Report 2012 05 01 Carne Ross HDTV x264 2HD
Category: TV: SD
Size: 141.84 MB
Added: 2012-05-02 09:18:47
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- Dichtbij Het Vuur S01E07 DUTCH WS PDTV XviD iFH - http://nzbmatrix.com/nzb-details.php?id=914322&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914322&hit=1 - Name: Dichtbij Het Vuur S01E07 DUTCH WS PDTV XviD iFH
Category: TV: Divx/Xvid
Size: 216.09 MB
Added: 2011-04-25 06:06:35
Group: alt.binaries.multimedia
NFO: View NFO ]]>
- TV: Divx/Xvid - tv.divx/xvid + The GC S01E01 HDTV x264 FiHTV + http://api.nzbmatrix.com/v1.1/download.php?id=1264603&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264603&username=NzbDrone&apikey=FAKEAPIKEY + Name: The GC S01E01 HDTV x264 FiHTV
Category: TV: SD
Size: 218.21 MB
Added: 2012-05-02 09:17:42
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- Acropolis Now S03 iNTERNAL DVDRip XviD RUNNER - http://nzbmatrix.com/nzb-details.php?id=914321&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914321&hit=1 - Name: Acropolis Now S03 iNTERNAL DVDRip XviD RUNNER
Category: TV: Divx/Xvid
Size: 2.56 GB
Added: 2011-04-25 06:05:50
Group: alt.binaries.multimedia
NFO: View NFO
IMDB Link: Go To IMDB]]>
- TV: Divx/Xvid - tv.divx/xvid + 2012 Comedy Gala NZ PDTV x264 FiHTV + http://api.nzbmatrix.com/v1.1/download.php?id=1264599&username=NzbDrone&apikey=FAKEAPIKEY + http://api.nzbmatrix.com/v1.1/download.php?id=1264599&username=NzbDrone&apikey=FAKEAPIKEY + Name: 2012 Comedy Gala NZ PDTV x264 FiHTV
Category: TV: SD
Size: 669.39 MB
Added: 2012-05-02 09:04:41
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: SD + tv.sd 6 - +
- Acropolis Now S02 iNTERNAL DVDRip XviD RUNNER - http://nzbmatrix.com/nzb-details.php?id=914320&hit=1 - http://nzbmatrix.com/nzb-details.php?id=914320&hit=1 - Name: Acropolis Now S02 iNTERNAL DVDRip XviD RUNNER
Category: TV: Divx/Xvid
Size: 2.56 GB
Added: 2011-04-25 06:03:08
Group: alt.binaries.multimedia
NFO: View NFO
IMDB Link: Go To IMDB]]>
- TV: Divx/Xvid - tv.divx/xvid + Dancing With The Stars AU S12E03 PDTV x264 RTA + http://api.nzbmatrix.com/v1.1/download.php?id=1264596&username=markus101&apikey=23469df9e8d921a3e98d75ca08056f8a + http://api.nzbmatrix.com/v1.1/download.php?id=1264596&username=markus101&apikey=23469df9e8d921a3e98d75ca08056f8a + Name: Dancing With The Stars AU S12E03 PDTV x264 RTA
Category: TV: SD
Size: 1.30 GB
Added: 2012-05-02 08:41:54
Group: alt.binaries.multimedia
NFO: View NFO
View NZB: View ]]>
+ TV: SD + tv.sd 6 - + +
+ + Game of Thrones S02E05 720p HDTV DD5 1 x264 EbP + http://api.nzbmatrix.com/v1.1/download.php?id=1264595&username=markus101&apikey=23469df9e8d921a3e98d75ca08056f8a + http://api.nzbmatrix.com/v1.1/download.php?id=1264595&username=markus101&apikey=23469df9e8d921a3e98d75ca08056f8a + Name: Game of Thrones S02E05 720p HDTV DD5 1 x264 EbP
Category: TV: HD (x264)
Size: 3.28 GB
Added: 2012-05-02 08:36:56
Group: alt.binaries.hdtv
NFO: View NFO
View NZB: View
IMDB Link: Go To IMDB]]>
+ TV: HD (x264) + tv.hd (x264) + 41 +
\ No newline at end of file diff --git a/NzbDrone.Core.Test/IndexerTests.cs b/NzbDrone.Core.Test/IndexerTests.cs index 4559f8deb..131f00113 100644 --- a/NzbDrone.Core.Test/IndexerTests.cs +++ b/NzbDrone.Core.Test/IndexerTests.cs @@ -55,7 +55,6 @@ namespace NzbDrone.Core.Test Uri.PathAndQuery.Should().NotContain("//"); } - parseResults.Should().NotBeEmpty(); parseResults.Should().OnlyContain(s => s.Indexer == mockIndexer.Name); parseResults.Should().OnlyContain(s => !String.IsNullOrEmpty(s.OriginalString)); @@ -75,6 +74,9 @@ namespace NzbDrone.Core.Test Mocker.GetMock().SetupGet(c => c.NzbsrusHash).Returns("MockedConfigValue"); Mocker.GetMock().SetupGet(c => c.NzbsrusUId).Returns("MockedConfigValue"); + + Mocker.GetMock().SetupGet(c => c.FileSharingTalkUid).Returns("MockedConfigValue"); + Mocker.GetMock().SetupGet(c => c.FileSharingTalkSecret).Returns("MockedConfigValue"); } [Test] @@ -563,38 +565,191 @@ namespace NzbDrone.Core.Test Thread.CurrentThread.CurrentCulture = currentCulture; } - [TestCase("nzbsorg.xml", "info")] - [TestCase("nzbsrus.xml", "info")] - [TestCase("newzbin.xml", "info")] - [TestCase("nzbmatrix.xml", "info")] - [TestCase("newznab.xml", "info")] - [TestCase("wombles.xml", "info")] - [TestCase("filesharingtalk.xml", "info")] - [TestCase("nzbindex.xml", "info")] - [TestCase("nzbclub.xml", "info")] - public void NzbInfoUrl_should_contain_information_string(string fileName, string expectedContent) + [Test] + public void NzbsOrg_NzbInfoUrl_should_contain_information_string() { + WithConfiguredIndexers(); + + const string fileName = "nzbsorg.xml"; + const string expectedString = "action=view"; + Mocker.GetMock() .Setup(h => h.DownloadStream(It.IsAny(), It.IsAny())) .Returns(File.OpenRead(".\\Files\\Rss\\" + fileName)); - var fakeSettings = Builder.CreateNew().Build(); - Mocker.GetMock() - .Setup(c => c.GetSettings(It.IsAny())) - .Returns(fakeSettings); + var parseResults = Mocker.Resolve().FetchRss(); - var mockIndexer = Mocker.Resolve(); - var parseResults = mockIndexer.FetchRss(); + foreach (var episodeParseResult in parseResults) + { + episodeParseResult.NzbInfoUrl.Should().Contain(expectedString); + } + } + + [Test] + public void NzbsRus_NzbInfoUrl_should_contain_information_string() + { + WithConfiguredIndexers(); + + const string fileName = "nzbsrus.xml"; + const string expectedString = "nzbdetails"; + + Mocker.GetMock() + .Setup(h => h.DownloadStream(It.IsAny(), It.IsAny())) + .Returns(File.OpenRead(".\\Files\\Rss\\" + fileName)); + + var parseResults = Mocker.Resolve().FetchRss(); foreach (var episodeParseResult in parseResults) { - episodeParseResult.NzbInfoUrl.Should().Contain(expectedContent); + episodeParseResult.NzbInfoUrl.Should().Contain(expectedString); + } + } + + [Test] + public void Newzbin_NzbInfoUrl_should_contain_information_string() + { + WithConfiguredIndexers(); + + const string fileName = "newzbin.xml"; + const string expectedString = "browse"; + + Mocker.GetMock() + .Setup(h => h.DownloadStream(It.IsAny(), It.IsAny())) + .Returns(File.OpenRead(".\\Files\\Rss\\" + fileName)); + + var parseResults = Mocker.Resolve().FetchRss(); + + foreach (var episodeParseResult in parseResults) + { + episodeParseResult.NzbInfoUrl.Should().Contain(expectedString); + } + } + + [Test] + public void NzbMatrix_NzbInfoUrl_should_contain_information_string() + { + WithConfiguredIndexers(); + + const string fileName = "nzbmatrix.xml"; + const string expectedString = "nzb-details"; + + Mocker.GetMock() + .Setup(h => h.DownloadStream(It.IsAny(), It.IsAny())) + .Returns(File.OpenRead(".\\Files\\Rss\\" + fileName)); + + var parseResults = Mocker.Resolve().FetchRss(); + + foreach (var episodeParseResult in parseResults) + { + episodeParseResult.NzbInfoUrl.Should().Contain(expectedString); + } + } + + [Test] + public void Newznab_NzbInfoUrl_should_contain_information_string() + { + WithConfiguredIndexers(); + + const string fileName = "newznab.xml"; + const string expectedString = "/details/"; + + var newznabDefs = Builder.CreateListOfSize(1) + .All() + .With(n => n.ApiKey = String.Empty) + .Build(); + + Mocker.GetMock().Setup(s => s.Enabled()).Returns(newznabDefs.ToList()); + + Mocker.GetMock() + .Setup(h => h.DownloadStream(It.IsAny(), It.IsAny())) + .Returns(File.OpenRead(".\\Files\\Rss\\" + fileName)); + + var parseResults = Mocker.Resolve().FetchRss(); + + foreach (var episodeParseResult in parseResults) + { + episodeParseResult.NzbInfoUrl.Should().Contain(expectedString); + } + } + + [Test] + public void Wombles_NzbInfoUrl_should_contain_information_string() + { + WithConfiguredIndexers(); + + const string fileName = "wombles.xml"; + const string expectedString = "nzbdetails"; + + Mocker.GetMock() + .Setup(h => h.DownloadStream(It.IsAny(), It.IsAny())) + .Returns(File.OpenRead(".\\Files\\Rss\\" + fileName)); + + var parseResults = Mocker.Resolve().FetchRss(); + + foreach (var episodeParseResult in parseResults) + { + episodeParseResult.NzbInfoUrl.Should().BeNull(); + } + } + + [Test] + public void FileSharingTalk_NzbInfoUrl_should_contain_information_string() + { + WithConfiguredIndexers(); + + const string fileName = "filesharingtalk.xml"; + const string expectedString = "/nzbs/tv"; + + Mocker.GetMock() + .Setup(h => h.DownloadStream(It.IsAny(), It.IsAny())) + .Returns(File.OpenRead(".\\Files\\Rss\\" + fileName)); + + var parseResults = Mocker.Resolve().FetchRss(); + + foreach (var episodeParseResult in parseResults) + { + episodeParseResult.NzbInfoUrl.Should().Contain(expectedString); + } + } + + [Test] + public void NzbIndex_NzbInfoUrl_should_contain_information_string() + { + WithConfiguredIndexers(); + + const string fileName = "nzbindex.xml"; + const string expectedString = "release"; + + Mocker.GetMock() + .Setup(h => h.DownloadStream(It.IsAny(), It.IsAny())) + .Returns(File.OpenRead(".\\Files\\Rss\\" + fileName)); + + var parseResults = Mocker.Resolve().FetchRss(); + + foreach (var episodeParseResult in parseResults) + { + episodeParseResult.NzbInfoUrl.Should().Contain(expectedString); + } + } + + [Test] + public void NzbClub_NzbInfoUrl_should_contain_information_string() + { + WithConfiguredIndexers(); + + const string fileName = "nzbclub.xml"; + const string expectedString = "nzb_view"; + + Mocker.GetMock() + .Setup(h => h.DownloadStream(It.IsAny(), It.IsAny())) + .Returns(File.OpenRead(".\\Files\\Rss\\" + fileName)); + + var parseResults = Mocker.Resolve().FetchRss(); + + foreach (var episodeParseResult in parseResults) + { + episodeParseResult.NzbInfoUrl.Should().Contain(expectedString); } - - parseResults.Should().NotBeEmpty(); - parseResults.Should().OnlyContain(s => s.Indexer == mockIndexer.Name); - parseResults.Should().OnlyContain(s => !String.IsNullOrEmpty(s.OriginalString)); - parseResults.Should().OnlyContain(s => s.Age >= 0); } } } diff --git a/NzbDrone.Core.Test/ProviderTests/IndexerProviderTest.cs b/NzbDrone.Core.Test/ProviderTests/IndexerProviderTest.cs index 7fc319096..d1f732ca6 100644 --- a/NzbDrone.Core.Test/ProviderTests/IndexerProviderTest.cs +++ b/NzbDrone.Core.Test/ProviderTests/IndexerProviderTest.cs @@ -148,7 +148,7 @@ namespace NzbDrone.Core.Test.ProviderTests protected override string NzbInfoUrl(SyndicationItem item) { - return item.Links[1].Uri.ToString(); + return item.Links[0].Uri.ToString(); } } diff --git a/NzbDrone.Core/Providers/Indexer/FileSharingTalk.cs b/NzbDrone.Core/Providers/Indexer/FileSharingTalk.cs index ff0daadb1..fa19df3ec 100644 --- a/NzbDrone.Core/Providers/Indexer/FileSharingTalk.cs +++ b/NzbDrone.Core/Providers/Indexer/FileSharingTalk.cs @@ -70,7 +70,7 @@ namespace NzbDrone.Core.Providers.Indexer protected override string NzbInfoUrl(SyndicationItem item) { - return item.Links[0].Uri.ToString(); + return item.Id; } protected override EpisodeParseResult CustomParser(SyndicationItem item, EpisodeParseResult currentResult) diff --git a/NzbDrone.Core/Providers/Indexer/Newznab.cs b/NzbDrone.Core/Providers/Indexer/Newznab.cs index e6a9aa41c..c9ad9c2db 100644 --- a/NzbDrone.Core/Providers/Indexer/Newznab.cs +++ b/NzbDrone.Core/Providers/Indexer/Newznab.cs @@ -76,7 +76,7 @@ namespace NzbDrone.Core.Providers.Indexer protected override string NzbInfoUrl(SyndicationItem item) { - return item.Links[0].Uri.ToString(); + return item.Id; } protected override EpisodeParseResult CustomParser(SyndicationItem item, EpisodeParseResult currentResult) diff --git a/NzbDrone.Core/Providers/Indexer/NzbClub.cs b/NzbDrone.Core/Providers/Indexer/NzbClub.cs index beed3893a..198129ab1 100644 --- a/NzbDrone.Core/Providers/Indexer/NzbClub.cs +++ b/NzbDrone.Core/Providers/Indexer/NzbClub.cs @@ -48,7 +48,7 @@ namespace NzbDrone.Core.Providers.Indexer protected override string NzbInfoUrl(SyndicationItem item) { - return item.Links[0].Uri.ToString(); + return item.Links[1].Uri.ToString(); } protected override IList GetEpisodeSearchUrls(string seriesTitle, int seasonNumber, int episodeNumber) diff --git a/NzbDrone.Core/Providers/Indexer/NzbMatrix.cs b/NzbDrone.Core/Providers/Indexer/NzbMatrix.cs index 922e33cf6..0fdab04df 100644 --- a/NzbDrone.Core/Providers/Indexer/NzbMatrix.cs +++ b/NzbDrone.Core/Providers/Indexer/NzbMatrix.cs @@ -103,7 +103,7 @@ namespace NzbDrone.Core.Providers.Indexer protected override string NzbInfoUrl(SyndicationItem item) { - return item.Links[0].Uri.ToString(); + return Regex.Match(item.Summary.Text, "(?<=\\View\\<\\/a\\>)", RegexOptions.Compiled | RegexOptions.IgnoreCase).Value; } protected override EpisodeParseResult CustomParser(SyndicationItem item, EpisodeParseResult currentResult) @@ -114,7 +114,7 @@ namespace NzbDrone.Core.Providers.Indexer currentResult.Size = Parser.GetReportSize(sizeString); var ageString = Regex.Match(item.Summary.Text, @"(?<=\Added\:\<\/b\>\s)(?.+?)(?=\
)", RegexOptions.Compiled | RegexOptions.IgnoreCase).Value; - currentResult.Age = DateTime.Now.Subtract(DateTime.Parse(ageString)).Days; + currentResult.Age = DateTime.Now.Subtract(DateTime.Parse(ageString)).Days; } return currentResult; diff --git a/NzbDrone.Core/Providers/Indexer/Wombles.cs b/NzbDrone.Core/Providers/Indexer/Wombles.cs index 3110afed5..e454235a2 100644 --- a/NzbDrone.Core/Providers/Indexer/Wombles.cs +++ b/NzbDrone.Core/Providers/Indexer/Wombles.cs @@ -47,7 +47,7 @@ namespace NzbDrone.Core.Providers.Indexer protected override string NzbInfoUrl(SyndicationItem item) { - return item.Links[0].Uri.ToString(); + return null; } protected override IList GetEpisodeSearchUrls(string seriesTitle, int seasonNumber, int episodeNumber) diff --git a/NzbDrone.Web/Controllers/HistoryController.cs b/NzbDrone.Web/Controllers/HistoryController.cs index c8e218fd8..06e50b185 100644 --- a/NzbDrone.Web/Controllers/HistoryController.cs +++ b/NzbDrone.Web/Controllers/HistoryController.cs @@ -41,7 +41,8 @@ namespace NzbDrone.Web.Controllers Date = h.Date.ToString(), DateSorter = h.Date.ToString("MM/dd/yyyy h:mm:ss tt"), Indexer = h.Indexer, - EpisodeId = h.EpisodeId + EpisodeId = h.EpisodeId, + NzbInfoUrl = h.NzbInfoUrl }).OrderByDescending(h => h.Date).ToList(); return Json(new diff --git a/NzbDrone.Web/Models/HistoryModel.cs b/NzbDrone.Web/Models/HistoryModel.cs index 7b9c5dd96..2f60a9d6d 100644 --- a/NzbDrone.Web/Models/HistoryModel.cs +++ b/NzbDrone.Web/Models/HistoryModel.cs @@ -20,5 +20,6 @@ namespace NzbDrone.Web.Models public string Indexer { get; set; } public int EpisodeId { get; set; } public string Details { get; set; } + public string NzbInfoUrl { get; set; } } } \ No newline at end of file diff --git a/NzbDrone.Web/Scripts/NzbDrone/grid.js b/NzbDrone.Web/Scripts/NzbDrone/grid.js index 50c4c74fb..95811fc46 100644 --- a/NzbDrone.Web/Scripts/NzbDrone/grid.js +++ b/NzbDrone.Web/Scripts/NzbDrone/grid.js @@ -5,7 +5,13 @@ $(document).on('click', '.seriesTable a, .dataTable a', function (event) { event.preventDefault(); var link = $(this).attr('href'); - window.location = link; + + if ($(this).attr('target') === '_blank') + window.open(link); + + else + window.location = link; + event.stopPropegation(); }); diff --git a/NzbDrone.Web/Views/History/Index.cshtml b/NzbDrone.Web/Views/History/Index.cshtml index d94553632..c0d640e72 100644 --- a/NzbDrone.Web/Views/History/Index.cshtml +++ b/NzbDrone.Web/Views/History/Index.cshtml @@ -106,6 +106,10 @@ "NZB Title: " + row.aData["NzbTitle"] + "
" + "Proper: " + row.aData["IsProper"] + "
" + "Indexer: " + row.aData["Indexer"]; + + if (row.aData["NzbInfoUrl"] != null && row.aData["NzbInfoUrl"] != "") + result += "
Nzb Details: Details"; + return result; } } //Details