diff --git a/.gitignore b/.gitignore index 5cbd6a1a1..5a23bee56 100644 --- a/.gitignore +++ b/.gitignore @@ -32,4 +32,5 @@ _ReSharper*/ /[Pp]ackage/ #NZBDrone specific *.db -*Web.Publish.xml \ No newline at end of file +*Web.Publish.xml +NzbDrone.Web/NzbDrone.Web.Publish.xml \ No newline at end of file diff --git a/NzbDrone.Core.Test/EpisodeProviderTest.cs b/NzbDrone.Core.Test/EpisodeProviderTest.cs deleted file mode 100644 index 694d1dfa8..000000000 --- a/NzbDrone.Core.Test/EpisodeProviderTest.cs +++ /dev/null @@ -1,206 +0,0 @@ -using System; -using System.Linq; -using System.Collections.Generic; -using System.Diagnostics; -using System.Linq.Expressions; -using AutoMoq; -using FizzWare.NBuilder; -using MbUnit.Framework; -using Moq; -using NzbDrone.Core.Model; -using NzbDrone.Core.Providers; -using NzbDrone.Core.Repository; -using NzbDrone.Core.Repository.Quality; -using SubSonic.Repository; -using TvdbLib.Data; - -namespace NzbDrone.Core.Test -{ - [TestFixture] - // ReSharper disable InconsistentNaming - public class EpisodeProviderTest - { - [Test] - public void RefreshEpisodeInfo() - { - //Arrange - const int seriesId = 71663; - const int episodeCount = 10; - - var fakeEpisodes = Builder.CreateNew().With( - c => c.Episodes = - new List(Builder.CreateListOfSize(episodeCount). - WhereAll() - .Have(l => l.Language = new TvdbLanguage(0, "eng", "a")) - .Build()) - ).With(c => c.Id = seriesId).Build(); - - var mocker = new AutoMoqer(); - - mocker.SetConstant(MockLib.GetEmptyRepository()); - - mocker.GetMock() - .Setup(c => c.GetSeries(seriesId, true)) - .Returns(fakeEpisodes).Verifiable(); - - //mocker.GetMock().SetReturnsDefault(); - - - //Act - var sw = Stopwatch.StartNew(); - mocker.Resolve().RefreshEpisodeInfo(seriesId); - var actualCount = mocker.Resolve().GetEpisodeBySeries(seriesId); - //Assert - mocker.GetMock().VerifyAll(); - Assert.Count(episodeCount, actualCount); - Console.WriteLine("Duration: " + sw.Elapsed); - } - - [Test] - - //Should Download - [Row(QualityTypes.TV, true, QualityTypes.TV, false, true)] - [Row(QualityTypes.DVD, true, QualityTypes.TV, true, true)] - [Row(QualityTypes.DVD, true, QualityTypes.TV, true, true)] - //Should Skip - [Row(QualityTypes.Bluray720, true, QualityTypes.Bluray1080, false, false)] - [Row(QualityTypes.TV, true, QualityTypes.HDTV, true, false)] - public void Is_Needed_Tv_Dvd_BluRay_BluRay720_Is_Cutoff(QualityTypes reportQuality, Boolean isReportProper, QualityTypes fileQuality, Boolean isFileProper, bool excpected) - { - //Setup - var parseResult = new EpisodeParseResult - { - SeriesId = 12, - SeasonNumber = 2, - Episodes = new List { 3 }, - Quality = reportQuality, - Proper = isReportProper - }; - - var epFile = new EpisodeFile - { - Proper = isFileProper, - Quality = fileQuality - }; - - var episodeInfo = new Episode - { - SeriesId = 12, - SeasonNumber = 2, - EpisodeNumber = 3, - Series = new Series { QualityProfileId = 1 }, - EpisodeFile = epFile - - }; - - var seriesQualityProfile = new QualityProfile - { - Allowed = new List { QualityTypes.TV, QualityTypes.DVD, QualityTypes.Bluray720, QualityTypes.Bluray1080 }, - Cutoff = QualityTypes.Bluray720, - Name = "TV/DVD", - }; - - - - var mocker = new AutoMoqer(); - mocker.GetMock() - .Setup(r => r.Single(It.IsAny>>())) - .Returns(episodeInfo); - - mocker.GetMock() - .Setup(q => q.Find(1)) - .Returns(seriesQualityProfile); - - var result = mocker.Resolve().IsNeeded(parseResult); - - Assert.AreEqual(excpected, result); - } - - [Test] - public void get_episode_by_parse_result() - { - var mocker = new AutoMoqer(); - var repo = MockLib.GetEmptyRepository(); - var fakeEpisodes = MockLib.GetFakeEpisodes(2); - repo.AddMany(fakeEpisodes); - mocker.SetConstant(repo); - - var targetEpisode = fakeEpisodes[4]; - - var parseResult1 = new EpisodeParseResult - { - SeriesId = targetEpisode.SeriesId, - SeasonNumber = targetEpisode.SeasonNumber, - Episodes = new List { targetEpisode.EpisodeNumber }, - Quality = QualityTypes.DVD - }; - - var result = mocker.Resolve().GetEpisodeByParseResult(parseResult1); - - - Assert.Count(1, result); - Assert.AreEqual(targetEpisode.EpisodeId, result.First().EpisodeId); - Assert.AreEqual(targetEpisode.EpisodeNumber, result.First().EpisodeNumber); - Assert.AreEqual(targetEpisode.SeasonNumber, result.First().SeasonNumber); - Assert.AreEqual(targetEpisode.SeriesId, result.First().SeriesId); - } - - [Test] - public void Missing_episode_should_be_added() - { - //Setup - var parseResult1 = new EpisodeParseResult - { - SeriesId = 12, - SeasonNumber = 2, - Episodes = new List { 3 }, - Quality = QualityTypes.DVD - - }; - - var parseResult2 = new EpisodeParseResult - { - SeriesId = 12, - SeasonNumber = 3, - Episodes = new List { 3 }, - Quality = QualityTypes.DVD - - }; - - var mocker = new AutoMoqer(); - mocker.SetConstant(MockLib.GetEmptyRepository()); - - var episodeProvider = mocker.Resolve(); - var result1 = episodeProvider.IsNeeded(parseResult1); - var result2 = episodeProvider.IsNeeded(parseResult2); - var episodes = episodeProvider.GetEpisodeBySeries(12); - Assert.IsTrue(result1); - Assert.IsTrue(result2); - Assert.IsNotEmpty(episodes); - Assert.Count(2, episodes); - } - - - - - [Test] - [Explicit] - public void Add_daily_show_episodes() - { - var mocker = new AutoMoqer(); - mocker.SetConstant(MockLib.GetEmptyRepository()); - mocker.Resolve(); - const int tvDbSeriesId = 71256; - //act - var seriesProvider = mocker.Resolve(); - - seriesProvider.AddSeries("c:\\test\\", tvDbSeriesId, 0); - var episodeProvider = mocker.Resolve(); - episodeProvider.RefreshEpisodeInfo(tvDbSeriesId); - - //assert - var episodes = episodeProvider.GetEpisodeBySeries(tvDbSeriesId); - Assert.IsNotEmpty(episodes); - } - } -} \ No newline at end of file diff --git a/NzbDrone.Core.Test/Files/RSS/newzbin.xml b/NzbDrone.Core.Test/Files/RSS/newzbin.xml new file mode 100644 index 000000000..99b5bb09d --- /dev/null +++ b/NzbDrone.Core.Test/Files/RSS/newzbin.xml @@ -0,0 +1,2943 @@ + + + + www.newzbin.com (reports) + http://www.newzbin.com/browse/category/p/tv/ + Newzbin Reports Feed + Mon, 25 Apr 2011 16:08:24 GMT + 42 + www.newzbin.com - Usenet Search + Copyright (c) 2002 - 2007 Newzbin Limited. All Rights Reserved. + + http://www.newzbin.com/m/i/logo/newzbinv3.png + http://www.newzbin.com/browse/category/p/tv/ + www.newzbin.com + Visit Newzbin.com - The Ultimate In Usenet Indexing + + + Rookie Blue - 1x10 - Big Nickel + http://www.newzbin.com/browse/post/6076287/ + http://www.newzbin.com/browse/post/6076287/ + http://www.newzbin.com/browse/post/6076287/#CommentsPH + + +
  • + ID: 6076287 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 1,235.6MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - TV Cap, HDTV | Video Format - x264, 720p | Video Genre - Action/Adv, Crime, Drama, Family | Language - English, German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Sunday 06 Mar 2011, 01:05PM PDT
  • + ]]> +
    + 6076287 + TV + + TV Cap + HDTV + x264 + 720p + Action/Adv + Crime + Drama + Family + English + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/Rookie_Blue/episodes/1064943067/1x10/ + + 373966350 + tvp-rookieblue-s01e10-720p.nfo + http://www.newzbin.com/nfo/view/txt/373966350/ + + http://www.newzbin.com/browse/post/6076287/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 1295652290 + Sun, 06 Mar 2011 21:05:58 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:55:04 GMT +
    + + Rookie Blue - 1x10 - Big Nickel + http://www.newzbin.com/browse/post/6076286/ + http://www.newzbin.com/browse/post/6076286/ + http://www.newzbin.com/browse/post/6076286/#CommentsPH + + +
  • + ID: 6076286 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 411.7MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - TV Cap, HDTV | Video Format - XviD | Video Genre - Action/Adv, Crime, Drama, Family | Language - German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Sunday 06 Mar 2011, 12:57PM PDT
  • + ]]> +
    + 6076286 + TV + + TV Cap + HDTV + XviD + Action/Adv + Crime + Drama + Family + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/Rookie_Blue/episodes/1064943067/1x10/ + + 373966074 + tvp-rookieblue-s01e10-xvid.nfo + http://www.newzbin.com/nfo/view/txt/373966074/ + + http://www.newzbin.com/browse/post/6076286/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 431730586 + Sun, 06 Mar 2011 20:57:29 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:54:30 GMT +
    + + Man, Woman, Wild - 1x05 - Mexico + http://www.newzbin.com/browse/post/6076285/ + http://www.newzbin.com/browse/post/6076285/ + http://www.newzbin.com/browse/post/6076285/#CommentsPH + + +
  • + ID: 6076285 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 410.8MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - TV Cap | Video Format - XviD | Video Genre - Family, Reality | Language - German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Monday 07 Mar 2011, 10:34AM PDT
  • + ]]> +
    + 6076285 + TV + + TV Cap + XviD + Family + Reality + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/shows/id-25983/episodes/1064960861/1x05/ + + 374221702 + tvp-frauwild-s01e05.nfo + http://www.newzbin.com/nfo/view/txt/374221702/ + + http://www.newzbin.com/browse/post/6076285/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 430705744 + Mon, 07 Mar 2011 18:34:52 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:53:13 GMT +
    + + Being Erica - 1x10 - Mi Casa, Su Casa Loma + http://www.newzbin.com/browse/post/6076284/ + http://www.newzbin.com/browse/post/6076284/ + http://www.newzbin.com/browse/post/6076284/#CommentsPH + + +
  • + ID: 6076284 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 1,572.7MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - TV Cap, HDTV | Video Format - x264, 720p | Video Genre - Comedy, Drama, Fantasy | Language - English, German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Friday 11 Mar 2011, 09:23AM PDT
  • + ]]> +
    + 6076284 + TV + + TV Cap + HDTV + x264 + 720p + Comedy + Drama + Fantasy + English + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/Being_Erica/episodes/757886/1x10/ + + 375301150 + tvp-beingerica-s01e10-720p.nfo + http://www.newzbin.com/nfo/view/txt/375301150/ + + http://www.newzbin.com/browse/post/6076284/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 1649087965 + Fri, 11 Mar 2011 17:23:04 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:52:06 GMT +
    + + Braceface - 1x13 - Miami Vices + http://www.newzbin.com/browse/post/6076283/ + http://www.newzbin.com/browse/post/6076283/ + http://www.newzbin.com/browse/post/6076283/#CommentsPH + + +
  • + ID: 6076283 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 277.0MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Animation | Language - German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Friday 11 Mar 2011, 02:03PM PDT
  • + ]]> +
    + 6076283 + TV + + DVD + XviD + Animation + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/shows/id-2888/episodes/26569/1x13/ + + 375352960 + tvp-brace-s01e13-xvid.nfo + http://www.newzbin.com/nfo/view/txt/375352960/ + + http://www.newzbin.com/browse/post/6076283/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 290475921 + Fri, 11 Mar 2011 22:03:58 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:51:43 GMT +
    + + Braceface - 1x12 - The Pickford Project + http://www.newzbin.com/browse/post/6076282/ + http://www.newzbin.com/browse/post/6076282/ + http://www.newzbin.com/browse/post/6076282/#CommentsPH + + +
  • + ID: 6076282 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 277.0MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Animation | Language - German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Friday 11 Mar 2011, 02:04PM PDT
  • + ]]> +
    + 6076282 + TV + + DVD + XviD + Animation + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/shows/id-2888/episodes/26568/1x12/ + + 375352988 + tvp-brace-s01e12-xvid.nfo + http://www.newzbin.com/nfo/view/txt/375352988/ + + http://www.newzbin.com/browse/post/6076282/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 290433257 + Fri, 11 Mar 2011 22:04:18 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:51:26 GMT +
    + + Braceface - 1x11 - Twenty Four Hours + http://www.newzbin.com/browse/post/6076281/ + http://www.newzbin.com/browse/post/6076281/ + http://www.newzbin.com/browse/post/6076281/#CommentsPH + + +
  • + ID: 6076281 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 277.0MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Animation | Language - German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Friday 11 Mar 2011, 02:04PM PDT
  • + ]]> +
    + 6076281 + TV + + DVD + XviD + Animation + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/shows/id-2888/episodes/26567/1x11/ + + 375353026 + tvp-brace-s01e11-xvid.nfo + http://www.newzbin.com/nfo/view/txt/375353026/ + + http://www.newzbin.com/browse/post/6076281/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 290458801 + Fri, 11 Mar 2011 22:04:37 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:51:09 GMT +
    + + Braceface - 1x10 - Driving Miss Sharon + http://www.newzbin.com/browse/post/6076280/ + http://www.newzbin.com/browse/post/6076280/ + http://www.newzbin.com/browse/post/6076280/#CommentsPH + + +
  • + ID: 6076280 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 276.8MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Animation | Language - German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Friday 11 Mar 2011, 02:04PM PDT
  • + ]]> +
    + 6076280 + TV + + DVD + XviD + Animation + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/shows/id-2888/episodes/26566/ + + 375353064 + tvp-brace-s01e10-xvid.nfo + http://www.newzbin.com/nfo/view/txt/375353064/ + + http://www.newzbin.com/browse/post/6076280/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 290294499 + Fri, 11 Mar 2011 22:04:56 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:50:08 GMT +
    + + Braceface - 1x09 - The Divorce Thing + http://www.newzbin.com/browse/post/6076279/ + http://www.newzbin.com/browse/post/6076279/ + http://www.newzbin.com/browse/post/6076279/#CommentsPH + + +
  • + ID: 6076279 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 276.9MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Animation | Language - German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Friday 11 Mar 2011, 02:05PM PDT
  • + ]]> +
    + 6076279 + TV + + DVD + XviD + Animation + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/shows/id-2888/episodes/26565/1x09/ + + 375353090 + tvp-brace-s01e09-xvid.nfo + http://www.newzbin.com/nfo/view/txt/375353090/ + + http://www.newzbin.com/browse/post/6076279/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 290375536 + Fri, 11 Mar 2011 22:05:15 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:49:51 GMT +
    + + Braceface - 1x08 - The Worst First Date Ever. Period. + http://www.newzbin.com/browse/post/6076278/ + http://www.newzbin.com/browse/post/6076278/ + http://www.newzbin.com/browse/post/6076278/#CommentsPH + + +
  • + ID: 6076278 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 276.8MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Animation | Language - German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Friday 11 Mar 2011, 02:05PM PDT
  • + ]]> +
    + 6076278 + TV + + DVD + XviD + Animation + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/shows/id-2888/episodes/26564/1x08/ + + 375353128 + tvp-brace-s01e08-xvid.nfo + http://www.newzbin.com/nfo/view/txt/375353128/ + + http://www.newzbin.com/browse/post/6076278/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 290260093 + Fri, 11 Mar 2011 22:05:33 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:49:34 GMT +
    + + Braceface - 1x07 - Mixed Messages + http://www.newzbin.com/browse/post/6076277/ + http://www.newzbin.com/browse/post/6076277/ + http://www.newzbin.com/browse/post/6076277/#CommentsPH + + +
  • + ID: 6076277 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 277.0MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Animation | Language - German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Friday 11 Mar 2011, 02:05PM PDT
  • + ]]> +
    + 6076277 + TV + + DVD + XviD + Animation + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/shows/id-2888/episodes/26563/1x07/ + + 375353157 + tvp-brace-s01e07-xvid.nfo + http://www.newzbin.com/nfo/view/txt/375353157/ + + http://www.newzbin.com/browse/post/6076277/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 290455187 + Fri, 11 Mar 2011 22:05:51 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:49:19 GMT +
    + + Braceface - 1x06 - The Makeover + http://www.newzbin.com/browse/post/6076276/ + http://www.newzbin.com/browse/post/6076276/ + http://www.newzbin.com/browse/post/6076276/#CommentsPH + + +
  • + ID: 6076276 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 276.9MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Animation | Language - German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Friday 11 Mar 2011, 02:06PM PDT
  • + ]]> +
    + 6076276 + TV + + DVD + XviD + Animation + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/shows/id-2888/episodes/26562/1x06/ + + 375353196 + tvp-brace-s01e06-xvid.nfo + http://www.newzbin.com/nfo/view/txt/375353196/ + + http://www.newzbin.com/browse/post/6076276/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 290330286 + Fri, 11 Mar 2011 22:06:13 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:49:02 GMT +
    + + Braceface - 1x05 - The Meat of the Matter + http://www.newzbin.com/browse/post/6076275/ + http://www.newzbin.com/browse/post/6076275/ + http://www.newzbin.com/browse/post/6076275/#CommentsPH + + +
  • + ID: 6076275 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 276.9MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Animation | Language - German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Friday 11 Mar 2011, 02:06PM PDT
  • + ]]> +
    + 6076275 + TV + + DVD + XviD + Animation + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/shows/id-2888/episodes/26561/1x05/ + + 375353231 + tvp-brace-s01e05-xvid.nfo + http://www.newzbin.com/nfo/view/txt/375353231/ + + http://www.newzbin.com/browse/post/6076275/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 290387479 + Fri, 11 Mar 2011 22:06:31 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:48:45 GMT +
    + + Braceface - 1x04 - The Doctor Is In + http://www.newzbin.com/browse/post/6076274/ + http://www.newzbin.com/browse/post/6076274/ + http://www.newzbin.com/browse/post/6076274/#CommentsPH + + +
  • + ID: 6076274 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 276.9MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Animation | Language - German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Friday 11 Mar 2011, 02:06PM PDT
  • + ]]> +
    + 6076274 + TV + + DVD + XviD + Animation + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/shows/id-2888/episodes/26560/1x04/ + + 375353264 + tvp-brace-s01e04-xvid.nfo + http://www.newzbin.com/nfo/view/txt/375353264/ + + http://www.newzbin.com/browse/post/6076274/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 290401520 + Fri, 11 Mar 2011 22:06:50 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:48:28 GMT +
    + + Braceface - 1x03 - 5 Things That Really Bug Me About You + http://www.newzbin.com/browse/post/6076273/ + http://www.newzbin.com/browse/post/6076273/ + http://www.newzbin.com/browse/post/6076273/#CommentsPH + + +
  • + ID: 6076273 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 276.9MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Animation | Language - German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Friday 11 Mar 2011, 02:07PM PDT
  • + ]]> +
    + 6076273 + TV + + DVD + XviD + Animation + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/shows/id-2888/episodes/26559/1x03/ + + 375353300 + tvp-brace-s01e03-xvid.nfo + http://www.newzbin.com/nfo/view/txt/375353300/ + + http://www.newzbin.com/browse/post/6076273/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 290397799 + Fri, 11 Mar 2011 22:07:09 GMT + + 3 + 0 + + + Mon, 25 Apr 2011 11:48:12 GMT +
    + + Braceface - 1x02 - Crushed + http://www.newzbin.com/browse/post/6076272/ + http://www.newzbin.com/browse/post/6076272/ + http://www.newzbin.com/browse/post/6076272/#CommentsPH + + +
  • + ID: 6076272 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 276.9MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Animation | Language - German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Friday 11 Mar 2011, 02:07PM PDT
  • + ]]> +
    + 6076272 + TV + + DVD + XviD + Animation + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/shows/id-2888/episodes/26558/1x02/ + + 375353333 + tvp-brace-s01-e02-xvid.nfo + http://www.newzbin.com/nfo/view/txt/375353333/ + + http://www.newzbin.com/browse/post/6076272/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 290345118 + Fri, 11 Mar 2011 22:07:28 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:47:55 GMT +
    + + Braceface - 1x01 - Brace Yourself + http://www.newzbin.com/browse/post/6076271/ + http://www.newzbin.com/browse/post/6076271/ + http://www.newzbin.com/browse/post/6076271/#CommentsPH + + +
  • + ID: 6076271 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 276.8MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Animation | Language - German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Friday 11 Mar 2011, 02:07PM PDT
  • + ]]> +
    + 6076271 + TV + + DVD + XviD + Animation + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/shows/id-2888/episodes/26557/1x01/ + + 375353364 + tvp-brace-s01e01-xvid.nfo + http://www.newzbin.com/nfo/view/txt/375353364/ + + http://www.newzbin.com/browse/post/6076271/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 290293303 + Fri, 11 Mar 2011 22:07:47 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:47:38 GMT +
    + + Law & Order - 20x10 - Shotgun + http://www.newzbin.com/browse/post/6076269/ + http://www.newzbin.com/browse/post/6076269/ + http://www.newzbin.com/browse/post/6076269/#CommentsPH + + +
  • + ID: 6076269 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 1,292.0MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - TV Cap, HDTV | Video Format - x264, 720p | Video Genre - Action/Adv, Crime, Drama | Language - German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Friday 11 Mar 2011, 09:25AM PDT
  • + ]]> +
    + 6076269 + TV + + TV Cap + HDTV + x264 + 720p + Action/Adv + Crime + Drama + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/Law_And_Order/episodes/1064871705/20x10/ + + 375302935 + tvp-lawandorder-s20e10-720p.nfo + http://www.newzbin.com/nfo/view/txt/375302935/ + + http://www.newzbin.com/browse/post/6076269/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 1354781182 + Fri, 11 Mar 2011 17:25:12 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:46:48 GMT +
    + + Rookie Blue - 1x11 - To Serve or Protect + http://www.newzbin.com/browse/post/6076268/ + http://www.newzbin.com/browse/post/6076268/ + http://www.newzbin.com/browse/post/6076268/#CommentsPH + + +
  • + ID: 6076268 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 1,373.9MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - TV Cap, HDTV | Video Format - x264, 720p | Video Genre - Action/Adv, Crime, Drama, Family | Language - German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Saturday 12 Mar 2011, 02:38PM PDT
  • + ]]> +
    + 6076268 + TV + + TV Cap + HDTV + x264 + 720p + Action/Adv + Crime + Drama + Family + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/Rookie_Blue/episodes/1064943068/1x11/ + + 375624993 + tvp-rookie-s01e11-720p.nfo + http://www.newzbin.com/nfo/view/txt/375624993/ + + http://www.newzbin.com/browse/post/6076268/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 1440609615 + Sat, 12 Mar 2011 22:38:24 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:46:00 GMT +
    + + Rookie Blue - 1x11 - To Serve or Protect + http://www.newzbin.com/browse/post/6076267/ + http://www.newzbin.com/browse/post/6076267/ + http://www.newzbin.com/browse/post/6076267/#CommentsPH + + +
  • + ID: 6076267 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 409.0MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - TV Cap, HDTV | Video Format - XviD | Video Genre - Action/Adv, Crime, Drama, Family | Language - German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Saturday 12 Mar 2011, 02:47PM PDT
  • + ]]> +
    + 6076267 + TV + + TV Cap + HDTV + XviD + Action/Adv + Crime + Drama + Family + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/Rookie_Blue/episodes/1064943068/1x11/ + + 375626369 + tvp-rookie-s01e11-xvid.nfo + http://www.newzbin.com/nfo/view/txt/375626369/ + + http://www.newzbin.com/browse/post/6076267/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 428854729 + Sat, 12 Mar 2011 22:47:46 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:45:34 GMT +
    + + Law & Order - 20x10 - Shotgun + http://www.newzbin.com/browse/post/6076263/ + http://www.newzbin.com/browse/post/6076263/ + http://www.newzbin.com/browse/post/6076263/#CommentsPH + + +
  • + ID: 6076263 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 411.5MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - TV Cap, HDTV | Video Format - XviD | Video Genre - Action/Adv, Crime, Drama | Language - German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Friday 11 Mar 2011, 02:11PM PDT
  • + ]]> +
    + 6076263 + TV + + TV Cap + HDTV + XviD + Action/Adv + Crime + Drama + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/Law_And_Order/episodes/1064871705/20x10/ + + 375353661 + tvp-lawandorder-s20e10-xvid.nfo + http://www.newzbin.com/nfo/view/txt/375353661/ + + http://www.newzbin.com/browse/post/6076263/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 431534203 + Fri, 11 Mar 2011 22:11:40 GMT + + 3 + 0 + + + Mon, 25 Apr 2011 11:33:55 GMT +
    + + American Pickers - 1x08 - 5 Acres of Junk + http://www.newzbin.com/browse/post/6076261/ + http://www.newzbin.com/browse/post/6076261/ + http://www.newzbin.com/browse/post/6076261/#CommentsPH + + +
  • + ID: 6076261 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 421.0MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Family, Reality | Language - German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Sunday 13 Mar 2011, 09:49AM PDT
  • + ]]> +
    + 6076261 + TV + + DVD + XviD + Family + Reality + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/shows/id-24796/episodes/1064905054/1x08/ + + 375898215 + tvp-americanpickers-s01e08.nfo + http://www.newzbin.com/nfo/view/txt/375898215/ + + http://www.newzbin.com/browse/post/6076261/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 441460492 + Sun, 13 Mar 2011 16:49:50 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:33:18 GMT +
    + + Danni Lowinski - 2x01 - Um die Wurst + http://www.newzbin.com/browse/post/6076258/ + http://www.newzbin.com/browse/post/6076258/ + http://www.newzbin.com/browse/post/6076258/#CommentsPH + + +
  • + ID: 6076258 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 410.2MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - TV Cap | Video Format - XviD | Video Genre - Comedy, Crime, Drama | Language - German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Monday 14 Mar 2011, 11:56PM PDT
  • + ]]> +
    + 6076258 + TV + + TV Cap + XviD + Comedy + Crime + Drama + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/shows/id-26800/episodes/1065022051/2x01/ + + 376607558 + tvp-lowinski-s01e01-xvid.nfo + http://www.newzbin.com/nfo/view/txt/376607558/ + + http://www.newzbin.com/browse/post/6076258/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 430079171 + Tue, 15 Mar 2011 06:56:45 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:32:30 GMT +
    + + Glee - 1x10 - Ballad + http://www.newzbin.com/browse/post/6076253/ + http://www.newzbin.com/browse/post/6076253/ + http://www.newzbin.com/browse/post/6076253/#CommentsPH + + +
  • + ID: 6076253 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 2,197.8MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - Blu-ray | Video Format - x264, 720p | Video Genre - Comedy | Language - English, German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Tuesday 15 Mar 2011, 12:14PM PDT
  • + ]]> +
    + 6076253 + TV + + Blu-ray + x264 + 720p + Comedy + English + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/Glee/episodes/1064852788/ + + 376740475 + tvp-glee-s01e10-720p.nfo + http://www.newzbin.com/nfo/view/txt/376740475/ + + http://www.newzbin.com/browse/post/6076253/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 2304569923 + Tue, 15 Mar 2011 19:14:58 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:27:58 GMT +
    + + Man, Woman, Wild - 1x06 - Utah + http://www.newzbin.com/browse/post/6076252/ + http://www.newzbin.com/browse/post/6076252/ + http://www.newzbin.com/browse/post/6076252/#CommentsPH + + +
  • + ID: 6076252 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 410.9MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - TV Cap | Video Format - XviD | Video Genre - Family, Reality | Language - German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Monday 14 Mar 2011, 04:33AM PDT
  • + ]]> +
    + 6076252 + TV + + TV Cap + XviD + Family + Reality + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/shows/id-25983/episodes/1064960862/1x06/ + + 376207951 + tvp-frauwild-s01e06.nfo + http://www.newzbin.com/nfo/view/txt/376207951/ + + http://www.newzbin.com/browse/post/6076252/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 430906335 + Mon, 14 Mar 2011 11:33:14 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:27:34 GMT +
    + + Law & Order: Special Victims Unit - 11x11 - Quickie + http://www.newzbin.com/browse/post/6076249/ + http://www.newzbin.com/browse/post/6076249/ + http://www.newzbin.com/browse/post/6076249/#CommentsPH + + +
  • + ID: 6076249 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 1,287.0MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - TV Cap, HDTV | Video Format - x264, 720p | Video Genre - Action/Adv, Crime, Drama | Language - German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Thursday 17 Mar 2011, 01:00PM PDT
  • + ]]> +
    + 6076249 + TV + + TV Cap + HDTV + x264 + 720p + Action/Adv + Crime + Drama + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/Law_And_Order_SVU/episodes/1064882720/ + + 377314191 + tvp-lawandorderny-s01e11-720p.nfo + http://www.newzbin.com/nfo/view/txt/377314191/ + + http://www.newzbin.com/browse/post/6076249/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 1349563899 + Thu, 17 Mar 2011 20:00:28 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:23:39 GMT +
    + + ESPN Classic - An Audience with Muhammad Ali + http://www.newzbin.com/browse/post/6076248/ + http://www.newzbin.com/browse/post/6076248/ + http://www.newzbin.com/browse/post/6076248/#CommentsPH + + +
  • + ID: 6076248 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 464.7MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - TV Cap | Video Format - XviD | Video Genre - Sport | Language - English | Subtitled Language - English +
  • +
  • Groups: alt.binaries.movies.divx
  • +
  • Poster: demotic <likeimtelling@yahoo.com>
  • +
  • PostDate: Monday 25 Apr 2011, 01:08AM PDT
  • + ]]> +
    + 6076248 + TV + + TV Cap + XviD + Sport + English + English + + + alt.binaries.movies.divx + + Report is complete + + + 0 + + + + http://www.newzbin.com/browse/post/6076248/nzb/ + demotic <likeimtelling@yahoo.com> + 487231741 + Mon, 25 Apr 2011 08:08:26 GMT + + 6 + 0 + + + Mon, 25 Apr 2011 11:23:20 GMT +
    + + Law & Order: Special Victims Unit - 11x11 - Quickie + http://www.newzbin.com/browse/post/6076247/ + http://www.newzbin.com/browse/post/6076247/ + http://www.newzbin.com/browse/post/6076247/#CommentsPH + + +
  • + ID: 6076247 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 409.9MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - TV Cap, HDTV | Video Format - XviD | Video Genre - Action/Adv, Crime, Drama | Language - German +
  • +
  • Groups: alt.binaries.illuminaten
  • +
  • Poster: AuToMaTiC <AuTo@Illuminatenboard.org>
  • +
  • PostDate: Thursday 17 Mar 2011, 01:06PM PDT
  • + ]]> +
    + 6076247 + TV + + TV Cap + HDTV + XviD + Action/Adv + Crime + Drama + German + + + alt.binaries.illuminaten + + Report is complete + http://www.tvrage.com/Law_And_Order_SVU/episodes/1064882720/11x11/ + + 377314398 + tvp-lawandorderny-s01e11-xvid.nfo + http://www.newzbin.com/nfo/view/txt/377314398/ + + http://www.newzbin.com/browse/post/6076247/nzb/ + AuToMaTiC <AuTo@Illuminatenboard.org> + 429849596 + Thu, 17 Mar 2011 20:06:05 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:23:01 GMT +
    + + Saddle Ranch - 1x02 - Always Down To Party + http://www.newzbin.com/browse/post/6076244/ + http://www.newzbin.com/browse/post/6076244/ + http://www.newzbin.com/browse/post/6076244/#CommentsPH + + +
  • + ID: 6076244 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 640.1MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - TV Cap, HDTV | Video Format - x264, 720p | Video Genre - Family, Reality | Language - English +
  • +
  • Groups: alt.binaries.multimedia, alt.binaries.teevee
  • +
  • Poster: teevee@4u.net (teevee)
  • +
  • PostDate: Monday 25 Apr 2011, 03:15AM PDT
  • + ]]> +
    + 6076244 + TV + + TV Cap + HDTV + x264 + 720p + Family + Reality + English + + + alt.binaries.multimedia + alt.binaries.teevee + + Report is complete + http://www.tvrage.com/shows/id-27943/episodes/1065029531/ + + 389900592 + saddle.ranch.s01e02.720p.hdtv.x264-momentum.nfo + http://www.newzbin.com/nfo/view/txt/389900592/ + + http://www.newzbin.com/browse/post/6076244/nzb/ + teevee@4u.net (teevee) + 671236473 + Mon, 25 Apr 2011 10:15:13 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:22:07 GMT +
    + + Saddle Ranch - 1x02 - Always Down To Party + http://www.newzbin.com/browse/post/6076243/ + http://www.newzbin.com/browse/post/6076243/ + http://www.newzbin.com/browse/post/6076243/#CommentsPH + + +
  • + ID: 6076243 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 200.2MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - TV Cap, HDTV | Video Format - XviD | Video Genre - Family, Reality | Language - English +
  • +
  • Groups: alt.binaries.multimedia, alt.binaries.teevee
  • +
  • Poster: teevee@4u.net (teevee)
  • +
  • PostDate: Monday 25 Apr 2011, 03:20AM PDT
  • + ]]> +
    + 6076243 + TV + + TV Cap + HDTV + XviD + Family + Reality + English + + + alt.binaries.multimedia + alt.binaries.teevee + + Report is complete + http://www.tvrage.com/shows/id-27943/episodes/1065029531/ + + 389900619 + saddle.ranch.s01e02.hdtv.xvid-momentum.nfo + http://www.newzbin.com/nfo/view/txt/389900619/ + + http://www.newzbin.com/browse/post/6076243/nzb/ + teevee@4u.net (teevee) + 209956310 + Mon, 25 Apr 2011 10:20:46 GMT + + 3 + 0 + + + Mon, 25 Apr 2011 11:21:53 GMT +
    + + Punky Brewster - 2x01 - The K.O. Kid + http://www.newzbin.com/browse/post/6076242/ + http://www.newzbin.com/browse/post/6076242/ + http://www.newzbin.com/browse/post/6076242/#CommentsPH + + +
  • + ID: 6076242 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 201.7MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Comedy | Language - English +
  • +
  • Groups: alt.binaries.multimedia, alt.binaries.teevee
  • +
  • Poster: teevee@4u.tv (teevee)
  • +
  • PostDate: Monday 25 Apr 2011, 03:29AM PDT
  • + ]]> +
    + 6076242 + TV + + DVD + XviD + Comedy + English + + + alt.binaries.multimedia + alt.binaries.teevee + + Report is complete + http://www.tvrage.com/shows/id-4915/episodes/140207/2x01/ + + 389903249 + runner-punkyb-s02e01.nfo + http://www.newzbin.com/nfo/view/txt/389903249/ + + http://www.newzbin.com/browse/post/6076242/nzb/ + teevee@4u.tv (teevee) + 211548260 + Mon, 25 Apr 2011 10:29:18 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:21:39 GMT +
    + + Punky Brewster - 2x02 - Punky's Treehouse + http://www.newzbin.com/browse/post/6076241/ + http://www.newzbin.com/browse/post/6076241/ + http://www.newzbin.com/browse/post/6076241/#CommentsPH + + +
  • + ID: 6076241 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 201.9MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Comedy | Language - English +
  • +
  • Groups: alt.binaries.multimedia, alt.binaries.teevee
  • +
  • Poster: teevee@4u.tv (teevee)
  • +
  • PostDate: Monday 25 Apr 2011, 03:29AM PDT
  • + ]]> +
    + 6076241 + TV + + DVD + XviD + Comedy + English + + + alt.binaries.multimedia + alt.binaries.teevee + + Report is complete + http://www.tvrage.com/shows/id-4915/episodes/140208/2x02/ + + 389903264 + runner-punkyb-s02e02.nfo + http://www.newzbin.com/nfo/view/txt/389903264/ + + http://www.newzbin.com/browse/post/6076241/nzb/ + teevee@4u.tv (teevee) + 211676713 + Mon, 25 Apr 2011 10:29:26 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:21:25 GMT +
    + + Punky Brewster - 2x03 - Cheaters Never Win + http://www.newzbin.com/browse/post/6076240/ + http://www.newzbin.com/browse/post/6076240/ + http://www.newzbin.com/browse/post/6076240/#CommentsPH + + +
  • + ID: 6076240 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 202.4MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Comedy | Language - English +
  • +
  • Groups: alt.binaries.multimedia, alt.binaries.teevee
  • +
  • Poster: teevee@4u.tv (teevee)
  • +
  • PostDate: Monday 25 Apr 2011, 03:29AM PDT
  • + ]]> +
    + 6076240 + TV + + DVD + XviD + Comedy + English + + + alt.binaries.multimedia + alt.binaries.teevee + + Report is complete + http://www.tvrage.com/shows/id-4915/episodes/140209/2x03/ + + 389903321 + runner-punkyb-s02e03.nfo + http://www.newzbin.com/nfo/view/txt/389903321/ + + http://www.newzbin.com/browse/post/6076240/nzb/ + teevee@4u.tv (teevee) + 212269092 + Mon, 25 Apr 2011 10:29:33 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:21:12 GMT +
    + + Punky Brewster - 2x04 - Baby Buddies, Inc + http://www.newzbin.com/browse/post/6076239/ + http://www.newzbin.com/browse/post/6076239/ + http://www.newzbin.com/browse/post/6076239/#CommentsPH + + +
  • + ID: 6076239 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 201.9MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Comedy | Language - English +
  • +
  • Groups: alt.binaries.multimedia, alt.binaries.teevee
  • +
  • Poster: teevee@4u.tv (teevee)
  • +
  • PostDate: Monday 25 Apr 2011, 03:29AM PDT
  • + ]]> +
    + 6076239 + TV + + DVD + XviD + Comedy + English + + + alt.binaries.multimedia + alt.binaries.teevee + + Report is complete + http://www.tvrage.com/shows/id-4915/episodes/140210/2x04/ + + 389903318 + runner-punkyb-s02e04.nfo + http://www.newzbin.com/nfo/view/txt/389903318/ + + http://www.newzbin.com/browse/post/6076239/nzb/ + teevee@4u.tv (teevee) + 211666300 + Mon, 25 Apr 2011 10:29:39 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:20:59 GMT +
    + + Punky Brewster - 2x05 - Tap Your Troubles Away + http://www.newzbin.com/browse/post/6076238/ + http://www.newzbin.com/browse/post/6076238/ + http://www.newzbin.com/browse/post/6076238/#CommentsPH + + +
  • + ID: 6076238 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 201.9MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Comedy | Language - English +
  • +
  • Groups: alt.binaries.multimedia, alt.binaries.teevee
  • +
  • Poster: teevee@4u.tv (teevee)
  • +
  • PostDate: Monday 25 Apr 2011, 03:29AM PDT
  • + ]]> +
    + 6076238 + TV + + DVD + XviD + Comedy + English + + + alt.binaries.multimedia + alt.binaries.teevee + + Report is complete + http://www.tvrage.com/shows/id-4915/episodes/140211/2x05/ + + 389903372 + runner-punkyb-s02e05.nfo + http://www.newzbin.com/nfo/view/txt/389903372/ + + http://www.newzbin.com/browse/post/6076238/nzb/ + teevee@4u.tv (teevee) + 211681829 + Mon, 25 Apr 2011 10:29:45 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:20:43 GMT +
    + + Punky Brewster - 2x06 - The Perils of Punky (Part 1) + http://www.newzbin.com/browse/post/6076237/ + http://www.newzbin.com/browse/post/6076237/ + http://www.newzbin.com/browse/post/6076237/#CommentsPH + + +
  • + ID: 6076237 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 202.1MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Comedy | Language - English +
  • +
  • Groups: alt.binaries.multimedia, alt.binaries.teevee
  • +
  • Poster: teevee@4u.tv (teevee)
  • +
  • PostDate: Monday 25 Apr 2011, 03:29AM PDT
  • + ]]> +
    + 6076237 + TV + + DVD + XviD + Comedy + English + + + alt.binaries.multimedia + alt.binaries.teevee + + Report is complete + http://www.tvrage.com/shows/id-4915/episodes/140212/2x06/ + + 389903386 + runner-punkyb-s02e06.nfo + http://www.newzbin.com/nfo/view/txt/389903386/ + + http://www.newzbin.com/browse/post/6076237/nzb/ + teevee@4u.tv (teevee) + 211892995 + Mon, 25 Apr 2011 10:29:52 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:20:31 GMT +
    + + Punky Brewster - 2x07 - The Perils of Punky (Part 2) + http://www.newzbin.com/browse/post/6076236/ + http://www.newzbin.com/browse/post/6076236/ + http://www.newzbin.com/browse/post/6076236/#CommentsPH + + +
  • + ID: 6076236 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 202.5MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Comedy | Language - English +
  • +
  • Groups: alt.binaries.multimedia, alt.binaries.teevee
  • +
  • Poster: teevee@4u.tv (teevee)
  • +
  • PostDate: Monday 25 Apr 2011, 03:29AM PDT
  • + ]]> +
    + 6076236 + TV + + DVD + XviD + Comedy + English + + + alt.binaries.multimedia + alt.binaries.teevee + + Report is complete + http://www.tvrage.com/shows/id-4915/episodes/140213/2x07/ + + 389903411 + runner-punkyb-s02e07.nfo + http://www.newzbin.com/nfo/view/txt/389903411/ + + http://www.newzbin.com/browse/post/6076236/nzb/ + teevee@4u.tv (teevee) + 212305883 + Mon, 25 Apr 2011 10:29:57 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:20:20 GMT +
    + + Punky Brewster - 2x08 - Just Say No + http://www.newzbin.com/browse/post/6076235/ + http://www.newzbin.com/browse/post/6076235/ + http://www.newzbin.com/browse/post/6076235/#CommentsPH + + +
  • + ID: 6076235 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 202.0MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Comedy | Language - English +
  • +
  • Groups: alt.binaries.multimedia, alt.binaries.teevee
  • +
  • Poster: teevee@4u.tv (teevee)
  • +
  • PostDate: Monday 25 Apr 2011, 03:30AM PDT
  • + ]]> +
    + 6076235 + TV + + DVD + XviD + Comedy + English + + + alt.binaries.multimedia + alt.binaries.teevee + + Report is complete + http://www.tvrage.com/shows/id-4915/episodes/140214/2x08/ + + 389903254 + runner-punkyb-s02e08.nfo + http://www.newzbin.com/nfo/view/txt/389903254/ + + http://www.newzbin.com/browse/post/6076235/nzb/ + teevee@4u.tv (teevee) + 211816220 + Mon, 25 Apr 2011 10:30:04 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:20:06 GMT +
    + + Punky Brewster - 2x09 - The Search + http://www.newzbin.com/browse/post/6076233/ + http://www.newzbin.com/browse/post/6076233/ + http://www.newzbin.com/browse/post/6076233/#CommentsPH + + +
  • + ID: 6076233 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 201.1MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Comedy | Language - English +
  • +
  • Groups: alt.binaries.multimedia, alt.binaries.teevee
  • +
  • Poster: teevee@4u.tv (teevee)
  • +
  • PostDate: Monday 25 Apr 2011, 03:30AM PDT
  • + ]]> +
    + 6076233 + TV + + DVD + XviD + Comedy + English + + + alt.binaries.multimedia + alt.binaries.teevee + + Report is complete + http://www.tvrage.com/shows/id-4915/episodes/140215/2x09/ + + 389903323 + runner-punkyb-s02e09.nfo + http://www.newzbin.com/nfo/view/txt/389903323/ + + http://www.newzbin.com/browse/post/6076233/nzb/ + teevee@4u.tv (teevee) + 210916780 + Mon, 25 Apr 2011 10:30:08 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:19:52 GMT +
    + + Punky Brewster - 2x10 - Love Thy Neighbor + http://www.newzbin.com/browse/post/6076232/ + http://www.newzbin.com/browse/post/6076232/ + http://www.newzbin.com/browse/post/6076232/#CommentsPH + + +
  • + ID: 6076232 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 200.9MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Comedy | Language - English +
  • +
  • Groups: alt.binaries.multimedia, alt.binaries.teevee
  • +
  • Poster: teevee@4u.tv (teevee)
  • +
  • PostDate: Monday 25 Apr 2011, 03:30AM PDT
  • + ]]> +
    + 6076232 + TV + + DVD + XviD + Comedy + English + + + alt.binaries.multimedia + alt.binaries.teevee + + Report is complete + http://www.tvrage.com/shows/id-4915/episodes/140216/2x10/ + + 389903379 + runner-punkyb-s02e10.nfo + http://www.newzbin.com/nfo/view/txt/389903379/ + + http://www.newzbin.com/browse/post/6076232/nzb/ + teevee@4u.tv (teevee) + 210622902 + Mon, 25 Apr 2011 10:30:16 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:19:39 GMT +
    + + Punky Brewster - 2x11 - The Gift + http://www.newzbin.com/browse/post/6076231/ + http://www.newzbin.com/browse/post/6076231/ + http://www.newzbin.com/browse/post/6076231/#CommentsPH + + +
  • + ID: 6076231 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 200.6MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Comedy | Language - English +
  • +
  • Groups: alt.binaries.multimedia, alt.binaries.teevee
  • +
  • Poster: teevee@4u.tv (teevee)
  • +
  • PostDate: Monday 25 Apr 2011, 03:30AM PDT
  • + ]]> +
    + 6076231 + TV + + DVD + XviD + Comedy + English + + + alt.binaries.multimedia + alt.binaries.teevee + + Report is complete + http://www.tvrage.com/shows/id-4915/episodes/140217/ + + 389903434 + runner-punkyb-s02e11.nfo + http://www.newzbin.com/nfo/view/txt/389903434/ + + http://www.newzbin.com/browse/post/6076231/nzb/ + teevee@4u.tv (teevee) + 210332289 + Mon, 25 Apr 2011 10:30:23 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:19:23 GMT +
    + + Punky Brewster - 2x12 - Milk Does a Body Good + http://www.newzbin.com/browse/post/6076230/ + http://www.newzbin.com/browse/post/6076230/ + http://www.newzbin.com/browse/post/6076230/#CommentsPH + + +
  • + ID: 6076230 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 201.9MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Comedy | Language - English +
  • +
  • Groups: alt.binaries.multimedia, alt.binaries.teevee
  • +
  • Poster: teevee@4u.tv (teevee)
  • +
  • PostDate: Monday 25 Apr 2011, 03:30AM PDT
  • + ]]> +
    + 6076230 + TV + + DVD + XviD + Comedy + English + + + alt.binaries.multimedia + alt.binaries.teevee + + Report is complete + http://www.tvrage.com/shows/id-4915/episodes/140218/ + + 389905710 + runner-punkyb-s02e12.nfo + http://www.newzbin.com/nfo/view/txt/389905710/ + + http://www.newzbin.com/browse/post/6076230/nzb/ + teevee@4u.tv (teevee) + 211722671 + Mon, 25 Apr 2011 10:30:29 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:19:11 GMT +
    + + Punky Brewster - 2x13 - Christmas Shoplifting + http://www.newzbin.com/browse/post/6076229/ + http://www.newzbin.com/browse/post/6076229/ + http://www.newzbin.com/browse/post/6076229/#CommentsPH + + +
  • + ID: 6076229 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 201.8MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Comedy | Language - English +
  • +
  • Groups: alt.binaries.multimedia, alt.binaries.teevee
  • +
  • Poster: teevee@4u.tv (teevee)
  • +
  • PostDate: Monday 25 Apr 2011, 03:30AM PDT
  • + ]]> +
    + 6076229 + TV + + DVD + XviD + Comedy + English + + + alt.binaries.multimedia + alt.binaries.teevee + + Report is complete + http://www.tvrage.com/shows/id-4915/episodes/140219/2x13/ + + 389905719 + runner-punkyb-s02e13.nfo + http://www.newzbin.com/nfo/view/txt/389905719/ + + http://www.newzbin.com/browse/post/6076229/nzb/ + teevee@4u.tv (teevee) + 211557104 + Mon, 25 Apr 2011 10:30:35 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:18:56 GMT +
    + + Punky Brewster - 2x14 - Urban Fear + http://www.newzbin.com/browse/post/6076227/ + http://www.newzbin.com/browse/post/6076227/ + http://www.newzbin.com/browse/post/6076227/#CommentsPH + + +
  • + ID: 6076227 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 202.4MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Comedy | Language - English +
  • +
  • Groups: alt.binaries.multimedia, alt.binaries.teevee
  • +
  • Poster: teevee@4u.tv (teevee)
  • +
  • PostDate: Monday 25 Apr 2011, 03:30AM PDT
  • + ]]> +
    + 6076227 + TV + + DVD + XviD + Comedy + English + + + alt.binaries.multimedia + alt.binaries.teevee + + Report is complete + http://www.tvrage.com/shows/id-4915/episodes/140220/2x14/ + + 389905727 + runner-punkyb-s02e14.nfo + http://www.newzbin.com/nfo/view/txt/389905727/ + + http://www.newzbin.com/browse/post/6076227/nzb/ + teevee@4u.tv (teevee) + 212252915 + Mon, 25 Apr 2011 10:30:40 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:18:43 GMT +
    + + Punky Brewster - 2x15 - Girls Will Be Boys + http://www.newzbin.com/browse/post/6076226/ + http://www.newzbin.com/browse/post/6076226/ + http://www.newzbin.com/browse/post/6076226/#CommentsPH + + +
  • + ID: 6076226 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 201.8MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Comedy | Language - English +
  • +
  • Groups: alt.binaries.multimedia, alt.binaries.teevee
  • +
  • Poster: teevee@4u.tv (teevee)
  • +
  • PostDate: Monday 25 Apr 2011, 03:30AM PDT
  • + ]]> +
    + 6076226 + TV + + DVD + XviD + Comedy + English + + + alt.binaries.multimedia + alt.binaries.teevee + + Report is complete + http://www.tvrage.com/shows/id-4915/episodes/140221/2x15/ + + 389905775 + runner-punkyb-s02e15.nfo + http://www.newzbin.com/nfo/view/txt/389905775/ + + http://www.newzbin.com/browse/post/6076226/nzb/ + teevee@4u.tv (teevee) + 211566110 + Mon, 25 Apr 2011 10:30:46 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:18:29 GMT +
    + + River Monsters - 3x03 - Silent Assassin + http://www.newzbin.com/browse/post/6076225/ + http://www.newzbin.com/browse/post/6076225/ + http://www.newzbin.com/browse/post/6076225/#CommentsPH + + +
  • + ID: 6076225 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 399.1MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - TV Cap, HDTV | Video Format - XviD | Video Genre - Documentary | Language - English +
  • +
  • Groups: alt.binaries.multimedia, alt.binaries.teevee
  • +
  • Poster: teevee@4u.net (teevee)
  • +
  • PostDate: Monday 25 Apr 2011, 04:01AM PDT
  • + ]]> +
    + 6076225 + TV + + TV Cap + HDTV + XviD + Documentary + English + + + alt.binaries.multimedia + alt.binaries.teevee + + Report is complete + http://www.tvrage.com/shows/id-21955/episodes/1065021529/ + + 0 + + + + http://www.newzbin.com/browse/post/6076225/nzb/ + teevee@4u.net (teevee) + 418519200 + Mon, 25 Apr 2011 11:01:54 GMT + + 8 + 0 + + + Mon, 25 Apr 2011 11:18:14 GMT +
    + + Punky Brewster - 2x16 - Cherie Lifesaver + http://www.newzbin.com/browse/post/6076224/ + http://www.newzbin.com/browse/post/6076224/ + http://www.newzbin.com/browse/post/6076224/#CommentsPH + + +
  • + ID: 6076224 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 201.8MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Comedy | Language - English +
  • +
  • Groups: alt.binaries.multimedia, alt.binaries.teevee
  • +
  • Poster: teevee@4u.tv (teevee)
  • +
  • PostDate: Monday 25 Apr 2011, 03:30AM PDT
  • + ]]> +
    + 6076224 + TV + + DVD + XviD + Comedy + English + + + alt.binaries.multimedia + alt.binaries.teevee + + Report is complete + http://www.tvrage.com/shows/id-4915/episodes/140222/2x16/ + + 389905748 + runner-punkyb-s02e16.nfo + http://www.newzbin.com/nfo/view/txt/389905748/ + + http://www.newzbin.com/browse/post/6076224/nzb/ + teevee@4u.tv (teevee) + 211613994 + Mon, 25 Apr 2011 10:30:53 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:17:59 GMT +
    + + Punky Brewster - 2x17 - Changes (Part 1) + http://www.newzbin.com/browse/post/6076223/ + http://www.newzbin.com/browse/post/6076223/ + http://www.newzbin.com/browse/post/6076223/#CommentsPH + + +
  • + ID: 6076223 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 202.4MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Comedy | Language - English +
  • +
  • Groups: alt.binaries.multimedia, alt.binaries.teevee
  • +
  • Poster: teevee@4u.tv (teevee)
  • +
  • PostDate: Monday 25 Apr 2011, 03:30AM PDT
  • + ]]> +
    + 6076223 + TV + + DVD + XviD + Comedy + English + + + alt.binaries.multimedia + alt.binaries.teevee + + Report is complete + http://www.tvrage.com/shows/id-4915/episodes/140223/2x17/ + + 389905832 + runner-punkyb-s02e17.nfo + http://www.newzbin.com/nfo/view/txt/389905832/ + + http://www.newzbin.com/browse/post/6076223/nzb/ + teevee@4u.tv (teevee) + 212283927 + Mon, 25 Apr 2011 10:30:57 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:17:45 GMT +
    + + Punky Brewster - 2x18 - Changes (Part 2) + http://www.newzbin.com/browse/post/6076222/ + http://www.newzbin.com/browse/post/6076222/ + http://www.newzbin.com/browse/post/6076222/#CommentsPH + + +
  • + ID: 6076222 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 202.2MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Comedy | Language - English +
  • +
  • Groups: alt.binaries.multimedia, alt.binaries.teevee
  • +
  • Poster: teevee@4u.tv (teevee)
  • +
  • PostDate: Monday 25 Apr 2011, 03:31AM PDT
  • + ]]> +
    + 6076222 + TV + + DVD + XviD + Comedy + English + + + alt.binaries.multimedia + alt.binaries.teevee + + Report is complete + http://www.tvrage.com/shows/id-4915/episodes/140224/2x18/ + + 389905844 + runner-punkyb-s02e18.nfo + http://www.newzbin.com/nfo/view/txt/389905844/ + + http://www.newzbin.com/browse/post/6076222/nzb/ + teevee@4u.tv (teevee) + 212070026 + Mon, 25 Apr 2011 10:31:04 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:17:11 GMT +
    + + Punky Brewster - 2x19 - Changes (Part 3) + http://www.newzbin.com/browse/post/6076221/ + http://www.newzbin.com/browse/post/6076221/ + http://www.newzbin.com/browse/post/6076221/#CommentsPH + + +
  • + ID: 6076221 + (Bookmark) + (NZB) + (NFO) + (More Info) + (Size: 202.0MB) +
  • +
  • + Attributes: + Category - TV + | Video Source - DVD | Video Format - XviD | Video Genre - Comedy | Language - English +
  • +
  • Groups: alt.binaries.multimedia, alt.binaries.teevee
  • +
  • Poster: teevee@4u.tv (teevee)
  • +
  • PostDate: Monday 25 Apr 2011, 03:31AM PDT
  • + ]]> +
    + 6076221 + TV + + DVD + XviD + Comedy + English + + + alt.binaries.multimedia + alt.binaries.teevee + + Report is complete + http://www.tvrage.com/shows/id-4915/episodes/140225/2x19/ + + 389905874 + runner-punkyb-s02e19.nfo + http://www.newzbin.com/nfo/view/txt/389905874/ + + http://www.newzbin.com/browse/post/6076221/nzb/ + teevee@4u.tv (teevee) + 211851592 + Mon, 25 Apr 2011 10:31:11 GMT + + 2 + 0 + + + Mon, 25 Apr 2011 11:17:00 GMT +
    +
    +
    \ No newline at end of file diff --git a/NzbDrone.Core.Test/Files/RSS/nzbmatrix.xml b/NzbDrone.Core.Test/Files/RSS/nzbmatrix.xml new file mode 100644 index 000000000..4c422f780 --- /dev/null +++ b/NzbDrone.Core.Test/Files/RSS/nzbmatrix.xml @@ -0,0 +1,512 @@ + + + + NZBMatrix.com RSS 2.0 + en + NZBMatrix + NZBMatrix.com RSS Feed - Usenet + http://nzbmatrix.com + Copyright 2011 NZBMatrix + Mon, 25 Apr 2011 18:09:40 +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 + 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 + +
    + + 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 + +
    + + 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 + +
    + + 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 + +
    + + 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 + +
    + + 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 + 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 + 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 + 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 + 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 + 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 + +
    + + 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 + 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 + 6 + +
    + + Fussball Bundesliga 2010 2011 30 Spieltag FC Bayern Muenchen vs Bayer 04 Leverkusen German WS dTV XviD WoGS + http://nzbmatrix.com/nzb-details.php?id=914423&hit=1 + http://nzbmatrix.com/nzb-details.php?id=914423&hit=1 + Name: Fussball Bundesliga 2010 2011 30 Spieltag FC Bayern Muenchen vs Bayer 04 Leverkusen German WS dTV XviD WoGS
    Category: TV: Divx/Xvid
    Size: 1.28 GB
    Added: 2011-04-25 11:41:35
    Group: alt.binaries.multimedia
    NFO: View NFO ]]>
    + TV: Divx/Xvid + tv.divx/xvid + 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 + 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 + +
    + + 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 + 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 + 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 + +
    + + 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 + 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 + 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 + 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 + 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 + +
    + + 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 + 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 + 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 + 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 + 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 + 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 + 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 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 + 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 + 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 + +
    + + 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 + 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 + 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 + 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 + +
    + + 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 + +
    + + 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 + 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 + 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 + +
    + + 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 + +
    + + 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 + 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 + 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 + 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 + 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 + 6 + +
    +
    +
    \ No newline at end of file diff --git a/NzbDrone.Core.Test/Files/RSS/nzbsrus.xml b/NzbDrone.Core.Test/Files/RSS/nzbsrus.xml new file mode 100644 index 000000000..196bae26c --- /dev/null +++ b/NzbDrone.Core.Test/Files/RSS/nzbsrus.xml @@ -0,0 +1,275 @@ + + + + NZBsRus.com + This is the NZBs'R'US RSS feed. + http://www.nzbsrus.com + en-US + 5 + + + Portal_2_Update_1_Plus_3_Trainer-RazorDOX + Mon, 25 Apr 2011 16:35:39 pm + Games - PC DOX + http://www.nzbsrus.com/nzbdetails.php?id=422411&hit=1 + + Size 1.25 MiB (10 files) + Files: 2 + Par2s: 8 + + + + + + Portal_2_Plus_3_Trainer-RazorDOX + Mon, 25 Apr 2011 16:35:00 pm + Games - PC DOX + http://www.nzbsrus.com/nzbdetails.php?id=422410&hit=1 + + Size 1.17 MiB (11 files) + Files: 3 + Par2s: 8 + + + + + + The.New.Inventors.Save.Water.Special.DVDRip.XviD-SPRiNTER + Mon, 25 Apr 2011 16:19:20 pm + TV - XviD + http://www.nzbsrus.com/nzbdetails.php?id=422409&hit=1 + + TV.com Rating: 7.5 + Size 1.58 GiB (127 files) + Files: 106 + Par2s: 21 + + + + + + Season.25.Oprah.Behind.The.Scenes.E16.WS.DSR.XviD-sHoTV + Mon, 25 Apr 2011 15:42:17 pm + TV - XviD + http://www.nzbsrus.com/nzbdetails.php?id=422408&hit=1 + + Size 398.98 MiB (32 files) + Files: 25 + Par2s: 7 + + + + + + [REQ] Hot Rod (2007) + Mon, 25 Apr 2011 15:30:20 pm + Movies - HD [720] + http://www.nzbsrus.com/nzbdetails.php?id=422407&hit=1 + + IMDb Rating: 6.5 + Size 5.00 GiB (105 files) + Files: 97 + Par2s: 8 + + + + + + Sniper Reloaded (2011) NTSC DVD5 + Mon, 25 Apr 2011 15:25:12 pm + Movies - DVDr + http://www.nzbsrus.com/nzbdetails.php?id=422406&hit=1 + + IMDb Rating: NYR + Size 5.54 GiB (119 files) + Files: 104 + Par2s: 15 + + + + + + Fable.2.Platinum.Edition.XBOX360-CLANDESTiNE + Mon, 25 Apr 2011 15:11:41 pm + Console - XBOX 360 + http://www.nzbsrus.com/nzbdetails.php?id=422404&hit=1 + + Size 7.25 GiB (89 files) + Files: 70 + Par2s: 19 + + + + + + BORDERLANDS.GOTY.EDiTiON.PAL.XBOX360-SHiTONLYGERMAN + Mon, 25 Apr 2011 15:07:38 pm + Console - XBOX 360 + http://www.nzbsrus.com/nzbdetails.php?id=422402&hit=1 + + Size 7.29 GiB (84 files) + Files: 71 + Par2s: 13 + + + + + + Sanctum.Update.1.and.2-SKIDROW + Mon, 25 Apr 2011 15:03:00 pm + Games - PC DOX + http://www.nzbsrus.com/nzbdetails.php?id=422401&hit=1 + + Size 599.88 MiB (49 files) + Files: 41 + Par2s: 8 + + + + + + Babysitting.Mama.USA.WII-ProCiSiON + Mon, 25 Apr 2011 14:55:01 pm + Console - Wii + http://www.nzbsrus.com/nzbdetails.php?id=422399&hit=1 + + Size 4.78 GiB (105 files) + Files: 95 + Par2s: 10 + + + + + + The_Aston_Shuffle-Seventeen_Past_Midnight-2011-OZM + Mon, 25 Apr 2011 13:54:39 pm + Music - MP3 + http://www.nzbsrus.com/nzbdetails.php?id=422398&hit=1 + + Size 104.28 MiB (23 files) + Files: 15 + Par2s: 8 + + + + + + [REQ] The.Wild.Life.1984.TVRip.XviD + Mon, 25 Apr 2011 13:42:23 pm + Movies - XviD + http://www.nzbsrus.com/nzbdetails.php?id=422397&hit=1 + + IMDb Rating: 5.5 + Size 792.58 MiB (25 files) + Files: 16 + Par2s: 9 + + + + + + MIKE TYSON HISTORY THE CAREER OF A LEGEND + Mon, 25 Apr 2011 13:41:23 pm + TV - DVDr + http://www.nzbsrus.com/nzbdetails.php?id=422396&hit=1 + + Size 63.60 GiB (540 files) + Files: 399 + Par2s: 141 + + + + + + Car.Warriors.S01E08.HDTV.XviD-CRiMSON + Mon, 25 Apr 2011 13:17:11 pm + TV - XviD + http://www.nzbsrus.com/nzbdetails.php?id=422395&hit=1 + + Size 398.51 MiB (34 files) + Files: 27 + Par2s: 7 + + + + + + The.Sunday.Footy.Show.2011.04.24.WS.PDTV.XviD-WLT + Mon, 25 Apr 2011 13:14:30 pm + TV - XviD + http://www.nzbsrus.com/nzbdetails.php?id=422394&hit=1 + + Size 387.34 MiB (36 files) + Files: 27 + Par2s: 9 + + + + + + The.Sunday.Roast.2011.04.24.WS.PDTV.XviD-WLT + Mon, 25 Apr 2011 13:14:02 pm + TV - XviD + http://www.nzbsrus.com/nzbdetails.php?id=422393&hit=1 + + Size 387.49 MiB (36 files) + Files: 27 + Par2s: 9 + + + + + + River.Monsters.S03E03.HDTV.XviD-CRiMSON + Mon, 25 Apr 2011 13:13:22 pm + TV - XviD + http://www.nzbsrus.com/nzbdetails.php?id=422392&hit=1 + + Size 398.31 MiB (35 files) + Files: 28 + Par2s: 7 + + + + + + The.7pm.Project.2011.04.25.Kath.Robinson.WS.PDTV.XviD-FQM + Mon, 25 Apr 2011 13:12:44 pm + TV - XviD + http://www.nzbsrus.com/nzbdetails.php?id=422391&hit=1 + + Size 198.78 MiB (22 files) + Files: 16 + Par2s: 6 + + + + + + Punky.Brewster.S02.iNTERNAL.DVDRip.XviD-RUNNER + Mon, 25 Apr 2011 13:12:23 pm + TV - XviD + http://www.nzbsrus.com/nzbdetails.php?id=422390&hit=1 + + Size 4.38 GiB (497 files) + Files: 359 + Par2s: 138 + + + + + + Saddle.Ranch.S01E02.Always.Down.to.Party.HDTV.XviD-MOMENTUM + Mon, 25 Apr 2011 13:11:31 pm + TV - XviD + http://www.nzbsrus.com/nzbdetails.php?id=422389&hit=1 + + Size 199.83 MiB (22 files) + Files: 16 + Par2s: 6 + + + + + + diff --git a/NzbDrone.Core.Test/IndexerProviderTest.cs b/NzbDrone.Core.Test/IndexerProviderTest.cs index a2f6723ae..ed38159ab 100644 --- a/NzbDrone.Core.Test/IndexerProviderTest.cs +++ b/NzbDrone.Core.Test/IndexerProviderTest.cs @@ -20,22 +20,45 @@ namespace NzbDrone.Core.Test // ReSharper disable InconsistentNaming { [Test] - public void Download_feed_test() + [Row("nzbsorg.xml")] + [Row("nzbsrus.xml")] + [Row("newzbin.xml")] + [Row("nzbmatrix.xml")] + public void parse_feed_xml(string fileName) { var mocker = new AutoMoqer(); - var xmlReader = XmlReader.Create(File.OpenRead(".\\Files\\Rss\\nzbsorg.xml")); - mocker.GetMock() - .Setup(h => h.DownloadXml(It.IsAny())) - .Returns(xmlReader); + .Setup(h => h.DownloadStream(It.IsAny())) + .Returns(File.OpenRead(".\\Files\\Rss\\" + fileName)); var fakeSettings = Builder.CreateNew().Build(); mocker.GetMock() .Setup(c => c.GetSettings(It.IsAny())) .Returns(fakeSettings); - mocker.Resolve().Fetch(); + var exceptions = mocker.Resolve().Fetch(); + + foreach (var exception in exceptions) + { + Console.WriteLine(exception.ToString()); + } + + Assert.IsEmpty(exceptions); + } + + [Test] + public void downloadFeed() + { + var mocker = new AutoMoqer(); + mocker.SetConstant(new HttpProvider()); + + var fakeSettings = Builder.CreateNew().Build(); + mocker.GetMock() + .Setup(c => c.GetSettings(It.IsAny())) + .Returns(fakeSettings); + + mocker.Resolve().Fetch(); } [Test] @@ -90,4 +113,28 @@ namespace NzbDrone.Core.Test return item.Links[0].Uri.ToString(); } } + + public class TestUrlIndexer : IndexerProviderBase + { + public TestUrlIndexer(SeriesProvider seriesProvider, SeasonProvider seasonProvider, EpisodeProvider episodeProvider, ConfigProvider configProvider, HttpProvider httpProvider, IndexerProvider indexerProvider, HistoryProvider historyProvider, SabProvider sabProvider) + : base(seriesProvider, seasonProvider, episodeProvider, configProvider, httpProvider, indexerProvider, historyProvider, sabProvider) + { + } + + public override string Name + { + get { return "All Urls"; } + } + + protected override string[] Urls + { + get { return new[] { "http://rss.nzbmatrix.com/rss.php?cat=TV" }; } + } + + protected override string NzbDownloadUrl(SyndicationItem item) + { + return "http://google.com"; + } + } + } \ No newline at end of file diff --git a/NzbDrone.Core.Test/MockLib.cs b/NzbDrone.Core.Test/MockLib.cs index d2ddd35d6..26925d384 100644 --- a/NzbDrone.Core.Test/MockLib.cs +++ b/NzbDrone.Core.Test/MockLib.cs @@ -7,6 +7,7 @@ using Moq; using NzbDrone.Core.Instrumentation; using NzbDrone.Core.Providers.Core; using NzbDrone.Core.Repository; +using NzbDrone.Core.Repository.Quality; using SubSonic.DataProviders; using SubSonic.Repository; @@ -46,7 +47,9 @@ namespace NzbDrone.Core.Test { provider.Log = new NlogWriter(); } - return new SimpleRepository(provider, SimpleRepositoryOptions.RunMigrations); + var repo = new SimpleRepository(provider, SimpleRepositoryOptions.RunMigrations); + ForceMigration(repo); + return repo; } public static DiskProvider GetStandardDisk(int seasons, int episodes) @@ -91,5 +94,15 @@ namespace NzbDrone.Core.Test .WhereAll().Have(c => c.EpisodeNumber = epNumber.Generate()) .Build(); } + + private static void ForceMigration(IRepository repository) + { + repository.All().Count(); + repository.All().Count(); + repository.All().Count(); + repository.All().Count(); + repository.All().Count(); + repository.All().Count(); + } } } \ No newline at end of file diff --git a/NzbDrone.Core.Test/NzbDrone.Core.Test.csproj b/NzbDrone.Core.Test/NzbDrone.Core.Test.csproj index 30251ccbb..eba28a08a 100644 --- a/NzbDrone.Core.Test/NzbDrone.Core.Test.csproj +++ b/NzbDrone.Core.Test/NzbDrone.Core.Test.csproj @@ -125,6 +125,15 @@ Always + + Always + + + Always + + + Always + Always diff --git a/NzbDrone.Core.Test/RepoTest.cs b/NzbDrone.Core.Test/RepoTest.cs index b1a071288..59388f241 100644 --- a/NzbDrone.Core.Test/RepoTest.cs +++ b/NzbDrone.Core.Test/RepoTest.cs @@ -121,7 +121,7 @@ namespace NzbDrone.Core.Test var logItem = sonicRepo.All().First(); Assert.AreNotEqual(new DateTime(), logItem.Time); - Assert.AreEqual(message, logItem.Message); + Assert.AreEqual(message + ": " + ex.Message, logItem.Message); Assert.AreEqual(Logger.Name, logItem.Logger); Assert.AreEqual(LogLevel.Error.Name, logItem.Level); Assert.AreEqual(ex.GetType().ToString(), logItem.ExceptionType); diff --git a/NzbDrone.Core.Test/SeriesProviderTest.cs b/NzbDrone.Core.Test/SeriesProviderTest.cs index f13edde5d..7a88771e6 100644 Binary files a/NzbDrone.Core.Test/SeriesProviderTest.cs and b/NzbDrone.Core.Test/SeriesProviderTest.cs differ diff --git a/NzbDrone.Core.Test/log.config b/NzbDrone.Core.Test/log.config index 5b8212b5d..1eddaa214 100644 --- a/NzbDrone.Core.Test/log.config +++ b/NzbDrone.Core.Test/log.config @@ -1,6 +1,6 @@  - + diff --git a/NzbDrone.Core/Instrumentation/SubsonicTarget.cs b/NzbDrone.Core/Instrumentation/SubsonicTarget.cs index 708ea7dcf..ba53d985b 100644 --- a/NzbDrone.Core/Instrumentation/SubsonicTarget.cs +++ b/NzbDrone.Core/Instrumentation/SubsonicTarget.cs @@ -25,14 +25,19 @@ namespace NzbDrone.Core.Instrumentation log.Method = logEvent.UserStackFrame.GetMethod().Name; } - - log.Logger = logEvent.LoggerName; if (logEvent.Exception != null) { + if (String.IsNullOrWhiteSpace(log.Message)) + { + log.Message = logEvent.Exception.Message; + } + else + { + log.Message += ": " + logEvent.Exception.Message; + } - log.Message += ": " + logEvent.Exception.Message; log.Exception = logEvent.Exception.ToString(); log.ExceptionType = logEvent.Exception.GetType().ToString(); diff --git a/NzbDrone.Core/Providers/Core/HttpProvider.cs b/NzbDrone.Core/Providers/Core/HttpProvider.cs index 75b2ebceb..91ff84661 100644 --- a/NzbDrone.Core/Providers/Core/HttpProvider.cs +++ b/NzbDrone.Core/Providers/Core/HttpProvider.cs @@ -1,80 +1,54 @@ using System; +using System.IO; using System.Net; -using System.Xml; using NLog; + namespace NzbDrone.Core.Providers.Core { public class HttpProvider { private static readonly Logger Logger = LogManager.GetCurrentClassLogger(); - public virtual string DownloadString(string request) + public virtual string DownloadString(string address) { try { - return new WebClient().DownloadString(request); + return new WebClient().DownloadString(address); } catch (Exception ex) { - Logger.Warn("Failed to get response from: {0}", request); - Logger.TraceException(ex.Message, ex); - } - - return String.Empty; - } - - public virtual string DownloadString(string request, string username, string password) - { - try - { - var webClient = new WebClient(); - webClient.Credentials = new NetworkCredential(username, password); - return webClient.DownloadString(request); - } - catch (Exception ex) - { - Logger.Warn("Failed to get response from: {0}", request); - Logger.TraceException(ex.Message, ex); - } - - return String.Empty; - } - - public virtual void DownloadFile(string request, string filename) - { - try - { - var webClient = new WebClient(); - webClient.DownloadFile(request, filename); - } - catch (Exception ex) - { - Logger.Warn("Failed to get response from: {0}", request); + Logger.Warn("Failed to get response from: {0}", address); Logger.TraceException(ex.Message, ex); throw; } } - public virtual void DownloadFile(string request, string filename, string username, string password) + public virtual string DownloadString(string address, string username, string password) { try { var webClient = new WebClient(); webClient.Credentials = new NetworkCredential(username, password); - webClient.DownloadFile(request, filename); + return webClient.DownloadString(address); } catch (Exception ex) { - Logger.Warn("Failed to get response from: {0}", request); + Logger.Warn("Failed to get response from: {0}", address); Logger.TraceException(ex.Message, ex); throw; } } - public virtual XmlReader DownloadXml(string url) + public virtual Stream DownloadStream(string url) { - return XmlReader.Create(url); + var request = WebRequest.Create(url); + + var response = request.GetResponse(); + + return response.GetResponseStream(); } + + } } \ No newline at end of file diff --git a/NzbDrone.Core/Providers/EpisodeProvider.cs b/NzbDrone.Core/Providers/EpisodeProvider.cs index b88da8539..2dc7982f5 100644 --- a/NzbDrone.Core/Providers/EpisodeProvider.cs +++ b/NzbDrone.Core/Providers/EpisodeProvider.cs @@ -12,7 +12,7 @@ namespace NzbDrone.Core.Providers public class EpisodeProvider { private static readonly Logger Logger = LogManager.GetCurrentClassLogger(); - private readonly QualityProvider _quality; + private readonly QualityProvider _qualityProvider; private readonly SeasonProvider _seasons; private readonly SeriesProvider _series; private readonly IRepository _sonicRepo; @@ -20,13 +20,13 @@ namespace NzbDrone.Core.Providers public EpisodeProvider(IRepository sonicRepo, SeriesProvider seriesProvider, SeasonProvider seasonProvider, TvDbProvider tvDbProvider, - QualityProvider quality) + QualityProvider qualityProvider) { _sonicRepo = sonicRepo; _series = seriesProvider; _tvDb = tvDbProvider; _seasons = seasonProvider; - _quality = quality; + _qualityProvider = qualityProvider; } public EpisodeProvider() @@ -80,7 +80,7 @@ namespace NzbDrone.Core.Providers if (episodeInfo == null) { - + Logger.Debug("Episode S{0:00}E{1:00} doesn't exist in db. adding it now.", parsedReport.SeasonNumber, episode); //Todo: How do we want to handle this really? Episode could be released before information is on TheTvDB //(Parks and Rec did this a lot in the first season, from experience) //Keivan: Should automatically add the episode to db with minimal information. then update the description/title when available. @@ -103,24 +103,39 @@ namespace NzbDrone.Core.Providers if (file != null) { - //If not null we need to see if this episode has the quality as the download (or if it is better) - if (file.Quality == parsedReport.Quality && file.Proper) continue; + Logger.Debug("File is {0} Proper:{1}", file.Quality, file.Proper); //There will never be a time when the episode quality is less than what we have and we want it... ever.... I think. - if (file.Quality > parsedReport.Quality) continue; + if (file.Quality > parsedReport.Quality) + { + Logger.Trace("file has better quality. skipping"); + continue; + } - //Now we need to handle upgrades and actually pay attention to the Cutoff Value + //If not null we need to see if this episode has the quality as the download (or if it is better) + if (file.Quality == parsedReport.Quality && file.Proper == parsedReport.Proper) + { + Logger.Trace("Same quality/proper. existing proper. skipping"); + continue; + } + + //Now we need to handle upgrades and actually pay attention to the Cut-off Value if (file.Quality < parsedReport.Quality) { - var quality = _quality.Find(episodeInfo.Series.QualityProfileId); + if (episodeInfo.Series.QualityProfile.Cutoff <= file.Quality) + { + Logger.Trace("Quality is past cut-off skipping."); + continue; + } - if (quality.Cutoff <= file.Quality && file.Proper) continue; } } + Logger.Debug("Episode {0} is needed", parsedReport); return true; //If we get to this point and the file has not yet been rejected then accept it } + Logger.Debug("Episode {0} is not needed", parsedReport); return false; } diff --git a/NzbDrone.Core/Providers/Indexer/IndexerProviderBase.cs b/NzbDrone.Core/Providers/Indexer/IndexerProviderBase.cs index 815776687..82c9aedf7 100644 --- a/NzbDrone.Core/Providers/Indexer/IndexerProviderBase.cs +++ b/NzbDrone.Core/Providers/Indexer/IndexerProviderBase.cs @@ -59,16 +59,19 @@ namespace NzbDrone.Core.Providers.Indexer /// /// Fetches RSS feed and process each news item. /// - public void Fetch() + public List Fetch() { _logger.Debug("Fetching feeds from " + Settings.Name); + var exeptions = new List(); foreach (var url in Urls) { try { _logger.Trace("Downloading RSS " + url); - var feed = SyndicationFeed.Load(_httpProvider.DownloadXml(url)).Items; + + var reader = new SyndicationFeedXmlReader(_httpProvider.DownloadStream(url)); + var feed = SyndicationFeed.Load(reader).Items; foreach (var item in feed) { @@ -78,6 +81,7 @@ namespace NzbDrone.Core.Providers.Indexer } catch (Exception itemEx) { + exeptions.Add(itemEx); _logger.ErrorException("An error occurred while processing feed item", itemEx); } @@ -85,11 +89,13 @@ namespace NzbDrone.Core.Providers.Indexer } catch (Exception feedEx) { + exeptions.Add(feedEx); _logger.ErrorException("An error occurred while processing feed", feedEx); } } _logger.Info("Finished processing feeds from " + Settings.Name); + return exeptions; } internal void ProcessItem(SyndicationItem feedItem) @@ -131,17 +137,17 @@ namespace NzbDrone.Core.Providers.Indexer return; } - var sabTitle = _sabProvider.GetSabTitle(parseResult); + //var sabTitle = _sabProvider.GetSabTitle(parseResult); - if (_sabProvider.IsInQueue(sabTitle)) - { - return; - } + //if (_sabProvider.IsInQueue(sabTitle)) + //{ + // return; + //} - if (!_sabProvider.AddByUrl(NzbDownloadUrl(feedItem), sabTitle)) - { - return; - } + //if (!_sabProvider.AddByUrl(NzbDownloadUrl(feedItem), sabTitle)) + //{ + // return; + //} foreach (var episode in episodes) { diff --git a/NzbDrone.Core/Providers/Indexer/SyndicationFeedXmlReader.cs b/NzbDrone.Core/Providers/Indexer/SyndicationFeedXmlReader.cs new file mode 100644 index 000000000..df9d54cc5 --- /dev/null +++ b/NzbDrone.Core/Providers/Indexer/SyndicationFeedXmlReader.cs @@ -0,0 +1,67 @@ +//http://stackoverflow.com/questions/210375/problems-reading-rss-with-c-and-net-3-5 +//https://connect.microsoft.com/VisualStudio/feedback/details/325421/syndicationfeed-load-fails-to-parse-datetime-against-a-real-world-feeds-ie7-can-read + +using System; +using System.Diagnostics; +using System.Globalization; +using System.IO; +using System.Linq; +using System.Reflection; +using System.ServiceModel.Syndication; +using System.Xml; + +namespace NzbDrone.Core.Providers.Indexer +{ + + public class SyndicationFeedXmlReader : XmlTextReader + { + readonly string[] Rss20DateTimeHints = { "pubDate" }; + readonly string[] Atom10DateTimeHints = { "updated", "published", "lastBuildDate" }; + private bool isRss2DateTime = false; + private bool isAtomDateTime = false; + + public SyndicationFeedXmlReader(Stream stream) : base(stream) { } + + public override bool IsStartElement(string localname, string ns) + { + isRss2DateTime = false; + isAtomDateTime = false; + + if (Rss20DateTimeHints.Contains(localname)) isRss2DateTime = true; + if (Atom10DateTimeHints.Contains(localname)) isAtomDateTime = true; + + return base.IsStartElement(localname, ns); + } + + public override string ReadString() + { + string dateVal = base.ReadString(); + + try + { + if (isRss2DateTime) + { + MethodInfo objMethod = typeof(Rss20FeedFormatter).GetMethod("DateFromString", BindingFlags.NonPublic | BindingFlags.Static); + Debug.Assert(objMethod != null); + objMethod.Invoke(null, new object[] { dateVal, this }); + + } + if (isAtomDateTime) + { + MethodInfo objMethod = typeof(Atom10FeedFormatter).GetMethod("DateFromString", BindingFlags.NonPublic | BindingFlags.Instance); + Debug.Assert(objMethod != null); + objMethod.Invoke(new Atom10FeedFormatter(), new object[] { dateVal, this }); + } + } + catch (TargetInvocationException) + { + DateTimeFormatInfo dtfi = CultureInfo.CurrentCulture.DateTimeFormat; + return DateTimeOffset.UtcNow.ToString(dtfi.RFC1123Pattern); + } + + return dateVal; + + } + + } +} diff --git a/NzbDrone.Core/Providers/SabProvider.cs b/NzbDrone.Core/Providers/SabProvider.cs index 6eefaf9d0..ed0aef3a2 100644 --- a/NzbDrone.Core/Providers/SabProvider.cs +++ b/NzbDrone.Core/Providers/SabProvider.cs @@ -16,6 +16,10 @@ namespace NzbDrone.Core.Providers private readonly ConfigProvider _config; private readonly HttpProvider _http; + public SabProvider() + { + } + public SabProvider(ConfigProvider config, HttpProvider http) { _config = config; diff --git a/NzbDrone.Core/Providers/SeasonProvider.cs b/NzbDrone.Core/Providers/SeasonProvider.cs index a2a82bf28..b128ea46e 100644 --- a/NzbDrone.Core/Providers/SeasonProvider.cs +++ b/NzbDrone.Core/Providers/SeasonProvider.cs @@ -76,10 +76,6 @@ namespace NzbDrone.Core.Providers public virtual bool IsIgnored(int seriesId, int seasonNumber) { var season = _sonicRepo.Single(s => s.SeriesId == seriesId && s.SeasonNumber == seasonNumber); - - if (season == null) - return true; - return !season.Monitored; } diff --git a/NzbDrone.Core/Providers/SeriesProvider.cs b/NzbDrone.Core/Providers/SeriesProvider.cs index 5349cc2b6..0c47ec76f 100644 --- a/NzbDrone.Core/Providers/SeriesProvider.cs +++ b/NzbDrone.Core/Providers/SeriesProvider.cs @@ -58,9 +58,8 @@ namespace NzbDrone.Core.Providers public virtual bool QualityWanted(int seriesId, QualityTypes quality) { var series = _sonioRepo.Single(seriesId); - - var profile = _quality.Find(series.QualityProfileId); - return profile.Allowed.Contains(quality); + Logger.Trace("Series {0} is using quality profile {1}", seriesId, series.QualityProfile.Name); + return series.QualityProfile.Allowed.Contains(quality); } public virtual TvdbSeries MapPathToSeries(string path) diff --git a/NzbDrone.Core/Repository/Series.cs b/NzbDrone.Core/Repository/Series.cs index f34f6cdd6..d9dff9e3a 100644 --- a/NzbDrone.Core/Repository/Series.cs +++ b/NzbDrone.Core/Repository/Series.cs @@ -45,7 +45,7 @@ namespace NzbDrone.Core.Repository public DateTime? LastDiskSync { get; set; } [SubSonicToOneRelation(ThisClassContainsJoinKey = true, JoinKeyName = "QualityProfileId")] - public virtual QualityProfile QualityProfile { get; protected set; } + public virtual QualityProfile QualityProfile { get; set; } [SubSonicToManyRelation] public virtual List Seasons { get; protected set; } diff --git a/NzbDrone.Web/Controllers/SettingsController.cs b/NzbDrone.Web/Controllers/SettingsController.cs index d71ed056a..f145d09be 100644 --- a/NzbDrone.Web/Controllers/SettingsController.cs +++ b/NzbDrone.Web/Controllers/SettingsController.cs @@ -293,8 +293,6 @@ namespace NzbDrone.Web.Controllers }; } - - catch (Exception) { return new JsonResult { Data = "failed" }; diff --git a/NzbDrone.Web/Views/Settings/Downloads.cshtml b/NzbDrone.Web/Views/Settings/Downloads.cshtml index 1854cd444..968b6da3e 100644 --- a/NzbDrone.Web/Views/Settings/Downloads.cshtml +++ b/NzbDrone.Web/Views/Settings/Downloads.cshtml @@ -2,6 +2,7 @@