From a34bd818cf5eae37876d9a6519b4ae763bdc43fe Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Mon, 25 Apr 2011 00:42:29 -0700 Subject: [PATCH 1/3] Start of AutoConfigureSab --- .gitignore | 3 +- NzbDrone.Core/Model/SabnzbdInfoModel.cs | 15 + NzbDrone.Core/NzbDrone.Core.csproj | 2 + NzbDrone.Core/Parser.cs | 290 ---- .../Providers/AutoConfigureProvider.cs | 67 + .../Providers/Indexer/IndexerProviderBase.cs | 6 +- NzbDrone.Core/Providers/Jobs/JobProvider.cs | 13 +- .../Controllers/SettingsController.cs | 29 +- NzbDrone.Web/NzbDrone.Web.Publish.xml | 1178 ++++++++--------- NzbDrone.Web/Views/Settings/Downloads.cshtml | 26 +- NzbDrone/IISController.cs | 32 +- NzbDrone/NzbDrone.csproj | 2 +- NzbDrone/Program.cs | 1 + 13 files changed, 763 insertions(+), 901 deletions(-) create mode 100644 NzbDrone.Core/Model/SabnzbdInfoModel.cs delete mode 100644 NzbDrone.Core/Parser.cs create mode 100644 NzbDrone.Core/Providers/AutoConfigureProvider.cs diff --git a/.gitignore b/.gitignore index 10fe732d4..5cbd6a1a1 100644 --- a/.gitignore +++ b/.gitignore @@ -31,4 +31,5 @@ _ReSharper*/ [Ll]ogs/ /[Pp]ackage/ #NZBDrone specific -*.db \ No newline at end of file +*.db +*Web.Publish.xml \ No newline at end of file diff --git a/NzbDrone.Core/Model/SabnzbdInfoModel.cs b/NzbDrone.Core/Model/SabnzbdInfoModel.cs new file mode 100644 index 000000000..ecfd4c4c2 --- /dev/null +++ b/NzbDrone.Core/Model/SabnzbdInfoModel.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace NzbDrone.Core.Model +{ + public class SabnzbdInfoModel + { + public string ApiKey { get; set; } + public int Port { get; set; } + public string Username { get; set; } + public string Password { get; set; } + } +} diff --git a/NzbDrone.Core/NzbDrone.Core.csproj b/NzbDrone.Core/NzbDrone.Core.csproj index 94a53b6bd..dfa2e1fa3 100644 --- a/NzbDrone.Core/NzbDrone.Core.csproj +++ b/NzbDrone.Core/NzbDrone.Core.csproj @@ -166,6 +166,8 @@ + + diff --git a/NzbDrone.Core/Parser.cs b/NzbDrone.Core/Parser.cs deleted file mode 100644 index 9e6bef3b0..000000000 --- a/NzbDrone.Core/Parser.cs +++ /dev/null @@ -1,290 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Text.RegularExpressions; -using NLog; -using NzbDrone.Core.Model; -using NzbDrone.Core.Repository.Quality; - -namespace NzbDrone.Core -{ - public static class Parser - { - private static readonly Logger Logger = LogManager.GetCurrentClassLogger(); - - private static readonly Regex[] ReportTitleRegex = new[] - { - new Regex(@"^(?.+?)?\W?(?<year>\d{4}?)?\W+(?<airyear>\d{4})\W+(?<airmonth>\d{2})\W+(?<airday>\d{2})\W?(?!\\)", - RegexOptions.IgnoreCase | RegexOptions.Compiled), - new Regex(@"^(?<title>.*?)?(?:\W?S?(?<season>\d{1,2}(?!\d+))(?:(?:\-|\.|[ex]|\s|to)+(?<episode>\d{1,2}(?!\d+)))+)+\W?(?!\\)", - RegexOptions.IgnoreCase | RegexOptions.Compiled), - new Regex(@"^(?<title>.+?)?\W?(?<year>\d{4}?)?(?:\W(?<season>\d+)(?<episode>\d{2}))+\W?(?!\\)", - RegexOptions.IgnoreCase | RegexOptions.Compiled), - //Supports 103/113 naming - new Regex(@"^(?<title>.*?)?(?:\W?S?(?<season>\d{1,2}(?!\d+))(?:(?:\-|\.|[ex]|\s|to)+(?<episode>\d+))+)+\W?(?!\\)", - RegexOptions.IgnoreCase | RegexOptions.Compiled) - }; - - private static readonly Regex[] SeasonReportTitleRegex = new[] - { - new Regex( - @"(?<title>.+?)?\W?(?<year>\d{4}?)?\W(?:S|Season)?\W?(?<season>\d+)(?!\\)", - RegexOptions.IgnoreCase | - RegexOptions.Compiled), - }; - - private static readonly Regex NormalizeRegex = new Regex(@"((^|\W)(a|an|the|and|or|of)($|\W))|\W|\b(?!(?:19\d{2}|20\d{2}))\d+\b", - RegexOptions.IgnoreCase | RegexOptions.Compiled); - - /// <summary> - /// Parses a post title into list of episodes it contains - /// </summary> - /// <param name = "title">Title of the report</param> - /// <returns>List of episodes contained to the post</returns> - internal static EpisodeParseResult ParseEpisodeInfo(string title) - { - Logger.Trace("Parsing string '{0}'", title); - - foreach (var regex in ReportTitleRegex) - { - var simpleTitle = Regex.Replace(title, @"480[i|p]|720[i|p]|1080[i|p]|[x|h]264", String.Empty, RegexOptions.IgnoreCase | RegexOptions.Compiled); - - var match = regex.Matches(simpleTitle); - - if (match.Count != 0) - { - var seriesName = NormalizeTitle(match[0].Groups["title"].Value); - - var airyear = 0; - Int32.TryParse(match[0].Groups["airyear"].Value, out airyear); - - EpisodeParseResult parsedEpisode; - - if (airyear < 1 ) - { - var season = 0; - Int32.TryParse(match[0].Groups["season"].Value, out season); - - parsedEpisode = new EpisodeParseResult - { - Proper = title.ToLower().Contains("proper"), - CleanTitle = seriesName, - SeasonNumber = season, - Episodes = new List<int>() - }; - - foreach (Match matchGroup in match) - { - var count = matchGroup.Groups["episode"].Captures.Count; - var first = Convert.ToInt32(matchGroup.Groups["episode"].Captures[0].Value); - var last = Convert.ToInt32(matchGroup.Groups["episode"].Captures[count - 1].Value); - - for (int i = first; i <= last; i++) - { - parsedEpisode.Episodes.Add(i); - } - } - } - - else - { - //Try to Parse as a daily show - if (airyear > 0) - { - var airmonth = Convert.ToInt32(match[0].Groups["airmonth"].Value); - var airday = Convert.ToInt32(match[0].Groups["airday"].Value); - - parsedEpisode = new EpisodeParseResult - { - Proper = title.ToLower().Contains("proper"), - CleanTitle = seriesName, - AirDate = new DateTime(airyear, airmonth, airday) - }; - } - - //Something went wrong with this one... return null - else - return null; - } - - parsedEpisode.Quality = ParseQuality(title); - - Logger.Trace("Episode Parsed. {0}", parsedEpisode); - - return parsedEpisode; - } - } - Logger.Warn("Unable to parse text into episode info. {0}", title); - return null; - } - - /// <summary> - /// Parses a post title into season it contains - /// </summary> - /// <param name = "title">Title of the report</param> - /// <returns>Season information contained in the post</returns> - internal static SeasonParseResult ParseSeasonInfo(string title) - { - Logger.Trace("Parsing string '{0}'", title); - - foreach (var regex in ReportTitleRegex) - { - var match = regex.Matches(title); - - if (match.Count != 0) - { - var seriesName = NormalizeTitle(match[0].Groups["title"].Value); - int year; - Int32.TryParse(match[0].Groups["year"].Value, out year); - - if (year < 1900 || year > DateTime.Now.Year + 1) - { - year = 0; - } - - var seasonNumber = Convert.ToInt32(match[0].Groups["season"].Value); - - var result = new SeasonParseResult - { - SeriesTitle = seriesName, - SeasonNumber = seasonNumber, - Year = year, - Quality = ParseQuality(title) - }; - - - Logger.Trace("Season Parsed. {0}", result); - return result; - } - } - - return null; //Return null - } - - /// <summary> - /// Parses a post title to find the series that relates to it - /// </summary> - /// <param name = "title">Title of the report</param> - /// <returns>Normalized Series Name</returns> - internal static string ParseSeriesName(string title) - { - Logger.Trace("Parsing string '{0}'", title); - - foreach (var regex in ReportTitleRegex) - { - var match = regex.Matches(title); - - if (match.Count != 0) - { - var seriesName = NormalizeTitle(match[0].Groups["title"].Value); - - Logger.Trace("Series Parsed. {0}", seriesName); - return seriesName; - } - } - - return String.Empty; - } - - /// <summary> - /// Parses proper status out of a report title - /// </summary> - /// <param name = "title">Title of the report</param> - /// <returns></returns> - internal static bool ParseProper(string title) - { - return title.ToLower().Contains("proper"); - } - - internal static QualityTypes ParseQuality(string name) - { - Logger.Trace("Trying to parse quality for {0}", name); - - var result = QualityTypes.Unknown; - name = name.ToLowerInvariant(); - - if (name.Contains("dvd")) - return QualityTypes.DVD; - - if (name.Contains("bdrip") || name.Contains("brrip")) - { - return QualityTypes.BDRip; - } - - if (name.Contains("xvid") || name.Contains("divx")) - { - if (name.Contains("bluray")) - { - return QualityTypes.BDRip; - } - - return QualityTypes.TV; - } - - if (name.Contains("bluray")) - { - if (name.Contains("720p")) - return QualityTypes.Bluray720; - - if (name.Contains("1080p")) - return QualityTypes.Bluray1080; - - return QualityTypes.Bluray720; - } - if (name.Contains("web-dl")) - return QualityTypes.WEBDL; - if (name.Contains("x264") || name.Contains("h264") || name.Contains("720p")) - return QualityTypes.HDTV; - - //Based on extension - if (result == QualityTypes.Unknown) - { - switch (new FileInfo(name).Extension.ToLower()) - { - case ".avi": - case ".xvid": - case ".wmv": - { - result = QualityTypes.TV; - break; - } - case ".mkv": - { - result = QualityTypes.HDTV; - break; - } - } - } - - Logger.Trace("Quality Parsed:{0} Title:", result, name); - return result; - } - - /// <summary> - /// Normalizes the title. removing all non-word characters as well as common tokens - /// such as 'the' and 'and' - /// </summary> - /// <param name = "title">title</param> - /// <returns></returns> - public static string NormalizeTitle(string title) - { - return NormalizeRegex.Replace(title, String.Empty).ToLower(); - } - - - public static string NormalizePath(string path) - { - if (String.IsNullOrWhiteSpace(path)) - throw new ArgumentException("Path can not be null or empty"); - - var info = new FileInfo(path); - - if (info.FullName.StartsWith(@"\\")) //UNC - { - return info.FullName.TrimEnd('/', '\\', ' '); - } - - return info.FullName.Trim('/', '\\', ' '); - } - } -} \ No newline at end of file diff --git a/NzbDrone.Core/Providers/AutoConfigureProvider.cs b/NzbDrone.Core/Providers/AutoConfigureProvider.cs new file mode 100644 index 000000000..be3d96ecf --- /dev/null +++ b/NzbDrone.Core/Providers/AutoConfigureProvider.cs @@ -0,0 +1,67 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Text.RegularExpressions; +using NzbDrone.Core.Model; +using NzbDrone.Core.Providers.Core; + +namespace NzbDrone.Core.Providers +{ + public class AutoConfigureProvider + { + private HttpProvider _httpProvider; + private ConfigProvider _configProvider; + + public AutoConfigureProvider(HttpProvider httpProvider, ConfigProvider configProvider) + { + _httpProvider = httpProvider; + _configProvider = configProvider; + } + + public SabnzbdInfoModel AutoConfigureSab(string username, string password) + { + //Get Output from Netstat + var netStatOutput = String.Empty; + //var port = GetSabnzbdPort(netStatOutput); + var port = 2222; + var apiKey = GetSabnzbdApiKey(port); + + if (port > 0 && !String.IsNullOrEmpty(apiKey)) + { + return new SabnzbdInfoModel + { + ApiKey = apiKey, + Port = port, + Username = username, + Password = password + }; + } + + return null; + } + + private int GetSabnzbdPort(string netstatOutput) + { + Regex regex = new Regex(@"^(?:TCP\W+127.0.0.1:(?<port>\d+\W+).+?\r\n\W+\[sabnzbd.exe\])", RegexOptions.IgnoreCase + | RegexOptions.Compiled); + var match = regex.Match(netstatOutput); + var port = 0; + Int32.TryParse(match.Groups["port"].Value, out port); + + return port; + } + + private string GetSabnzbdApiKey(int port, string ipAddress = "127.0.0.1") + { + var request = String.Format("http://{0}:{1}/config/general/", ipAddress, port); + var result = _httpProvider.DownloadString(request); + + Regex regex = new Regex("\\<input\\Wtype\\=\\\"text\\\"\\Wid\\=\\\"apikey\\\"\\Wvalue\\=\\\"(?<apikey>\\w+)\\W", RegexOptions.IgnoreCase + | RegexOptions.Compiled); + var match = regex.Match(result); + + return match.Groups["apikey"].Value; + } + } +} diff --git a/NzbDrone.Core/Providers/Indexer/IndexerProviderBase.cs b/NzbDrone.Core/Providers/Indexer/IndexerProviderBase.cs index 59835a18d..815776687 100644 --- a/NzbDrone.Core/Providers/Indexer/IndexerProviderBase.cs +++ b/NzbDrone.Core/Providers/Indexer/IndexerProviderBase.cs @@ -61,13 +61,13 @@ namespace NzbDrone.Core.Providers.Indexer /// </summary> public void Fetch() { - _logger.Info("Fetching feeds from " + Settings.Name); + _logger.Debug("Fetching feeds from " + Settings.Name); foreach (var url in Urls) { try { - _logger.Debug("Downloading RSS " + url); + _logger.Trace("Downloading RSS " + url); var feed = SyndicationFeed.Load(_httpProvider.DownloadXml(url)).Items; foreach (var item in feed) @@ -130,7 +130,7 @@ namespace NzbDrone.Core.Providers.Indexer { return; } - + var sabTitle = _sabProvider.GetSabTitle(parseResult); if (_sabProvider.IsInQueue(sabTitle)) diff --git a/NzbDrone.Core/Providers/Jobs/JobProvider.cs b/NzbDrone.Core/Providers/Jobs/JobProvider.cs index 0828dc1c4..3201571e2 100644 --- a/NzbDrone.Core/Providers/Jobs/JobProvider.cs +++ b/NzbDrone.Core/Providers/Jobs/JobProvider.cs @@ -78,7 +78,6 @@ namespace NzbDrone.Core.Providers.Jobs try { - Logger.Trace("Getting list of jobs needing to be executed"); var pendingJobs = All().Where( t => t.Enable && @@ -114,16 +113,14 @@ namespace NzbDrone.Core.Providers.Jobs { if (_isRunning) { - Logger.Info("Another instance of this job is already running. Ignoring request."); + Logger.Info("Another job is already running. Ignoring request."); return false; } _isRunning = true; } - - Logger.Info("User has requested a manual execution of {0}", jobType.Name); if (_jobThread == null || !_jobThread.IsAlive) { - Logger.Debug("Initializing background thread"); + Logger.Trace("Initializing background thread"); ThreadStart starter = () => { @@ -170,7 +167,7 @@ namespace NzbDrone.Core.Providers.Jobs { try { - Logger.Info("Starting job '{0}'. Last execution {1}", settings.Name, settings.LastExecution); + Logger.Debug("Starting job '{0}'. Last execution {1}", settings.Name, settings.LastExecution); settings.LastExecution = DateTime.Now; var sw = Stopwatch.StartNew(); @@ -180,7 +177,7 @@ namespace NzbDrone.Core.Providers.Jobs settings.Success = true; sw.Stop(); - Logger.Info("Job '{0}' successfully completed in {1} seconds", timerClass.Name, sw.Elapsed.Minutes, + Logger.Debug("Job '{0}' successfully completed in {1} seconds", timerClass.Name, sw.Elapsed.Minutes, sw.Elapsed.Seconds); } catch (Exception e) @@ -201,7 +198,7 @@ namespace NzbDrone.Core.Providers.Jobs /// </summary> public virtual void Initialize() { - Logger.Info("Initializing jobs. Count {0}", _jobs.Count()); + Logger.Debug("Initializing jobs. Count {0}", _jobs.Count()); var currentTimer = All(); foreach (var timer in _jobs) diff --git a/NzbDrone.Web/Controllers/SettingsController.cs b/NzbDrone.Web/Controllers/SettingsController.cs index 62c0efec9..d71ed056a 100644 --- a/NzbDrone.Web/Controllers/SettingsController.cs +++ b/NzbDrone.Web/Controllers/SettingsController.cs @@ -24,14 +24,17 @@ namespace NzbDrone.Web.Controllers private readonly IndexerProvider _indexerProvider; private readonly QualityProvider _qualityProvider; private readonly RootDirProvider _rootDirProvider; + private readonly AutoConfigureProvider _autoConfigureProvider; public SettingsController(ConfigProvider configProvider, IndexerProvider indexerProvider, - QualityProvider qualityProvider, RootDirProvider rootDirProvider) + QualityProvider qualityProvider, RootDirProvider rootDirProvider, + AutoConfigureProvider autoConfigureProvider) { _configProvider = configProvider; _indexerProvider = indexerProvider; _qualityProvider = qualityProvider; _rootDirProvider = rootDirProvider; + _autoConfigureProvider = autoConfigureProvider; } public ActionResult Index(string viewName) @@ -276,6 +279,30 @@ namespace NzbDrone.Web.Controllers return new JsonResult { Data = "ok" }; } + public JsonResult AutoConfigureSab(string username, string password) + { + SabnzbdInfoModel info; + + try + { + //info = _autoConfigureProvider.AutoConfigureSab(username, password); + info = new SabnzbdInfoModel + { + ApiKey = "123456", + Port = 2222 + }; + } + + + + catch (Exception) + { + return new JsonResult { Data = "failed" }; + } + + return Json(info); + } + [HttpPost] public ActionResult SaveGeneral(SettingsModel data) { diff --git a/NzbDrone.Web/NzbDrone.Web.Publish.xml b/NzbDrone.Web/NzbDrone.Web.Publish.xml index df8271ea6..f2cd33dbd 100644 --- a/NzbDrone.Web/NzbDrone.Web.Publish.xml +++ b/NzbDrone.Web/NzbDrone.Web.Publish.xml @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="utf-8"?> +<?xml version="1.0" encoding="utf-8"?> <publishData> <publishProfile publishUrl="C:\Users\keivan.beigi\Desktop\D\" deleteExistingFiles="True" ftpAnonymousLogin="False" ftpPassiveMode="True" msdeploySite="" msdeploySiteID="" msdeployRemoteSitePhysicalPath="" msdeployAllowUntrustedCertificate="False" msdeploySkipExtraFilesOnServer="True" msdeployMarkAsApp="False" profileName="Profile1" publishMethod="FileSystem" replaceMatchingFiles="False" userName="" savePWD="False" userPWD="" SelectedForPublish="False"> <file relUrl="Views/Series/Unmapped.aspx" publishTime="10/04/2010 22:53:21" /> @@ -64,7 +64,7 @@ <file relUrl="Content/Black/treeview-line.png" publishTime="10/02/2010 12:01:03" /> <file relUrl="bin/System.Data.SQLite.xml" publishTime="09/23/2010 18:44:18" /> <file relUrl="Scripts/MicrosoftMvcValidation.js" publishTime="09/23/2010 18:44:18" /> - <file relUrl="Content/Outlook/sprite.png" publishTime="10/02/2010 12:01:03" /> + <file relUrl="Scripts/2010.2.825/telerik.datepicker.min.js" publishTime="10/02/2010 12:01:03" /> <file relUrl="Scripts/2010.2.825/jquery.validate.min.js" publishTime="10/02/2010 12:01:03" /> <file relUrl="Content/telerik.default.min.css" publishTime="10/02/2010 12:01:03" /> <file relUrl="Content/Forest/editor.png" publishTime="10/02/2010 12:01:03" /> @@ -85,7 +85,7 @@ <file relUrl="Content/Forest/treeview-line.png" publishTime="10/02/2010 12:01:03" /> <file relUrl="Content/Web20/treeview-nodes.png" publishTime="10/02/2010 12:01:03" /> <file relUrl="Content/Default/loading.gif" publishTime="10/02/2010 12:01:03" /> - <file relUrl="Content/Default/treeview-nodes.png" publishTime="10/02/2010 12:01:03" /> + <file relUrl="Content/Hay/loading.gif" publishTime="10/02/2010 12:01:03" /> <file relUrl="Libraries/Telerik.Web.Mvc.dll" publishTime="10/02/2010 12:01:03" /> <file relUrl="Content/telerik.webblue.min.css" publishTime="10/02/2010 12:01:03" /> <file relUrl="Content/telerik.windows7.min.css" publishTime="10/02/2010 12:01:03" /> @@ -107,11 +107,9 @@ <file relUrl="Content/Sunset/treeview-line.png" publishTime="10/02/2010 12:01:03" /> <file relUrl="Content/telerik.forest.min.css" publishTime="10/02/2010 12:01:03" /> <file relUrl="Content/Web20/treeview-line.png" publishTime="10/02/2010 12:01:03" /> - <file relUrl="Content/Hay/loading.gif" publishTime="10/02/2010 12:01:03" /> <file relUrl="Content/Images/img02.jpg" publishTime="10/02/2010 12:01:03" /> <file relUrl="Content/Web20/loading.gif" publishTime="10/02/2010 12:01:03" /> <file relUrl="Content/Telerik/editor.png" publishTime="10/02/2010 12:01:03" /> - <file relUrl="Scripts/2010.2.825/telerik.datepicker.min.js" publishTime="10/02/2010 12:01:03" /> <file relUrl="Content/WebBlue/treeview-line.png" publishTime="10/02/2010 12:01:03" /> <file relUrl="Content/telerik.sunset.min.css" publishTime="10/02/2010 12:01:03" /> <file relUrl="Content/Outlook/treeview-line.png" publishTime="10/02/2010 12:01:03" /> @@ -122,8 +120,10 @@ <file relUrl="Content/Vista/loading.gif" publishTime="10/02/2010 12:01:03" /> <file relUrl="Content/Outlook/editor.png" publishTime="10/02/2010 12:01:03" /> <file relUrl="Scripts/jquery-1.4.1-vsdoc.js" publishTime="09/23/2010 18:44:18" /> + <file relUrl="Content/Simple/treeview-line.png" publishTime="10/02/2010 12:01:03" /> <file relUrl="bin/System.Data.SQLite.dll" publishTime="09/23/2010 18:44:18" /> <file relUrl="Content/Hay/treeview-line.png" publishTime="10/02/2010 12:01:03" /> + <file relUrl="Content/Default/treeview-nodes.png" publishTime="10/02/2010 12:01:03" /> <file relUrl="bin/NzbDrone.Web.pdb" publishTime="10/13/2010 09:30:36" /> <file relUrl="bin/NzbDrone.Core.pdb" publishTime="10/13/2010 09:25:46" /> <file relUrl="Content/telerik.web20.min.css" publishTime="10/02/2010 12:01:03" /> @@ -136,7 +136,7 @@ <file relUrl="Scripts/jquery.jgrowl.js" publishTime="10/11/2010 13:31:43" /> <file relUrl="Content/Office2007/treeview-line.png" publishTime="10/02/2010 12:01:03" /> <file relUrl="Views/Shared/Error.aspx" publishTime="10/07/2010 20:33:38" /> - <file relUrl="Content/Simple/treeview-line.png" publishTime="10/02/2010 12:01:03" /> + <file relUrl="Content/Outlook/sprite.png" publishTime="10/02/2010 12:01:03" /> <file relUrl="Views/Settings/Index.aspx" publishTime="10/04/2010 22:53:21" /> <file relUrl="Scripts/jquery-ui-1.8.5.custom.min.js" publishTime="10/11/2010 19:48:30" /> <file relUrl="Content/Web20/editor.png" publishTime="10/02/2010 12:01:03" /> @@ -162,28 +162,32 @@ <file relUrl="Scripts/2010.2.825/jquery-1.4.2.min.js" publishTime="10/02/2010 12:01:03" /> <file relUrl="Scripts/2010.2.825/telerik.treeview.min.js" publishTime="10/02/2010 12:01:03" /> </publishProfile> - <publishProfile publishUrl="C:\Users\keivan.beigi\Desktop\NzbDrone" deleteExistingFiles="True" ftpAnonymousLogin="False" ftpPassiveMode="True" msdeploySite="" msdeploySiteID="" msdeployRemoteSitePhysicalPath="" msdeployAllowUntrustedCertificate="False" msdeploySkipExtraFilesOnServer="True" msdeployMarkAsApp="False" profileName="Keivan" publishMethod="FileSystem" replaceMatchingFiles="False" userName="" savePWD="False" userPWD="" SelectedForPublish="False"> - <file relUrl="Content/2011.1.315/Web20/slider-v-left.gif" publishTime="03/30/2011 14:13:12" /> + <publishProfile publishUrl="C:\Users\keivan.beigi\Desktop\NzbDrone" deleteExistingFiles="True" ftpAnonymousLogin="False" ftpPassiveMode="True" msdeploySite="" msdeploySiteID="" msdeployRemoteSitePhysicalPath="" msdeployAllowUntrustedCertificate="False" msdeploySkipExtraFilesOnServer="True" msdeployMarkAsApp="False" profileName="Markus" publishMethod="FileSystem" replaceMatchingFiles="False" userName="" savePWD="False" userPWD="" SelectedForPublish="False"> + <file relUrl="Views/Series/SeriesSearchResults.ascx" publishTime="04/09/2011 19:34:10" /> <file relUrl="bin/NzbDrone.Core.pdb" publishTime="04/21/2011 16:20:01" /> <file relUrl="Content/2011.1.315/Sitefinity/slider-v-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Default/editor.png" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Office2010Black/slider-hs-top.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Office2007/sprite.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/Images/arrow.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Content/2011.1.315/Forest/editor.png" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Forest/slider-hs-bottom.gif" publishTime="03/30/2011 14:13:11" /> + <file relUrl="Content/2011.1.315/Sitefinity/sprite.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Black/treeview-nodes.png" publishTime="03/30/2011 14:13:11" /> - <file relUrl="Content/2011.1.315/Outlook/slider-h-bottom.gif" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Black/sprite-vertical.png" publishTime="03/30/2011 14:13:11" /> + <file relUrl="Content/2011.1.315/Sunset/slider-h-top.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="bin/System.Web.WebPages.Razor.dll" publishTime="01/05/2011 14:45:38" /> <file relUrl="Scripts/2011.1.315/telerik.splitter.min.js" publishTime="03/30/2011 14:13:12" /> <file relUrl="Scripts/jquery-ui.min.js" publishTime="04/04/2011 20:01:32" /> <file relUrl="Content/2011.1.315/Hay/slider-h-top.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="bin/Telerik.Web.Mvc.dll" publishTime="04/04/2011 20:01:33" /> + <file relUrl="Content/2011.1.315/Office2007/treeview-nodes.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Office2007/editor.png" publishTime="03/30/2011 14:13:11" /> <file relUrl="Scripts/2011.1.315/telerik.grid.reordering.min.js" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Telerik/slider-v-left.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Simple/slider-hs-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Views/Upcoming/Index.aspx" publishTime="04/09/2011 19:34:10" /> - <file relUrl="Content/2011.1.315/Sunset/slider-h-bottom.gif" publishTime="03/30/2011 14:13:12" /> + <file relUrl="bin/NLog.xml" publishTime="09/26/2010 18:12:50" /> <file relUrl="Content/2011.1.315/Web20/slider-h-top.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Telerik/slider-v-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Outlook/treeview-nodes-rtl.png" publishTime="03/30/2011 14:13:12" /> @@ -193,67 +197,67 @@ <file relUrl="Content/Images/ui-bg_glass_100_f0f0f0_1x400.png" publishTime="03/28/2011 21:50:45" /> <file relUrl="Content/2011.1.315/Black/slider-vs-left.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Web20/slider-hs-bottom.gif" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Views/AddSeries/AddNew.aspx" publishTime="04/09/2011 19:38:03" /> <file relUrl="Content/Images/ui-icons_2694e8_256x240.png" publishTime="03/28/2011 21:50:45" /> - <file relUrl="Content/2011.1.315/telerik.webblue.min.css" publishTime="03/30/2011 14:13:12" /> <file relUrl="bin/System.Web.Helpers.dll" publishTime="01/05/2011 14:45:38" /> <file relUrl="Content/2011.1.315/Office2010Black/treeview-nodes-rtl.png" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Scripts/jquery.validate.unobtrusive.js" publishTime="04/04/2011 20:01:32" /> <file relUrl="Views/Series/index.aspx" publishTime="04/09/2011 19:34:10" /> <file relUrl="Content/2011.1.315/telerik.default.min.css" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Black/slider-h-top.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/telerik.office2010black.min.css" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/telerik.telerik.min.css" publishTime="03/30/2011 14:13:12" /> <file relUrl="App_GlobalResources/EditorLocalization.pl-PL.resx" publishTime="04/04/2011 20:01:32" /> <file relUrl="Content/2011.1.315/Simple/treeview-nodes-rtl.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Scripts/2011.1.315/telerik.calendar.min.js" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Office2010Black/sprite.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Sitefinity/slider-h-top.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Forest/loading.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Scripts/2011.1.315/telerik.upload.min.js" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Forest/slider-h-both.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/Images/ui-bg_glass_55_fbf5d0_1x400.png" publishTime="03/28/2011 21:50:45" /> <file relUrl="Content/2011.1.315/Sitefinity/slider-hs-top.gif" publishTime="03/30/2011 14:13:12" /> - <file relUrl="App_GlobalResources/GridLocalization.en-US.resx" publishTime="04/04/2011 20:01:32" /> <file relUrl="Content/2011.1.315/Vista/loading.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/Images/ui-icons_888888_256x240.png" publishTime="03/28/2011 21:50:45" /> <file relUrl="Content/2011.1.315/Outlook/slider-hs-bottom.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="App_GlobalResources/GridLocalization.bg-BG.resx" publishTime="04/04/2011 20:01:32" /> <file relUrl="Content/2011.1.315/Outlook/slider-h-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Sunset/loading.gif" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Forest/treeview-nodes-rtl.png" publishTime="03/30/2011 14:13:11" /> + <file relUrl="Content/2011.1.315/Hay/slider-h-both.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Office2007/slider-v-left.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Scripts/MicrosoftAjax.debug.js" publishTime="09/23/2010 18:44:18" /> <file relUrl="Content/2011.1.315/Forest/slider-v-right.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Scripts/2011.1.315/telerik.editor.min.js" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/telerik.simple.min.css" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Sunset/sprite-vertical.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Sunset/treeview-nodes.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Default/slider-vs-both.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Black/imagebrowser.png" publishTime="03/30/2011 14:13:11" /> - <file relUrl="Content/2011.1.315/Web20/slider-h-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Vista/slider-hs-bottom.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Telerik/slider-hs-top.gif" publishTime="03/30/2011 14:13:12" /> + <file relUrl="App_GlobalResources/EditorLocalization.uk-UA.resx" publishTime="04/04/2011 20:01:32" /> <file relUrl="Content/2011.1.315/Sitefinity/slider-hs-bottom.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Sitefinity/slider-v-right.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Views/History/Index.aspx" publishTime="04/09/2011 19:52:14" /> <file relUrl="Content/2011.1.315/telerik.sunset.min.css" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Office2007/slider-hs-top.gif" publishTime="03/30/2011 14:13:11" /> + <file relUrl="Scripts/2011.1.315/telerik.datetimepicker.min.js" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Sunset/slider-hs-top.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Scripts/MicrosoftMvcAjax.js" publishTime="04/01/2011 16:29:15" /> <file relUrl="Content/2011.1.315/Office2007/sprite-vertical.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Office2010Black/slider-h-bottom.gif" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Simple/slider-h-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Forest/treeview-nodes.png" publishTime="03/30/2011 14:13:11" /> <file relUrl="App_GlobalResources/EditorLocalization.pt-BR.resx" publishTime="04/04/2011 20:01:32" /> - <file relUrl="Content/2011.1.315/Telerik/sprite.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Simple/editor.png" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Hay/slider-vs-both.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Black/slider-v-left.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Simple/treeview-nodes.png" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Scripts/2011.1.315/telerik.window.min.js" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Web20/slider-v-right.gif" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Scripts/2011.1.315/telerik.autocomplete.min.js" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/Images/ui-icons_222222_256x240.png" publishTime="03/28/2011 21:50:45" /> <file relUrl="bin/Ninject.Web.Mvc.dll" publishTime="04/04/2011 20:01:32" /> <file relUrl="Content/2011.1.315/Telerik/sprite-vertical.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Views/Shared/Footer.cshtml" publishTime="04/20/2011 21:45:08" /> <file relUrl="Content/2011.1.315/Default/slider-h-both.gif" publishTime="03/30/2011 14:13:11" /> + <file relUrl="Content/2011.1.315/Outlook/sprite.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Views/Shared/SiteLayout.cshtml" publishTime="04/20/2011 21:45:08" /> <file relUrl="Content/2011.1.315/Forest/treeview-line.png" publishTime="03/30/2011 14:13:11" /> <file relUrl="Libraries/Ninject.Web.Mvc.xml" publishTime="04/04/2011 20:01:32" /> @@ -266,19 +270,21 @@ <file relUrl="Scripts/jquery.validate-vsdoc.js" publishTime="09/23/2010 18:44:18" /> <file relUrl="Content/2011.1.315/telerik.rtl.min.css" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/Images/img03.jpg" publishTime="03/30/2011 16:18:20" /> - <file relUrl="Content/2011.1.315/telerik.common.min.css" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/Images/ui-icons_72a7cf_256x240.png" publishTime="03/28/2011 21:50:45" /> <file relUrl="Content/2011.1.315/Telerik/editor.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Default/slider-v-right.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/Images/img02.jpg" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Content/2011.1.315/Office2007/slider-vs-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/WebBlue/slider-v-left.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="bin/Castle.Core.dll" publishTime="03/29/2011 11:47:35" /> <file relUrl="Content/2011.1.315/Default/slider-hs-top.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/telerik.black.min.css" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Black/sprite-vertical.png" publishTime="03/30/2011 14:13:11" /> + <file relUrl="App_GlobalResources/EditorLocalization.de-DE.resx" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Default/slider-v-both.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Forest/slider-hs-top.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Windows7/slider-vs-left.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Office2010Black/sprite-vertical.png" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Scripts/MicrosoftMvcValidation.debug.js" publishTime="04/01/2011 16:29:15" /> <file relUrl="Content/2011.1.315/Sunset/treeview-line.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Sitefinity/treeview-nodes.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Vista/sprite-vertical.png" publishTime="03/30/2011 14:13:12" /> @@ -295,13 +301,11 @@ <file relUrl="Content/2011.1.315/Hay/sprite.png" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Windows7/slider-h-top.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/telerik.forest.min.css" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Views/Settings/Index.cshtml" publishTime="04/20/2011 21:45:08" /> <file relUrl="Content/2011.1.315/Office2010Black/slider-vs-left.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Default/loading.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Web20/editor.png" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Vista/slider-v-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Vista/slider-h-bottom.gif" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Black/slider-h-top.gif" publishTime="03/30/2011 14:13:11" /> + <file relUrl="Content/2011.1.315/Vista/slider-v-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Sitefinity/slider-h-bottom.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Simple/slider-v-right.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="bin/System.Web.Mvc.xml" publishTime="01/04/2011 14:29:22" /> @@ -309,39 +313,41 @@ <file relUrl="App_GlobalResources/UploadLocalization.bg-BG.resx" publishTime="04/04/2011 20:01:32" /> <file relUrl="bin/TvdbLib.dll" publishTime="01/31/2011 14:25:48" /> <file relUrl="Content/2011.1.315/Forest/sprite-vertical.png" publishTime="03/30/2011 14:13:11" /> - <file relUrl="Scripts/2011.1.315/telerik.slider.min.js" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Sunset/slider-v-both.gif" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/telerik.windows7.min.css" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Sunset/sprite.png" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Windows7/sprite.png" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Black/slider-vs-right.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="bin/NzbDrone.Core.dll" publishTime="04/21/2011 16:20:01" /> <file relUrl="Content/2011.1.315/Office2007/slider-vs-left.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Sunset/imagebrowser.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Outlook/treeview-line.png" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Views/AddSeries/AddExisting.aspx" publishTime="04/18/2011 23:41:53" /> <file relUrl="bin/System.Data.SQLite.xml" publishTime="09/23/2010 18:44:18" /> <file relUrl="Content/2011.1.315/Hay/slider-hs-top.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="bin/SubSonic.Core.xml" publishTime="03/30/2011 14:13:39" /> <file relUrl="Content/2011.1.315/Vista/slider-v-left.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Scripts/jquery-ui-1.8.8.min.js" publishTime="02/01/2011 14:59:14" /> <file relUrl="Content/2011.1.315/telerik.sitefinity.min.css" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/Images/spin.gif" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Content/2011.1.315/Forest/treeview-nodes-rtl.png" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Telerik/slider-vs-right.gif" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Views/Series/SubMenu.ascx" publishTime="04/09/2011 19:34:10" /> + <file relUrl="App_GlobalResources/EditorLocalization.bg-BG.resx" publishTime="04/04/2011 20:01:32" /> <file relUrl="Content/2011.1.315/Office2007/imagebrowser.png" publishTime="03/30/2011 14:13:11" /> <file relUrl="Scripts/2011.1.315/telerik.grid.grouping.min.js" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Forest/slider-h-bottom.gif" publishTime="03/30/2011 14:13:11" /> + <file relUrl="log.config" publishTime="04/21/2011 14:10:51" /> <file relUrl="Views/Settings/SubMenu.cshtml" publishTime="04/20/2011 21:45:08" /> - <file relUrl="Scripts/2011.1.315/telerik.timepicker.min.js" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Office2010Black/sprite.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/telerik.vista.min.css" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/WebBlue/slider-v-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Scripts/jquery-1.5.2.js" publishTime="04/19/2011 18:44:12" /> - <file relUrl="Content/2011.1.315/Office2007/treeview-nodes.png" publishTime="03/30/2011 14:13:12" /> - <file relUrl="App_GlobalResources/GridLocalization.ru-RU.resx" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Office2010Black/slider-vs-right.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/WebBlue/sprite.png" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Outlook/slider-hs-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Telerik/slider-h-bottom.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/Images/ui-icons_ffffff_256x240.png" publishTime="03/28/2011 21:50:45" /> <file relUrl="Content/2011.1.315/Forest/imagebrowser.png" publishTime="03/30/2011 14:13:11" /> <file relUrl="Global.asax" publishTime="09/23/2010 18:44:18" /> + <file relUrl="Content/2011.1.315/Telerik/slider-hs-bottom.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="bin/Exceptioneer.WindowsFormsClient.dll" publishTime="04/08/2011 09:53:34" /> + <file relUrl="Views/Series/SubMenu.ascx" publishTime="04/09/2011 19:34:10" /> <file relUrl="Scripts/2011.1.315/telerik.tabstrip.min.js" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/WebBlue/imagebrowser.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Windows7/slider-hs-bottom.gif" publishTime="03/30/2011 14:13:12" /> @@ -351,33 +357,30 @@ <file relUrl="App_GlobalResources/EditorLocalization.ru-RU.resx" publishTime="04/04/2011 20:01:32" /> <file relUrl="Content/2011.1.315/Windows7/slider-v-left.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Views/Web.config" publishTime="04/01/2011 16:45:55" /> - <file relUrl="Content/2011.1.315/Sitefinity/sprite-vertical.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Scripts/2011.1.315/telerik.combobox.min.js" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Telerik/slider-h-top.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Forest/slider-vs-left.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Simple/slider-v-left.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Forest/slider-vs-right.gif" publishTime="03/30/2011 14:13:11" /> - <file relUrl="Libraries/Ninject.Web.Mvc.dll" publishTime="04/04/2011 20:01:32" /> <file relUrl="Content/Images/img01.jpg" publishTime="03/28/2011 21:50:45" /> - <file relUrl="App_GlobalResources/EditorLocalization.de-DE.resx" publishTime="04/04/2011 20:01:32" /> <file relUrl="Content/Images/ui-bg_glass_80_e6e6e6_1x400.png" publishTime="03/28/2011 21:50:45" /> <file relUrl="Content/2011.1.315/Web20/slider-hs-top.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Outlook/slider-vs-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Office2007/treeview-line.png" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Office2010Black/loading.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="bin/System.Web.WebPages.Razor.xml" publishTime="12/20/2010 09:52:36" /> <file relUrl="bin/NzbDrone.Web.dll" publishTime="04/21/2011 16:20:02" /> + <file relUrl="Content/Images/ui-bg_glass_50_99c2ff_1x400.png" publishTime="03/28/2011 21:50:45" /> <file relUrl="Content/2011.1.315/Office2007/slider-hs-both.gif" publishTime="03/30/2011 14:13:11" /> - <file relUrl="Views/Settings/Notifications.cshtml" publishTime="04/20/2011 21:45:08" /> <file relUrl="Content/2011.1.315/Default/imagebrowser.png" publishTime="03/30/2011 14:13:11" /> <file relUrl="Views/Settings/Indexers.cshtml" publishTime="04/19/2011 18:46:30" /> - <file relUrl="Scripts/2011.1.315/telerik.treeview.min.js" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Office2007/loading.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Office2007/slider-h-both.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Scripts/2011.1.315/telerik.datepicker.min.js" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Office2010Black/treeview-nodes.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Default/treeview-line.png" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Vista/slider-vs-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Default/treeview-nodes-rtl.png" publishTime="03/30/2011 14:13:11" /> + <file relUrl="Content/Images/ui-bg_glass_95_fef1ec_1x400.png" publishTime="03/28/2011 21:50:45" /> <file relUrl="Content/2011.1.315/Forest/slider-v-left.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Telerik/imagebrowser.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Scripts/jquery-1.5.2-vsdoc.js" publishTime="04/19/2011 18:44:12" /> @@ -385,95 +388,92 @@ <file relUrl="Content/2011.1.315/Sunset/slider-v-left.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/telerik.web20.min.css" publishTime="03/30/2011 14:13:12" /> <file relUrl="App_GlobalResources/GridLocalization.uk-UA.resx" publishTime="04/04/2011 20:01:32" /> - <file relUrl="Views/AddSeries/AddExisting.aspx" publishTime="04/18/2011 23:41:53" /> - <file relUrl="Content/2011.1.315/Office2010Black/slider-h-top.gif" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Outlook/slider-h-bottom.gif" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Simple/slider-h-top.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Outlook/slider-vs-right.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="bin/NLog.dll" publishTime="09/26/2010 18:12:50" /> <file relUrl="Scripts/2011.1.315/telerik.grid.filtering.min.js" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Web20/sprite-vertical.png" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/Images/ui-icons_cd0a0a_256x240.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Content/Images/ui-bg_diagonals-thick_15_444444_40x40.png" publishTime="03/28/2011 21:50:45" /> <file relUrl="Content/2011.1.315/Simple/treeview-line.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Default/sprite-vertical.png" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Sitefinity/slider-vs-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Views/Series/Edit.aspx" publishTime="04/09/2011 19:34:10" /> <file relUrl="bin/Ninject.Web.Mvc.xml" publishTime="04/04/2011 20:01:32" /> <file relUrl="Content/2011.1.315/Simple/slider-v-both.gif" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Views/Settings/UserProfileSection.cshtml" publishTime="04/20/2011 21:45:08" /> <file relUrl="Scripts/2011.1.315/telerik.grid.editing.min.js" publishTime="03/30/2011 14:13:12" /> <file relUrl="Views/Timers/index.cshtml" publishTime="04/19/2011 23:53:08" /> <file relUrl="Scripts/jquery.unobtrusive-ajax.min.js" publishTime="04/04/2011 20:01:32" /> - <file relUrl="Content/Images/ui-bg_diagonals-small_0_aaaaaa_40x40.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Scripts/2011.1.315/telerik.timepicker.min.js" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Outlook/slider-h-top.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Telerik/slider-vs-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="bin/System.Web.Razor.dll" publishTime="01/05/2011 14:45:38" /> <file relUrl="Content/2011.1.315/Hay/treeview-line.png" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Sunset/slider-vs-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/WebBlue/slider-h-bottom.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/WebBlue/slider-h-top.gif" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Hay/slider-h-both.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Outlook/treeview-nodes.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Office2007/treeview-nodes-rtl.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Views/Settings/RootDir.cshtml" publishTime="04/20/2011 21:45:08" /> <file relUrl="Views/Settings/Downloads.cshtml" publishTime="04/20/2011 21:45:08" /> <file relUrl="Content/2011.1.315/Sitefinity/slider-hs-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Office2007/slider-h-bottom.gif" publishTime="03/30/2011 14:13:11" /> - <file relUrl="Content/style.css" publishTime="04/03/2011 18:29:53" /> + <file relUrl="Content/jquery.jgrowl.css" publishTime="02/03/2011 16:48:28" /> <file relUrl="Content/XbmcNotification.png" publishTime="03/27/2011 22:30:07" /> <file relUrl="Content/2011.1.315/Hay/editor.png" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/jquery-ui-1.8.8.custom.css" publishTime="02/03/2011 16:48:28" /> - <file relUrl="Content/2011.1.315/Office2007/slider-hs-bottom.gif" publishTime="03/30/2011 14:13:11" /> + <file relUrl="Content/style.css" publishTime="04/03/2011 18:29:53" /> <file relUrl="Views/Settings/General.cshtml" publishTime="04/20/2011 21:45:08" /> <file relUrl="bin/NzbDrone.Web.pdb" publishTime="04/21/2011 16:20:02" /> - <file relUrl="Content/2011.1.315/Sunset/sprite-vertical.png" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Vista/sprite.png" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Office2007/loading.gif" publishTime="03/30/2011 14:13:11" /> - <file relUrl="Content/2011.1.315/Black/slider-vs-right.gif" publishTime="03/30/2011 14:13:11" /> + <file relUrl="Content/Images/X.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Content/2011.1.315/Default/slider-hs-both.gif" publishTime="03/30/2011 14:13:11" /> + <file relUrl="Content/2011.1.315/Office2007/slider-hs-bottom.gif" publishTime="03/30/2011 14:13:11" /> + <file relUrl="Content/Images/spin.gif" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Scripts/2011.1.315/telerik.window.min.js" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Default/slider-h-top.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/WebBlue/slider-hs-bottom.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Web20/slider-hs-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Vista/slider-h-top.gif" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Telerik/slider-v-right.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Outlook/imagebrowser.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Views/Settings/Quality.cshtml" publishTime="04/20/2011 21:45:08" /> <file relUrl="Content/jquery-simpledropdown.css" publishTime="03/27/2011 22:29:41" /> <file relUrl="Scripts/2011.1.315/telerik.menu.min.js" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Outlook/sprite.png" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Hay/slider-v-both.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Default/treeview-nodes.png" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Sunset/treeview-nodes-rtl.png" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Web20/imagebrowser.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Hay/sprite-vertical.png" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Web20/loading.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="bin/System.Web.Mvc.dll" publishTime="01/05/2011 16:42:16" /> <file relUrl="Content/2011.1.315/Hay/treeview-nodes-rtl.png" publishTime="03/30/2011 14:13:11" /> <file relUrl="Scripts/jquery.validate.js" publishTime="09/23/2010 18:44:18" /> + <file relUrl="Content/2011.1.315/Outlook/slider-hs-top.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Default/slider-hs-bottom.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Vista/imagebrowser.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Office2007/slider-h-top.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="App_GlobalResources/GridLocalization.fr-FR.resx" publishTime="04/04/2011 20:01:32" /> - <file relUrl="Content/2011.1.315/Default/slider-v-left.gif" publishTime="03/30/2011 14:13:11" /> - <file relUrl="Content/2011.1.315/WebBlue/slider-v-right.gif" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Windows7/slider-vs-right.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Simple/sprite.png" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/Images/X.png" publishTime="03/28/2011 21:50:45" /> <file relUrl="Content/2011.1.315/Vista/slider-vs-left.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/WebBlue/slider-vs-left.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/notibar.css" publishTime="04/04/2011 20:01:32" /> <file relUrl="Content/2011.1.315/Black/slider-v-both.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Windows7/slider-h-bottom.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Scripts/2011.1.315/telerik.imagebrowser.min.js" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Scripts/2011.1.315/telerik.list.min.js" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Scripts/2011.1.315/telerik.panelbar.min.js" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Sitefinity/loading.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Hay/loading.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Views/Series/Details.aspx" publishTime="04/19/2011 23:16:11" /> - <file relUrl="Content/2011.1.315/Vista/slider-hs-top.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Office2010Black/slider-v-both.gif" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Outlook/slider-vs-left.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Black/slider-v-right.gif" publishTime="03/30/2011 14:13:11" /> - <file relUrl="Content/2011.1.315/Simple/slider-h-top.gif" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Scripts/jquery-ui.js" publishTime="04/04/2011 20:01:32" /> <file relUrl="Content/2011.1.315/Office2010Black/treeview-line.png" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Scripts/2011.1.315/jquery.validate.min.js" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Office2010Black/slider-hs-bottom.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Windows7/slider-v-right.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Vista/slider-hs-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Views/Shared/Site.Master" publishTime="04/19/2011 18:44:12" /> <file relUrl="Scripts/2011.1.315/jquery-1.5.1.min.js" publishTime="03/30/2011 14:13:12" /> + <file relUrl="bin/System.Data.SQLite.dll" publishTime="09/23/2010 18:44:18" /> <file relUrl="packages.config" publishTime="04/19/2011 18:44:12" /> <file relUrl="Content/2011.1.315/Sunset/slider-hs-bottom.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="App_GlobalResources/GridLocalization.pt-PT.resx" publishTime="04/04/2011 20:01:32" /> @@ -481,86 +481,88 @@ <file relUrl="bin/Castle.Core.xml" publishTime="03/29/2011 11:47:35" /> <file relUrl="Content/2011.1.315/Sitefinity/slider-v-left.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Sunset/slider-vs-right.gif" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Default/slider-v-both.gif" publishTime="03/30/2011 14:13:11" /> + <file relUrl="Scripts/2011.1.315/telerik.panelbar.min.js" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Hay/slider-hs-bottom.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Simple/loading.gif" publishTime="03/30/2011 14:13:12" /> - <file relUrl="bin/System.Web.Helpers.xml" publishTime="12/19/2010 22:59:38" /> + <file relUrl="Scripts/MicrosoftAjax.js" publishTime="09/23/2010 18:44:18" /> <file relUrl="Content/2011.1.315/Forest/slider-hs-both.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Sunset/slider-h-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Sitefinity/editor.png" publishTime="03/30/2011 14:13:12" /> + <file relUrl="bin/System.Web.Helpers.xml" publishTime="12/19/2010 22:59:38" /> <file relUrl="Content/2011.1.315/Office2007/slider-v-right.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Vista/slider-v-right.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/Images/ui-bg_highlight-hard_100_f9f9f9_1x100.png" publishTime="03/28/2011 21:50:45" /> - <file relUrl="Content/2011.1.315/Office2010Black/slider-hs-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Forest/slider-h-top.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Simple/slider-vs-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Windows7/slider-v-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Windows7/sprite-vertical.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="App_GlobalResources/GridLocalization.es-ES.resx" publishTime="04/04/2011 20:01:32" /> - <file relUrl="Scripts/jquery.simpledropdown.js" publishTime="03/27/2011 22:29:41" /> <file relUrl="Content/Images/ui-bg_highlight-soft_100_e7eef3_1x100.png" publishTime="03/28/2011 21:50:45" /> - <file relUrl="Content/Images/ui-bg_glass_95_fef1ec_1x400.png" publishTime="03/28/2011 21:50:45" /> - <file relUrl="Content/2011.1.315/Office2010Black/slider-vs-right.gif" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Outlook/slider-hs-both.gif" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Hay/imagebrowser.png" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Simple/slider-h-bottom.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Sitefinity/slider-h-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/ajax-loader.gif" publishTime="02/03/2011 16:48:28" /> <file relUrl="Content/2011.1.315/Web20/slider-vs-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/telerik.office2007.min.css" publishTime="03/30/2011 14:13:12" /> - <file relUrl="App_GlobalResources/GridLocalization.pl-PL.resx" publishTime="04/04/2011 20:01:32" /> <file relUrl="Content/2011.1.315/Web20/slider-vs-left.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Scripts/jquery-tgc-countdown-1.0.js" publishTime="02/01/2011 14:59:14" /> - <file relUrl="Content/2011.1.315/Default/slider-hs-both.gif" publishTime="03/30/2011 14:13:11" /> + <file relUrl="Content/2011.1.315/Web20/slider-h-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Hay/slider-vs-left.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Views/Shared/Error.aspx" publishTime="04/09/2011 19:34:10" /> <file relUrl="Content/2011.1.315/Hay/slider-v-left.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/WebBlue/treeview-line.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Sunset/editor.png" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Telerik/slider-v-right.gif" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Office2010Black/slider-v-left.gif" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Scripts/jquery.validate.unobtrusive.js" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/WebBlue/sprite-vertical.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/Images/ui-icons_2e83ff_256x240.png" publishTime="03/28/2011 21:50:45" /> <file relUrl="App_GlobalResources/EditorLocalization.en-US.resx" publishTime="04/04/2011 20:01:32" /> <file relUrl="Content/2011.1.315/Vista/editor.png" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Default/slider-h-bottom.gif" publishTime="03/30/2011 14:13:11" /> + <file relUrl="Content/2011.1.315/Office2010Black/slider-vs-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Black/slider-vs-both.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Scripts/jquery.form.js" publishTime="02/01/2011 14:59:14" /> - <file relUrl="Scripts/2011.1.315/telerik.autocomplete.min.js" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Scripts/jquery.simpledropdown.js" publishTime="03/27/2011 22:29:41" /> + <file relUrl="Content/2011.1.315/Windows7/loading.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Scripts/2011.1.315/telerik.textbox.min.js" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Outlook/slider-h-top.gif" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Scripts/2011.1.315/telerik.common.min.js" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Views/AddSeries/AddNew.aspx" publishTime="04/09/2011 19:38:03" /> <file relUrl="Content/2011.1.315/Web20/slider-h-bottom.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Default/slider-vs-left.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Simple/slider-vs-right.gif" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Hay/slider-v-both.gif" publishTime="03/30/2011 14:13:11" /> + <file relUrl="App_GlobalResources/GridLocalization.en-US.resx" publishTime="04/04/2011 20:01:32" /> <file relUrl="Content/2011.1.315/Telerik/treeview-nodes-rtl.png" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Hay/slider-vs-both.gif" publishTime="03/30/2011 14:13:11" /> + <file relUrl="Content/2011.1.315/WebBlue/slider-v-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="App_GlobalResources/GridLocalization.de-DE.resx" publishTime="04/04/2011 20:01:32" /> - <file relUrl="bin/System.Data.SQLite.dll" publishTime="09/23/2010 18:44:18" /> + <file relUrl="Content/2011.1.315/Telerik/sprite.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/telerik.hay.min.css" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Hay/slider-h-bottom.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Black/slider-hs-top.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/WebBlue/slider-vs-both.gif" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Scripts/2011.1.315/telerik.datetimepicker.min.js" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Views/Settings/Notifications.cshtml" publishTime="04/20/2011 21:45:08" /> + <file relUrl="bin/Ninject.dll" publishTime="04/04/2011 20:01:32" /> <file relUrl="Content/Images/Plus.png" publishTime="03/28/2011 21:50:45" /> - <file relUrl="Content/2011.1.315/telerik.windows7.min.css" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Views/Log/Index.aspx" publishTime="04/21/2011 11:13:12" /> <file relUrl="Content/2011.1.315/Hay/slider-hs-both.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Telerik/slider-hs-both.gif" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Office2010Black/slider-v-left.gif" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Sunset/slider-h-bottom.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="App_GlobalResources/EditorLocalization.fr-FR.resx" publishTime="04/04/2011 20:01:32" /> <file relUrl="Content/2011.1.315/Sitefinity/treeview-line.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Black/sprite.png" publishTime="03/30/2011 14:13:11" /> - <file relUrl="Scripts/2011.1.315/jquery.validate.min.js" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/telerik.webblue.min.css" publishTime="03/30/2011 14:13:12" /> <file relUrl="Scripts/2011.1.315/telerik.grid.min.js" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Sunset/slider-v-right.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Telerik/slider-vs-left.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Scripts/jquery-ui-1.8.5.custom.min.js" publishTime="01/31/2011 14:25:49" /> + <file relUrl="Content/2011.1.315/Sitefinity/treeview-nodes-rtl.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/WebBlue/slider-hs-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="App_GlobalResources/UploadLocalization.en-US.resx" publishTime="04/04/2011 20:01:32" /> <file relUrl="Content/2011.1.315/Forest/slider-v-both.gif" publishTime="03/30/2011 14:13:11" /> - <file relUrl="log.config" publishTime="04/21/2011 14:10:51" /> + <file relUrl="Content/2011.1.315/Windows7/sprite.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Sitefinity/slider-vs-left.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/WebBlue/loading.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Scripts/2011.1.315/telerik.grid.resizing.min.js" publishTime="03/30/2011 14:13:12" /> <file relUrl="Scripts/MicrosoftMvcValidation.js" publishTime="04/04/2011 20:00:14" /> - <file relUrl="Content/2011.1.315/Windows7/loading.gif" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/WebBlue/slider-v-right.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Web20/slider-v-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="bin/TvdbLib.xml" publishTime="01/31/2011 14:25:48" /> <file relUrl="Content/2011.1.315/Black/loading.gif" publishTime="03/30/2011 14:13:11" /> @@ -572,13 +574,13 @@ <file relUrl="Content/2011.1.315/Simple/imagebrowser.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Scripts/2011.1.315/telerik.draganddrop.min.js" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Windows7/slider-hs-both.gif" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Office2010Black/slider-vs-both.gif" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Vista/sprite.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Simple/slider-vs-left.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Default/slider-vs-right.gif" publishTime="03/30/2011 14:13:11" /> - <file relUrl="Content/jquery.jgrowl.css" publishTime="02/03/2011 16:48:28" /> + <file relUrl="App_GlobalResources/GridLocalization.pl-PL.resx" publishTime="04/04/2011 20:01:32" /> <file relUrl="Content/2011.1.315/Sunset/slider-hs-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/ie.css" publishTime="03/27/2011 22:29:41" /> - <file relUrl="Content/2011.1.315/Outlook/slider-hs-top.gif" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Web20/slider-v-left.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Simple/slider-hs-top.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Office2007/slider-vs-right.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Office2010Black/imagebrowser.png" publishTime="03/30/2011 14:13:12" /> @@ -586,555 +588,549 @@ <file relUrl="Content/2011.1.315/Hay/slider-vs-right.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Scripts/jquery.validate.min.js" publishTime="04/04/2011 20:01:32" /> <file relUrl="Content/jquery-ui.custom.css" publishTime="02/03/2011 16:48:28" /> - <file relUrl="Scripts/MicrosoftAjax.js" publishTime="09/23/2010 18:44:18" /> + <file relUrl="App_GlobalResources/GridLocalization.ru-RU.resx" publishTime="04/04/2011 20:01:32" /> <file relUrl="Content/2011.1.315/WebBlue/treeview-nodes-rtl.png" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/Images/ui-bg_diagonals-thick_15_444444_40x40.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Content/2011.1.315/Vista/slider-hs-top.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Sitefinity/imagebrowser.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Web20/treeview-nodes.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Web20/treeview-nodes-rtl.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Windows7/slider-h-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Telerik/treeview-nodes.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Office2010Black/editor.png" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Sitefinity/treeview-nodes-rtl.png" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Web20/imagebrowser.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/jquery-ui.css" publishTime="02/03/2011 16:48:28" /> - <file relUrl="Content/2011.1.315/Hay/imagebrowser.png" publishTime="03/30/2011 14:13:11" /> + <file relUrl="Content/2011.1.315/Outlook/slider-vs-left.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/WebBlue/editor.png" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Office2007/slider-vs-both.gif" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Office2010Black/slider-hs-both.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Black/editor.png" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Outlook/slider-v-right.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Web.config" publishTime="04/21/2011 16:20:48" /> - <file relUrl="Content/2011.1.315/Simple/slider-h-both.gif" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Scripts/Notification.js" publishTime="04/19/2011 18:44:12" /> - <file relUrl="Scripts/MicrosoftMvcValidation.debug.js" publishTime="04/01/2011 16:29:15" /> + <file relUrl="Scripts/2011.1.315/telerik.list.min.js" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Views/Settings/Index.cshtml" publishTime="04/20/2011 21:45:08" /> <file relUrl="Content/2011.1.315/Windows7/slider-vs-both.gif" publishTime="03/30/2011 14:13:12" /> - <file relUrl="App_GlobalResources/EditorLocalization.bg-BG.resx" publishTime="04/04/2011 20:01:32" /> <file relUrl="Content/2011.1.315/Vista/slider-h-both.gif" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Forest/editor.png" publishTime="03/30/2011 14:13:11" /> - <file relUrl="Content/2011.1.315/Sunset/slider-h-top.gif" publishTime="03/30/2011 14:13:12" /> - <file relUrl="bin/Ninject.dll" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Scripts/2011.1.315/telerik.common.min.js" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/Images/ui-bg_diagonals-small_0_aaaaaa_40x40.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Content/2011.1.315/Office2010Black/loading.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Views/_ViewStart.cshtml" publishTime="04/20/2011 21:45:08" /> - <file relUrl="bin/NLog.xml" publishTime="09/26/2010 18:12:50" /> + <file relUrl="Content/2011.1.315/Default/slider-v-left.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="bin/SubSonic.Core.dll" publishTime="03/30/2011 14:13:39" /> <file relUrl="Content/2011.1.315/Outlook/sprite-vertical.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Outlook/slider-v-both.gif" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Telerik/slider-hs-bottom.gif" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Web20/sprite.png" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Forest/sprite.png" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Web20/slider-vs-right.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="bin/System.Web.Routing.dll" publishTime="03/18/2010 16:31:26" /> <file relUrl="Content/2011.1.315/Forest/slider-vs-both.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/WebBlue/treeview-nodes.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/WebBlue/slider-vs-right.gif" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Forest/slider-h-bottom.gif" publishTime="03/30/2011 14:13:11" /> + <file relUrl="Content/2011.1.315/Office2010Black/slider-h-top.gif" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Black/treeview-line.png" publishTime="03/30/2011 14:13:11" /> - <file relUrl="Scripts/jquery-ui.js" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Default/slider-h-bottom.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Telerik/treeview-line.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Black/slider-hs-bottom.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Black/slider-h-both.gif" publishTime="03/30/2011 14:13:11" /> <file relUrl="Content/2011.1.315/Outlook/editor.png" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Views/Series/SeriesSearchResults.ascx" publishTime="04/09/2011 19:34:10" /> + <file relUrl="Scripts/2011.1.315/telerik.treeview.min.js" publishTime="03/30/2011 14:13:12" /> <file relUrl="Scripts/jquery.jgrowl.js" publishTime="01/31/2011 14:25:49" /> - <file relUrl="Content/2011.1.315/Web20/sprite.png" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/WebBlue/sprite-vertical.png" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/Images/ui-bg_glass_50_99c2ff_1x400.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Views/Settings/UserProfileSection.cshtml" publishTime="04/20/2011 21:45:08" /> + <file relUrl="Content/Images/ui-icons_cd0a0a_256x240.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Scripts/Notification.js" publishTime="04/19/2011 18:44:12" /> <file relUrl="Content/2011.1.315/Windows7/imagebrowser.png" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Content/2011.1.315/Sitefinity/sprite.png" publishTime="03/30/2011 14:13:12" /> - <file relUrl="Views/Log/Index.aspx" publishTime="04/21/2011 11:13:12" /> - <file relUrl="Content/2011.1.315/Forest/sprite.png" publishTime="03/30/2011 14:13:11" /> + <file relUrl="Scripts/2011.1.315/telerik.slider.min.js" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Content/2011.1.315/Sitefinity/sprite-vertical.png" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Default/sprite.png" publishTime="03/30/2011 14:13:11" /> - <file relUrl="App_GlobalResources/EditorLocalization.uk-UA.resx" publishTime="04/04/2011 20:01:32" /> - <file relUrl="Content/2011.1.315/Windows7/slider-vs-right.gif" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Libraries/Ninject.Web.Mvc.dll" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/telerik.common.min.css" publishTime="03/30/2011 14:13:12" /> <file relUrl="Content/2011.1.315/Windows7/editor.png" publishTime="03/30/2011 14:13:12" /> </publishProfile> - <publishProfile publishUrl="C:\NzbDrone Deploy\NzbDrone.Web" deleteExistingFiles="False" ftpAnonymousLogin="False" ftpPassiveMode="True" msdeploySite="" msdeploySiteID="" msdeployRemoteSitePhysicalPath="" msdeployAllowUntrustedCertificate="False" msdeploySkipExtraFilesOnServer="True" msdeployMarkAsApp="False" profileName="Markus" publishMethod="FileSystem" replaceMatchingFiles="True" userName="" savePWD="False" userPWD="" SelectedForPublish="True"> - <file relUrl="Content/2011.1.315/Hay/editor.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Sitefinity/sprite.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="bin/NzbDrone.Core.pdb" publishTime="04/24/2011 15:36:13" /> - <file relUrl="Content/2011.1.315/Sitefinity/slider-v-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Windows7/slider-h-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Default/editor.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2010Black/slider-hs-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2007/sprite.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/Images/arrow.png" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Forest/editor.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Forest/slider-hs-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Black/treeview-nodes.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Outlook/slider-h-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Sunset/slider-h-top.gif" publishTime="03/28/2011 22:03:28" /> + <publishProfile publishUrl="Z:\NzbDrone\NzbDrone.Web" deleteExistingFiles="True" ftpAnonymousLogin="False" ftpPassiveMode="True" msdeploySite="" msdeploySiteID="" msdeployRemoteSitePhysicalPath="" msdeployAllowUntrustedCertificate="False" msdeploySkipExtraFilesOnServer="True" msdeployMarkAsApp="False" profileName="WHS" publishMethod="FileSystem" replaceMatchingFiles="False" userName="" savePWD="False" userPWD="" SelectedForPublish="True"> + <file relUrl="bin/NzbDrone.Core.pdb" publishTime="04/24/2011 12:09:27" /> + <file relUrl="Content/2011.1.315/Sitefinity/slider-v-both.gif" publishTime="03/29/2011 09:21:13" /> + <file relUrl="Content/2011.1.315/Default/editor.png" publishTime="03/29/2011 09:21:35" /> + <file relUrl="Content/2011.1.315/Office2010Black/slider-hs-top.gif" publishTime="03/29/2011 09:21:23" /> + <file relUrl="Content/2011.1.315/Office2007/sprite.png" publishTime="03/29/2011 09:21:25" /> + <file relUrl="Content/2011.1.315/Office2007/slider-vs-both.gif" publishTime="03/29/2011 09:21:25" /> + <file relUrl="Content/2011.1.315/Forest/slider-hs-bottom.gif" publishTime="03/29/2011 09:21:32" /> + <file relUrl="Content/2011.1.315/Black/treeview-nodes.png" publishTime="03/29/2011 09:21:36" /> + <file relUrl="Content/2011.1.315/Outlook/slider-h-bottom.gif" publishTime="03/29/2011 09:21:21" /> <file relUrl="bin/System.Web.WebPages.Razor.dll" publishTime="01/05/2011 14:45:38" /> - <file relUrl="Scripts/2011.1.315/telerik.splitter.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Scripts/jquery-ui.min.js" publishTime="04/04/2011 15:43:24" /> - <file relUrl="Content/2011.1.315/Hay/slider-h-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="bin/Telerik.Web.Mvc.dll" publishTime="03/30/2011 16:03:41" /> - <file relUrl="Content/2011.1.315/Office2007/editor.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/2011.1.315/telerik.grid.reordering.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Content/2011.1.315/Telerik/slider-v-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Simple/slider-hs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="bin/NLog.xml" publishTime="09/26/2010 18:12:50" /> - <file relUrl="Content/2011.1.315/Web20/slider-h-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Telerik/slider-v-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Outlook/treeview-nodes-rtl.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/telerik.outlook.min.css" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Hay/treeview-nodes.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Views/Upcoming/Index.cshtml" publishTime="04/20/2011 22:54:14" /> + <file relUrl="Scripts/2011.1.315/telerik.splitter.min.js" publishTime="03/29/2011 09:20:47" /> + <file relUrl="Scripts/jquery-ui.min.js" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Hay/slider-h-top.gif" publishTime="03/29/2011 09:21:28" /> + <file relUrl="bin/Telerik.Web.Mvc.dll" publishTime="04/04/2011 20:01:33" /> + <file relUrl="Content/2011.1.315/Office2007/editor.png" publishTime="03/29/2011 09:21:27" /> + <file relUrl="Scripts/2011.1.315/telerik.grid.grouping.min.js" publishTime="03/29/2011 09:20:49" /> + <file relUrl="Scripts/2011.1.315/telerik.grid.reordering.min.js" publishTime="03/29/2011 09:20:48" /> + <file relUrl="Content/2011.1.315/Telerik/slider-v-left.gif" publishTime="03/29/2011 09:21:02" /> + <file relUrl="Content/2011.1.315/Simple/slider-hs-both.gif" publishTime="03/29/2011 09:21:17" /> + <file relUrl="Content/2011.1.315/Web20/slider-h-top.gif" publishTime="03/29/2011 09:20:57" /> + <file relUrl="Content/2011.1.315/Telerik/slider-v-both.gif" publishTime="03/29/2011 09:21:02" /> + <file relUrl="Content/2011.1.315/Outlook/treeview-nodes-rtl.png" publishTime="03/29/2011 09:21:18" /> + <file relUrl="Content/2011.1.315/telerik.outlook.min.css" publishTime="03/29/2011 09:21:06" /> + <file relUrl="Content/2011.1.315/telerik.webblue.min.css" publishTime="03/29/2011 09:21:04" /> + <file relUrl="Views/Upcoming/Index.cshtml" publishTime="04/21/2011 19:24:13" /> <file relUrl="bin/System.Web.Razor.xml" publishTime="12/20/2010 09:52:36" /> - <file relUrl="Content/Images/ui-bg_glass_100_f0f0f0_1x400.png" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Black/slider-vs-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Web20/slider-hs-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="log.config" publishTime="04/24/2011 14:17:19" /> + <file relUrl="bin/System.Web.Mvc.xml" publishTime="01/04/2011 14:29:22" /> + <file relUrl="Content/2011.1.315/Black/slider-vs-left.gif" publishTime="03/29/2011 09:21:36" /> + <file relUrl="Content/2011.1.315/Web20/slider-hs-bottom.gif" publishTime="03/29/2011 09:20:57" /> + <file relUrl="Scripts/2011.1.315/telerik.datepicker.min.js" publishTime="03/29/2011 09:20:49" /> + <file relUrl="Content/2011.1.315/WebBlue/slider-h-bottom.gif" publishTime="03/29/2011 09:20:55" /> + <file relUrl="log.config" publishTime="04/23/2011 19:56:59" /> <file relUrl="bin/System.Web.Helpers.dll" publishTime="01/05/2011 14:45:38" /> - <file relUrl="Content/2011.1.315/Office2010Black/treeview-nodes-rtl.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Sitefinity/slider-h-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/telerik.default.min.css" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Black/slider-h-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/telerik.office2010black.min.css" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/telerik.telerik.min.css" publishTime="03/28/2011 22:03:28" /> - <file relUrl="App_GlobalResources/EditorLocalization.pl-PL.resx" publishTime="03/30/2011 16:03:37" /> - <file relUrl="Content/Images/ui-bg_diagonals-small_0_aaaaaa_40x40.png" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Scripts/2011.1.315/telerik.calendar.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Content/2011.1.315/Sitefinity/treeview-nodes-rtl.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Forest/loading.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/2011.1.315/telerik.upload.min.js" publishTime="03/28/2011 22:03:29" /> + <file relUrl="Content/2011.1.315/Office2010Black/treeview-nodes-rtl.png" publishTime="03/29/2011 09:21:21" /> + <file relUrl="Scripts/jquery.validate.unobtrusive.js" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/telerik.default.min.css" publishTime="03/29/2011 09:21:08" /> + <file relUrl="Content/2011.1.315/telerik.office2010black.min.css" publishTime="03/29/2011 09:21:07" /> + <file relUrl="Content/2011.1.315/telerik.telerik.min.css" publishTime="03/29/2011 09:21:05" /> + <file relUrl="App_GlobalResources/EditorLocalization.pl-PL.resx" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Simple/treeview-nodes-rtl.png" publishTime="03/29/2011 09:21:15" /> + <file relUrl="Scripts/2011.1.315/telerik.calendar.min.js" publishTime="03/29/2011 09:20:50" /> + <file relUrl="Content/2011.1.315/Sitefinity/treeview-nodes-rtl.png" publishTime="03/29/2011 09:21:12" /> + <file relUrl="Views/Series/SeriesSearchResults.cshtml" publishTime="04/21/2011 19:24:13" /> + <file relUrl="Content/2011.1.315/Forest/loading.gif" publishTime="03/29/2011 09:21:32" /> + <file relUrl="Scripts/2011.1.315/telerik.upload.min.js" publishTime="03/29/2011 09:20:44" /> <file relUrl="bin/System.Web.Razor.dll" publishTime="01/05/2011 14:45:38" /> - <file relUrl="Content/2011.1.315/Forest/slider-h-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/Images/ui-bg_glass_55_fbf5d0_1x400.png" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Sitefinity/slider-hs-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/Images/ui-icons_72a7cf_256x240.png" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Vista/loading.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/Images/ui-icons_888888_256x240.png" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Outlook/slider-hs-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="App_GlobalResources/GridLocalization.bg-BG.resx" publishTime="03/30/2011 16:03:37" /> - <file relUrl="Content/2011.1.315/Outlook/slider-h-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Sunset/loading.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Hay/slider-h-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2007/slider-v-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/MicrosoftAjax.debug.js" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Forest/slider-v-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/2011.1.315/telerik.editor.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Content/2011.1.315/telerik.simple.min.css" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Sunset/treeview-nodes.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Default/slider-vs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Black/imagebrowser.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Vista/slider-hs-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Telerik/slider-hs-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="App_GlobalResources/EditorLocalization.uk-UA.resx" publishTime="03/30/2011 16:03:37" /> - <file relUrl="Content/2011.1.315/Sitefinity/slider-hs-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Sitefinity/slider-v-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="App_GlobalResources/GridLocalization.de-DE.resx" publishTime="03/30/2011 16:03:37" /> - <file relUrl="Content/2011.1.315/telerik.sunset.min.css" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2007/slider-hs-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/2011.1.315/telerik.datetimepicker.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Content/2011.1.315/Sunset/slider-hs-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/MicrosoftMvcAjax.js" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Office2007/sprite-vertical.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2010Black/slider-h-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Simple/slider-h-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Forest/treeview-nodes.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="App_GlobalResources/EditorLocalization.pt-BR.resx" publishTime="03/30/2011 16:03:37" /> - <file relUrl="Content/2011.1.315/Telerik/sprite.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Simple/editor.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Hay/slider-vs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Black/slider-v-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Simple/treeview-nodes.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Web20/slider-v-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/Images/ui-icons_222222_256x240.png" publishTime="03/07/2011 20:48:08" /> - <file relUrl="bin/Ninject.Web.Mvc.dll" publishTime="03/30/2011 16:03:38" /> - <file relUrl="Content/2011.1.315/Telerik/sprite-vertical.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Views/Shared/Footer.cshtml" publishTime="04/20/2011 19:27:02" /> - <file relUrl="Content/2011.1.315/Default/slider-vs-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Views/Shared/SiteLayout.cshtml" publishTime="04/24/2011 14:17:19" /> - <file relUrl="Content/2011.1.315/Forest/treeview-line.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Libraries/Ninject.Web.Mvc.xml" publishTime="03/30/2011 16:03:38" /> - <file relUrl="Content/2011.1.315/Simple/sprite-vertical.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Views/AddSeries/AddSeriesItem.cshtml" publishTime="04/24/2011 19:23:34" /> - <file relUrl="Content/2011.1.315/Web20/treeview-line.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/WebBlue/slider-h-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Sitefinity/slider-vs-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="App_GlobalResources/GridLocalization.pt-BR.resx" publishTime="03/30/2011 16:03:37" /> - <file relUrl="Views/System/Indexers.cshtml" publishTime="04/22/2011 09:45:42" /> - <file relUrl="Scripts/jquery.validate-vsdoc.js" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/telerik.rtl.min.css" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/Images/img03.jpg" publishTime="03/30/2011 18:55:19" /> - <file relUrl="Content/2011.1.315/telerik.common.min.css" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Sitefinity/treeview-line.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Telerik/editor.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Default/slider-v-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/Images/img02.jpg" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/WebBlue/slider-v-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="bin/Castle.Core.dll" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Default/slider-hs-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/telerik.black.min.css" publishTime="03/28/2011 22:03:28" /> - <file relUrl="App_GlobalResources/EditorLocalization.de-DE.resx" publishTime="03/30/2011 16:03:37" /> - <file relUrl="Content/2011.1.315/Default/slider-v-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Forest/slider-hs-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Windows7/slider-vs-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2010Black/sprite-vertical.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/MicrosoftMvcValidation.debug.js" publishTime="04/04/2011 15:43:24" /> - <file relUrl="Content/2011.1.315/Sitefinity/treeview-nodes.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Vista/sprite-vertical.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/MicrosoftMvcAjax.debug.js" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Outlook/loading.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2007/slider-v-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Default/slider-h-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Telerik/loading.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/jquery.validate.unobtrusive.min.js" publishTime="04/04/2011 15:43:24" /> - <file relUrl="bin/Ninject.xml" publishTime="03/30/2011 16:03:38" /> - <file relUrl="Content/2011.1.315/Hay/slider-v-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Black/slider-h-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/jquery-1.5.2.min.js" publishTime="04/19/2011 20:00:50" /> - <file relUrl="Content/2011.1.315/Hay/sprite-vertical.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Windows7/slider-h-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/telerik.forest.min.css" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2010Black/slider-vs-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Web20/editor.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Vista/slider-h-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Vista/slider-v-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Sitefinity/slider-h-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Simple/slider-v-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="bin/System.Web.Mvc.xml" publishTime="01/04/2011 14:29:22" /> - <file relUrl="Content/2011.1.315/Telerik/slider-h-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="App_GlobalResources/UploadLocalization.bg-BG.resx" publishTime="03/30/2011 16:03:37" /> - <file relUrl="bin/TvdbLib.dll" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Forest/sprite-vertical.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Sunset/slider-v-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Sunset/sprite.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2010Black/slider-hs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Black/slider-vs-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Sitefinity/slider-h-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="bin/NzbDrone.Core.dll" publishTime="04/24/2011 15:36:13" /> - <file relUrl="Content/2011.1.315/Office2007/slider-vs-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Sunset/imagebrowser.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Outlook/treeview-line.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="bin/System.Data.SQLite.xml" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Hay/slider-hs-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="bin/SubSonic.Core.xml" publishTime="03/30/2011 16:03:37" /> - <file relUrl="Views/Shared/Error.cshtml" publishTime="04/21/2011 00:13:28" /> - <file relUrl="Content/2011.1.315/Vista/slider-v-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/jquery-ui-1.8.8.min.js" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/telerik.sitefinity.min.css" publishTime="04/20/2011 22:30:23" /> - <file relUrl="Content/2011.1.315/Forest/treeview-nodes-rtl.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Telerik/slider-vs-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="App_GlobalResources/EditorLocalization.bg-BG.resx" publishTime="03/30/2011 16:03:37" /> - <file relUrl="Content/2011.1.315/Office2007/imagebrowser.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/2011.1.315/telerik.grid.grouping.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Views/Settings/SubMenu.cshtml" publishTime="04/20/2011 20:46:05" /> - <file relUrl="Content/2011.1.315/Office2010Black/sprite.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Telerik/treeview-nodes.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/jquery-1.5.2.js" publishTime="04/19/2011 20:00:50" /> - <file relUrl="Content/2011.1.315/Office2007/treeview-nodes.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="App_GlobalResources/GridLocalization.ru-RU.resx" publishTime="03/30/2011 16:03:37" /> - <file relUrl="Content/2011.1.315/WebBlue/sprite.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Telerik/slider-h-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Views/Series/SeriesSearchResults.cshtml" publishTime="04/21/2011 00:09:20" /> - <file relUrl="Content/Images/ui-icons_ffffff_256x240.png" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Forest/imagebrowser.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Global.asax" publishTime="03/07/2011 20:48:08" /> - <file relUrl="bin/Exceptioneer.WindowsFormsClient.dll" publishTime="04/07/2011 16:57:05" /> - <file relUrl="Scripts/2011.1.315/telerik.tabstrip.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Content/2011.1.315/WebBlue/imagebrowser.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Windows7/slider-hs-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2010Black/slider-v-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Sunset/slider-vs-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Simple/slider-hs-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="App_GlobalResources/EditorLocalization.ru-RU.resx" publishTime="03/30/2011 16:03:37" /> - <file relUrl="Content/2011.1.315/Windows7/slider-v-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Views/Web.config" publishTime="04/04/2011 15:43:24" /> - <file relUrl="Scripts/2011.1.315/telerik.combobox.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Content/2011.1.315/Telerik/slider-h-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Forest/slider-vs-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Simple/slider-v-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Forest/slider-vs-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Hay/sprite.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/Images/img01.jpg" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/Images/ui-bg_glass_80_e6e6e6_1x400.png" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Web20/slider-hs-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Outlook/slider-vs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2007/treeview-line.png" publishTime="03/28/2011 22:03:28" /> + <file relUrl="Content/2011.1.315/Forest/slider-h-both.gif" publishTime="03/29/2011 09:21:32" /> + <file relUrl="Content/Images/ui-bg_glass_55_fbf5d0_1x400.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Content/2011.1.315/Sitefinity/slider-hs-top.gif" publishTime="03/29/2011 09:21:14" /> + <file relUrl="App_GlobalResources/GridLocalization.en-US.resx" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Vista/loading.gif" publishTime="03/29/2011 09:21:00" /> + <file relUrl="Content/Images/ui-icons_888888_256x240.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Scripts/2011.1.315/telerik.panelbar.min.js" publishTime="03/29/2011 09:20:47" /> + <file relUrl="Content/2011.1.315/Outlook/slider-hs-bottom.gif" publishTime="03/29/2011 09:21:20" /> + <file relUrl="App_GlobalResources/GridLocalization.bg-BG.resx" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Outlook/slider-h-both.gif" publishTime="03/29/2011 09:21:21" /> + <file relUrl="Content/2011.1.315/Sunset/loading.gif" publishTime="03/29/2011 09:21:11" /> + <file relUrl="Content/2011.1.315/Hay/slider-h-both.gif" publishTime="03/29/2011 09:21:29" /> + <file relUrl="Content/2011.1.315/Office2007/slider-v-left.gif" publishTime="03/29/2011 09:21:25" /> + <file relUrl="Scripts/MicrosoftAjax.debug.js" publishTime="10/13/2010 18:58:26" /> + <file relUrl="Content/2011.1.315/Forest/slider-v-right.gif" publishTime="03/29/2011 09:21:31" /> + <file relUrl="Scripts/2011.1.315/telerik.editor.min.js" publishTime="03/29/2011 09:20:49" /> + <file relUrl="Content/2011.1.315/telerik.simple.min.css" publishTime="03/29/2011 09:21:06" /> + <file relUrl="Content/2011.1.315/Sunset/treeview-nodes.png" publishTime="03/29/2011 09:21:09" /> + <file relUrl="Content/2011.1.315/Default/slider-vs-both.gif" publishTime="03/29/2011 09:21:34" /> + <file relUrl="Content/2011.1.315/Black/imagebrowser.png" publishTime="03/29/2011 09:21:38" /> + <file relUrl="Content/2011.1.315/Web20/slider-h-both.gif" publishTime="03/29/2011 09:20:58" /> + <file relUrl="Content/2011.1.315/Vista/slider-hs-bottom.gif" publishTime="03/29/2011 09:21:00" /> + <file relUrl="Content/2011.1.315/Telerik/slider-hs-top.gif" publishTime="03/29/2011 09:21:02" /> + <file relUrl="Content/2011.1.315/Sitefinity/slider-hs-bottom.gif" publishTime="03/29/2011 09:21:14" /> + <file relUrl="Content/2011.1.315/Sitefinity/slider-v-right.gif" publishTime="03/29/2011 09:21:13" /> + <file relUrl="Content/2011.1.315/telerik.sunset.min.css" publishTime="03/29/2011 09:21:05" /> + <file relUrl="Content/2011.1.315/Office2007/slider-hs-top.gif" publishTime="03/29/2011 09:21:26" /> + <file relUrl="Scripts/2011.1.315/telerik.datetimepicker.min.js" publishTime="03/29/2011 09:20:49" /> + <file relUrl="Content/2011.1.315/Web20/loading.gif" publishTime="03/29/2011 09:20:58" /> + <file relUrl="Content/2011.1.315/Sunset/slider-hs-top.gif" publishTime="03/29/2011 09:21:11" /> + <file relUrl="Scripts/MicrosoftMvcAjax.js" publishTime="04/01/2011 16:29:15" /> + <file relUrl="Content/2011.1.315/Office2007/sprite-vertical.png" publishTime="03/29/2011 09:21:25" /> + <file relUrl="Content/2011.1.315/Office2010Black/slider-h-bottom.gif" publishTime="03/29/2011 09:21:23" /> + <file relUrl="Content/2011.1.315/Forest/treeview-nodes.png" publishTime="03/29/2011 09:21:30" /> + <file relUrl="App_GlobalResources/EditorLocalization.pt-BR.resx" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/telerik.vista.min.css" publishTime="03/29/2011 09:21:05" /> + <file relUrl="Content/2011.1.315/Simple/editor.png" publishTime="03/29/2011 09:21:18" /> + <file relUrl="Content/2011.1.315/Black/slider-v-left.gif" publishTime="03/29/2011 09:21:37" /> + <file relUrl="Content/2011.1.315/Simple/treeview-nodes.png" publishTime="03/29/2011 09:21:15" /> + <file relUrl="Scripts/2011.1.315/telerik.window.min.js" publishTime="03/29/2011 09:20:43" /> + <file relUrl="Content/2011.1.315/Web20/slider-v-right.gif" publishTime="03/29/2011 09:20:57" /> + <file relUrl="Content/Images/ui-icons_222222_256x240.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="bin/Ninject.Web.Mvc.dll" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Telerik/sprite-vertical.png" publishTime="03/29/2011 09:21:01" /> + <file relUrl="Views/Shared/Footer.cshtml" publishTime="04/20/2011 21:45:08" /> + <file relUrl="Content/2011.1.315/Default/slider-vs-left.gif" publishTime="03/29/2011 09:21:33" /> + <file relUrl="Views/Shared/SiteLayout.cshtml" publishTime="04/23/2011 21:15:07" /> + <file relUrl="Content/2011.1.315/Forest/treeview-line.png" publishTime="03/29/2011 09:21:30" /> + <file relUrl="Libraries/Ninject.Web.Mvc.xml" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Simple/sprite-vertical.png" publishTime="03/29/2011 09:21:15" /> + <file relUrl="Content/2011.1.315/Sitefinity/slider-h-top.gif" publishTime="03/29/2011 09:21:13" /> + <file relUrl="Content/2011.1.315/WebBlue/slider-h-both.gif" publishTime="03/29/2011 09:20:55" /> + <file relUrl="Content/2011.1.315/Sitefinity/slider-vs-right.gif" publishTime="03/29/2011 09:21:13" /> + <file relUrl="App_GlobalResources/GridLocalization.pt-BR.resx" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Black/slider-hs-both.gif" publishTime="03/29/2011 09:21:37" /> + <file relUrl="Scripts/jquery.validate-vsdoc.js" publishTime="10/13/2010 18:58:26" /> + <file relUrl="Content/2011.1.315/telerik.rtl.min.css" publishTime="03/29/2011 09:21:06" /> + <file relUrl="Content/2011.1.315/Vista/sprite.png" publishTime="03/29/2011 09:20:59" /> + <file relUrl="Content/2011.1.315/Sitefinity/treeview-line.png" publishTime="03/29/2011 09:21:12" /> + <file relUrl="Content/2011.1.315/Telerik/editor.png" publishTime="03/29/2011 09:21:03" /> + <file relUrl="Content/2011.1.315/Default/slider-v-right.gif" publishTime="03/29/2011 09:21:34" /> + <file relUrl="Content/Images/img02.jpg" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Content/2011.1.315/WebBlue/slider-v-left.gif" publishTime="03/29/2011 09:20:54" /> + <file relUrl="bin/Castle.Core.dll" publishTime="03/29/2011 11:47:35" /> + <file relUrl="Content/2011.1.315/Default/slider-hs-top.gif" publishTime="03/29/2011 09:21:34" /> + <file relUrl="Content/2011.1.315/telerik.black.min.css" publishTime="03/29/2011 09:21:09" /> + <file relUrl="Content/2011.1.315/Hay/slider-h-bottom.gif" publishTime="03/29/2011 09:21:29" /> + <file relUrl="Content/2011.1.315/Forest/slider-hs-top.gif" publishTime="03/29/2011 09:21:31" /> + <file relUrl="Content/2011.1.315/Windows7/slider-vs-left.gif" publishTime="03/29/2011 09:20:51" /> + <file relUrl="Content/2011.1.315/Office2010Black/sprite-vertical.png" publishTime="03/29/2011 09:21:22" /> + <file relUrl="Content/2011.1.315/Sitefinity/treeview-nodes.png" publishTime="03/29/2011 09:21:12" /> + <file relUrl="Content/2011.1.315/Vista/sprite-vertical.png" publishTime="03/29/2011 09:20:58" /> + <file relUrl="Scripts/MicrosoftMvcAjax.debug.js" publishTime="10/13/2010 18:58:26" /> + <file relUrl="Content/2011.1.315/Outlook/loading.gif" publishTime="03/29/2011 09:21:21" /> + <file relUrl="Content/2011.1.315/Office2007/slider-v-both.gif" publishTime="03/29/2011 09:21:25" /> + <file relUrl="Content/2011.1.315/Default/slider-h-both.gif" publishTime="03/29/2011 09:21:35" /> + <file relUrl="Content/2011.1.315/Telerik/loading.gif" publishTime="03/29/2011 09:21:03" /> + <file relUrl="Scripts/jquery.validate.unobtrusive.min.js" publishTime="04/04/2011 20:01:32" /> + <file relUrl="bin/Ninject.xml" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Hay/slider-v-right.gif" publishTime="03/29/2011 09:21:28" /> + <file relUrl="Content/2011.1.315/Black/slider-h-bottom.gif" publishTime="03/29/2011 09:21:38" /> + <file relUrl="Scripts/jquery-1.5.2.min.js" publishTime="04/19/2011 22:01:59" /> + <file relUrl="Content/2011.1.315/Hay/sprite.png" publishTime="03/29/2011 09:21:28" /> + <file relUrl="Content/2011.1.315/Windows7/slider-h-top.gif" publishTime="03/29/2011 09:20:52" /> + <file relUrl="Content/2011.1.315/telerik.forest.min.css" publishTime="03/29/2011 09:21:08" /> + <file relUrl="Views/Settings/Index.cshtml" publishTime="04/20/2011 21:45:08" /> + <file relUrl="Content/2011.1.315/Office2010Black/slider-vs-left.gif" publishTime="03/29/2011 09:21:22" /> + <file relUrl="Content/2011.1.315/Default/loading.gif" publishTime="03/29/2011 09:21:35" /> + <file relUrl="Content/2011.1.315/Web20/editor.png" publishTime="03/29/2011 09:20:58" /> + <file relUrl="Content/2011.1.315/Vista/slider-v-both.gif" publishTime="03/29/2011 09:20:59" /> + <file relUrl="Content/2011.1.315/Vista/slider-h-bottom.gif" publishTime="03/29/2011 09:21:00" /> + <file relUrl="Content/2011.1.315/Black/slider-h-top.gif" publishTime="03/29/2011 09:21:37" /> + <file relUrl="Content/2011.1.315/Sitefinity/slider-h-bottom.gif" publishTime="03/29/2011 09:21:14" /> + <file relUrl="Content/2011.1.315/Simple/slider-v-right.gif" publishTime="03/29/2011 09:21:16" /> + <file relUrl="Content/2011.1.315/Telerik/slider-h-both.gif" publishTime="03/29/2011 09:21:03" /> + <file relUrl="App_GlobalResources/UploadLocalization.bg-BG.resx" publishTime="04/04/2011 20:01:32" /> + <file relUrl="bin/TvdbLib.dll" publishTime="10/17/2010 10:22:33" /> + <file relUrl="Content/2011.1.315/Forest/sprite-vertical.png" publishTime="03/29/2011 09:21:30" /> + <file relUrl="Scripts/2011.1.315/telerik.slider.min.js" publishTime="03/29/2011 09:20:47" /> + <file relUrl="Content/2011.1.315/Sunset/slider-v-both.gif" publishTime="03/29/2011 09:21:10" /> + <file relUrl="Content/2011.1.315/Sunset/sprite.png" publishTime="03/29/2011 09:21:10" /> + <file relUrl="bin/NzbDrone.Core.dll" publishTime="04/24/2011 12:09:27" /> + <file relUrl="Content/2011.1.315/Office2007/slider-vs-left.gif" publishTime="03/29/2011 09:21:25" /> + <file relUrl="Content/2011.1.315/Sunset/imagebrowser.png" publishTime="03/29/2011 09:21:11" /> + <file relUrl="Content/2011.1.315/Outlook/treeview-line.png" publishTime="03/29/2011 09:21:18" /> + <file relUrl="bin/System.Data.SQLite.xml" publishTime="04/05/2011 19:20:42" /> + <file relUrl="Content/2011.1.315/Hay/slider-hs-top.gif" publishTime="03/29/2011 09:21:29" /> + <file relUrl="Content/2011.1.315/Simple/imagebrowser.png" publishTime="03/29/2011 09:21:18" /> + <file relUrl="Views/Shared/Error.cshtml" publishTime="04/21/2011 19:24:13" /> + <file relUrl="Content/2011.1.315/Vista/slider-v-left.gif" publishTime="03/29/2011 09:20:59" /> + <file relUrl="Scripts/jquery-ui-1.8.8.min.js" publishTime="01/31/2011 14:26:36" /> + <file relUrl="Content/2011.1.315/telerik.sitefinity.min.css" publishTime="03/29/2011 09:21:05" /> + <file relUrl="Content/2011.1.315/Forest/treeview-nodes-rtl.png" publishTime="03/29/2011 09:21:30" /> + <file relUrl="Content/2011.1.315/Telerik/slider-vs-right.gif" publishTime="03/29/2011 09:21:01" /> + <file relUrl="App_GlobalResources/EditorLocalization.bg-BG.resx" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Office2007/imagebrowser.png" publishTime="03/29/2011 09:21:27" /> + <file relUrl="Scripts/jquery-1.5.2.js" publishTime="04/19/2011 22:01:59" /> + <file relUrl="Views/Log/index.cshtml" publishTime="04/23/2011 12:47:21" /> + <file relUrl="Views/Series/Details.cshtml" publishTime="04/23/2011 21:32:08" /> + <file relUrl="Views/Settings/SubMenu.cshtml" publishTime="04/20/2011 21:45:08" /> + <file relUrl="Content/2011.1.315/Office2010Black/sprite.png" publishTime="03/29/2011 09:21:22" /> + <file relUrl="Content/2011.1.315/Telerik/treeview-nodes.png" publishTime="03/29/2011 09:21:01" /> + <file relUrl="Content/2011.1.315/WebBlue/slider-v-both.gif" publishTime="03/29/2011 09:20:54" /> + <file relUrl="Content/2011.1.315/Office2007/treeview-nodes.png" publishTime="03/29/2011 09:21:24" /> + <file relUrl="Content/2011.1.315/Hay/treeview-nodes.png" publishTime="03/29/2011 09:21:27" /> + <file relUrl="Content/2011.1.315/WebBlue/sprite.png" publishTime="03/29/2011 09:20:53" /> + <file relUrl="Content/2011.1.315/Telerik/slider-h-bottom.gif" publishTime="03/29/2011 09:21:03" /> + <file relUrl="Content/Images/arrow.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Content/Images/ui-icons_ffffff_256x240.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Content/2011.1.315/Forest/imagebrowser.png" publishTime="03/29/2011 09:21:32" /> + <file relUrl="Content/Images/img03.jpg" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Global.asax" publishTime="10/13/2010 21:51:27" /> + <file relUrl="bin/Exceptioneer.WindowsFormsClient.dll" publishTime="04/04/2011 20:19:06" /> + <file relUrl="Scripts/Notification.js" publishTime="04/23/2011 22:45:49" /> + <file relUrl="Content/2011.1.315/WebBlue/imagebrowser.png" publishTime="03/29/2011 09:20:56" /> + <file relUrl="Content/2011.1.315/Windows7/slider-hs-bottom.gif" publishTime="03/29/2011 09:20:52" /> + <file relUrl="Content/2011.1.315/Office2010Black/slider-v-right.gif" publishTime="03/29/2011 09:21:22" /> + <file relUrl="Content/2011.1.315/Sunset/slider-vs-left.gif" publishTime="03/29/2011 09:21:10" /> + <file relUrl="Content/2011.1.315/Simple/slider-hs-bottom.gif" publishTime="03/29/2011 09:21:17" /> + <file relUrl="App_GlobalResources/EditorLocalization.ru-RU.resx" publishTime="04/04/2011 20:01:32" /> + <file relUrl="bin/Microsoft.Web.Infrastructure.dll" publishTime="01/05/2011 14:45:38" /> + <file relUrl="Views/Web.config" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Sitefinity/sprite-vertical.png" publishTime="03/29/2011 09:21:12" /> + <file relUrl="Scripts/2011.1.315/telerik.combobox.min.js" publishTime="03/29/2011 09:20:50" /> + <file relUrl="Content/2011.1.315/Telerik/slider-h-top.gif" publishTime="03/29/2011 09:21:02" /> + <file relUrl="Content/2011.1.315/Forest/slider-vs-left.gif" publishTime="03/29/2011 09:21:31" /> + <file relUrl="Content/2011.1.315/Simple/slider-v-left.gif" publishTime="03/29/2011 09:21:16" /> + <file relUrl="Content/2011.1.315/Forest/slider-vs-right.gif" publishTime="03/29/2011 09:21:30" /> + <file relUrl="Content/Images/img01.jpg" publishTime="03/28/2011 21:50:45" /> + <file relUrl="App_GlobalResources/EditorLocalization.de-DE.resx" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Windows7/slider-v-left.gif" publishTime="03/29/2011 09:20:52" /> + <file relUrl="Content/2011.1.315/Web20/slider-hs-top.gif" publishTime="03/29/2011 09:20:57" /> + <file relUrl="Content/2011.1.315/Outlook/slider-vs-both.gif" publishTime="03/29/2011 09:21:19" /> + <file relUrl="Content/2011.1.315/Office2007/treeview-line.png" publishTime="03/29/2011 09:21:24" /> <file relUrl="bin/System.Web.WebPages.Razor.xml" publishTime="12/20/2010 09:52:36" /> - <file relUrl="bin/NzbDrone.Web.dll" publishTime="04/24/2011 19:32:25" /> - <file relUrl="Content/Images/ui-bg_glass_50_99c2ff_1x400.png" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Sunset/treeview-line.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Default/imagebrowser.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Views/Settings/Indexers.cshtml" publishTime="04/19/2011 17:47:33" /> - <file relUrl="Content/2011.1.315/Simple/treeview-nodes-rtl.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Black/sprite-vertical.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/2011.1.315/telerik.datepicker.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Content/2011.1.315/Office2010Black/treeview-nodes.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Default/treeview-line.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Vista/slider-vs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Default/treeview-nodes-rtl.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/Images/ui-bg_glass_95_fef1ec_1x400.png" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Forest/slider-v-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Telerik/imagebrowser.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/jquery-1.5.2-vsdoc.js" publishTime="04/19/2011 20:00:50" /> - <file relUrl="Content/2011.1.315/Black/treeview-nodes-rtl.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Sunset/slider-v-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/telerik.web20.min.css" publishTime="03/28/2011 22:03:28" /> - <file relUrl="App_GlobalResources/GridLocalization.uk-UA.resx" publishTime="03/30/2011 16:03:37" /> - <file relUrl="Content/2011.1.315/Forest/sprite.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Simple/slider-h-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Outlook/slider-vs-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="bin/NLog.dll" publishTime="09/26/2010 18:12:50" /> - <file relUrl="Scripts/2011.1.315/telerik.grid.filtering.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Content/2011.1.315/Web20/sprite-vertical.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Simple/treeview-line.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Default/sprite-vertical.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Sitefinity/slider-vs-both.gif" publishTime="03/28/2011 22:03:28" /> + <file relUrl="bin/NzbDrone.Web.dll" publishTime="04/24/2011 12:09:29" /> + <file relUrl="Content/2011.1.315/Sunset/treeview-line.png" publishTime="03/29/2011 09:21:09" /> + <file relUrl="Views/Settings/Notifications.cshtml" publishTime="04/20/2011 21:45:08" /> + <file relUrl="Content/2011.1.315/Default/imagebrowser.png" publishTime="03/29/2011 09:21:35" /> + <file relUrl="Views/Settings/Indexers.cshtml" publishTime="04/19/2011 18:46:30" /> + <file relUrl="Scripts/2011.1.315/telerik.treeview.min.js" publishTime="03/29/2011 09:20:44" /> + <file relUrl="Content/2011.1.315/Black/sprite-vertical.png" publishTime="03/29/2011 09:21:36" /> + <file relUrl="Content/Images/spin.gif" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Content/2011.1.315/Office2010Black/treeview-nodes.png" publishTime="03/29/2011 09:21:22" /> + <file relUrl="Content/2011.1.315/Default/treeview-line.png" publishTime="03/29/2011 09:21:33" /> + <file relUrl="Content/2011.1.315/Vista/slider-vs-both.gif" publishTime="03/29/2011 09:20:59" /> + <file relUrl="Content/2011.1.315/Default/treeview-nodes-rtl.png" publishTime="03/29/2011 09:21:33" /> + <file relUrl="Content/Images/ui-bg_glass_95_fef1ec_1x400.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Content/2011.1.315/Forest/slider-v-left.gif" publishTime="03/29/2011 09:21:31" /> + <file relUrl="Content/2011.1.315/Telerik/imagebrowser.png" publishTime="03/29/2011 09:21:03" /> + <file relUrl="Scripts/jquery-1.5.2-vsdoc.js" publishTime="04/19/2011 22:01:59" /> + <file relUrl="Content/2011.1.315/Black/treeview-nodes-rtl.png" publishTime="03/29/2011 09:21:36" /> + <file relUrl="Content/2011.1.315/Sunset/slider-v-left.gif" publishTime="03/29/2011 09:21:10" /> + <file relUrl="Content/2011.1.315/telerik.web20.min.css" publishTime="03/29/2011 09:21:04" /> + <file relUrl="App_GlobalResources/GridLocalization.uk-UA.resx" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Simple/slider-h-top.gif" publishTime="03/29/2011 09:21:17" /> + <file relUrl="Content/2011.1.315/Outlook/slider-vs-right.gif" publishTime="03/29/2011 09:21:19" /> + <file relUrl="bin/NLog.dll" publishTime="10/13/2010 18:58:25" /> + <file relUrl="Scripts/2011.1.315/telerik.grid.filtering.min.js" publishTime="03/29/2011 09:20:49" /> + <file relUrl="Content/2011.1.315/Web20/sprite-vertical.png" publishTime="03/29/2011 09:20:56" /> + <file relUrl="Content/Images/ui-bg_diagonals-thick_15_444444_40x40.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Content/2011.1.315/Simple/treeview-line.png" publishTime="03/29/2011 09:21:15" /> + <file relUrl="Content/2011.1.315/Default/sprite-vertical.png" publishTime="03/29/2011 09:21:33" /> + <file relUrl="Content/2011.1.315/Sitefinity/slider-vs-both.gif" publishTime="03/29/2011 09:21:13" /> <file relUrl="bin/System.Web.WebPages.Deployment.dll" publishTime="01/05/2011 14:45:38" /> - <file relUrl="Scripts/jquery.form.js" publishTime="03/07/2011 20:48:08" /> - <file relUrl="bin/Ninject.Web.Mvc.xml" publishTime="03/30/2011 16:03:38" /> - <file relUrl="Content/2011.1.315/Simple/slider-v-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/2011.1.315/telerik.grid.editing.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Content/2011.1.315/Black/slider-hs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/jquery.unobtrusive-ajax.min.js" publishTime="04/04/2011 15:43:24" /> - <file relUrl="Scripts/2011.1.315/telerik.timepicker.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Content/2011.1.315/Outlook/slider-h-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Telerik/slider-vs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Hay/imagebrowser.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Hay/treeview-line.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Vista/sprite.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/WebBlue/slider-h-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/WebBlue/slider-h-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Views/Log/index.cshtml" publishTime="04/22/2011 09:45:42" /> - <file relUrl="Content/2011.1.315/Outlook/treeview-nodes.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2007/treeview-nodes-rtl.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Views/Settings/RootDir.cshtml" publishTime="04/21/2011 12:27:13" /> - <file relUrl="Views/Settings/Downloads.cshtml" publishTime="04/20/2011 16:58:15" /> - <file relUrl="Content/2011.1.315/Sitefinity/slider-hs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2007/slider-h-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/XbmcNotification.png" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Default/loading.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/jquery-ui-1.8.8.custom.css" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/style.css" publishTime="04/20/2011 22:33:13" /> - <file relUrl="Views/Settings/General.cshtml" publishTime="04/20/2011 17:10:28" /> - <file relUrl="bin/NzbDrone.Web.pdb" publishTime="04/24/2011 19:32:25" /> - <file relUrl="Content/2011.1.315/Sunset/sprite-vertical.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Default/slider-hs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2007/slider-hs-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2007/loading.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/2011.1.315/telerik.window.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Content/2011.1.315/Default/slider-h-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/WebBlue/slider-hs-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Web20/slider-hs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Vista/slider-h-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Telerik/slider-v-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Outlook/imagebrowser.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Views/Settings/Quality.cshtml" publishTime="04/24/2011 15:59:30" /> - <file relUrl="Content/jquery-simpledropdown.css" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Scripts/2011.1.315/telerik.menu.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Content/2011.1.315/Outlook/sprite.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Default/treeview-nodes.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Sunset/treeview-nodes-rtl.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Web20/loading.gif" publishTime="03/28/2011 22:03:28" /> + <file relUrl="Scripts/jquery.form.js" publishTime="01/31/2011 14:26:36" /> + <file relUrl="bin/Ninject.Web.Mvc.xml" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Scripts/2011.1.315/telerik.timepicker.min.js" publishTime="03/29/2011 09:20:45" /> + <file relUrl="Content/2011.1.315/Simple/slider-v-both.gif" publishTime="03/29/2011 09:21:16" /> + <file relUrl="Views/Settings/UserProfileSection.cshtml" publishTime="04/21/2011 19:24:13" /> + <file relUrl="Scripts/2011.1.315/telerik.grid.editing.min.js" publishTime="03/29/2011 09:20:49" /> + <file relUrl="Scripts/jquery.unobtrusive-ajax.min.js" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/Images/ui-bg_diagonals-small_0_aaaaaa_40x40.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Content/2011.1.315/Telerik/slider-vs-both.gif" publishTime="03/29/2011 09:21:02" /> + <file relUrl="Content/2011.1.315/Hay/imagebrowser.png" publishTime="03/29/2011 09:21:29" /> + <file relUrl="Content/2011.1.315/Hay/treeview-line.png" publishTime="03/29/2011 09:21:27" /> + <file relUrl="Content/2011.1.315/Sunset/slider-vs-both.gif" publishTime="03/29/2011 09:21:10" /> + <file relUrl="Content/2011.1.315/Web20/slider-vs-left.gif" publishTime="03/29/2011 09:20:56" /> + <file relUrl="Content/2011.1.315/WebBlue/slider-h-top.gif" publishTime="03/29/2011 09:20:54" /> + <file relUrl="Views/AddSeries/AddNew.cshtml" publishTime="04/21/2011 19:24:13" /> + <file relUrl="Content/style.css" publishTime="04/22/2011 13:41:52" /> + <file relUrl="Content/2011.1.315/Outlook/treeview-nodes.png" publishTime="03/29/2011 09:21:18" /> + <file relUrl="Content/2011.1.315/Office2007/treeview-nodes-rtl.png" publishTime="03/29/2011 09:21:24" /> + <file relUrl="Views/Settings/RootDir.cshtml" publishTime="04/21/2011 19:24:13" /> + <file relUrl="Content/2011.1.315/Outlook/slider-hs-both.gif" publishTime="03/29/2011 09:21:20" /> + <file relUrl="Content/2011.1.315/Sitefinity/slider-hs-both.gif" publishTime="03/29/2011 09:21:14" /> + <file relUrl="Content/2011.1.315/Office2007/slider-h-bottom.gif" publishTime="03/29/2011 09:21:26" /> + <file relUrl="Content/jquery.jgrowl.css" publishTime="10/13/2010 18:58:25" /> + <file relUrl="Views/System/Indexers.cshtml" publishTime="04/23/2011 12:47:21" /> + <file relUrl="Content/XbmcNotification.png" publishTime="03/27/2011 22:30:07" /> + <file relUrl="Content/2011.1.315/Hay/editor.png" publishTime="03/29/2011 09:21:30" /> + <file relUrl="Content/jquery-ui-1.8.8.custom.css" publishTime="02/03/2011 16:48:28" /> + <file relUrl="Content/2011.1.315/Office2007/slider-hs-bottom.gif" publishTime="03/29/2011 09:21:26" /> + <file relUrl="Views/Settings/General.cshtml" publishTime="04/20/2011 21:45:08" /> + <file relUrl="bin/NzbDrone.Web.pdb" publishTime="04/24/2011 12:09:29" /> + <file relUrl="Content/2011.1.315/Sunset/sprite-vertical.png" publishTime="03/29/2011 09:21:09" /> + <file relUrl="Content/2011.1.315/Web20/treeview-line.png" publishTime="03/29/2011 09:20:56" /> + <file relUrl="Libraries/Ninject.Web.Mvc.dll" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Office2007/loading.gif" publishTime="03/29/2011 09:21:26" /> + <file relUrl="Content/2011.1.315/Black/slider-vs-right.gif" publishTime="03/29/2011 09:21:36" /> + <file relUrl="Content/2011.1.315/Default/slider-h-top.gif" publishTime="03/29/2011 09:21:34" /> + <file relUrl="Content/2011.1.315/WebBlue/slider-hs-bottom.gif" publishTime="03/29/2011 09:20:55" /> + <file relUrl="Content/2011.1.315/Web20/slider-hs-both.gif" publishTime="03/29/2011 09:20:57" /> + <file relUrl="Content/2011.1.315/Vista/slider-h-top.gif" publishTime="03/29/2011 09:21:00" /> + <file relUrl="Content/2011.1.315/Outlook/imagebrowser.png" publishTime="03/29/2011 09:21:21" /> + <file relUrl="Views/Settings/Quality.cshtml" publishTime="04/21/2011 19:24:13" /> + <file relUrl="Content/Images/ui-bg_glass_100_f0f0f0_1x400.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Content/jquery-simpledropdown.css" publishTime="03/27/2011 22:29:41" /> + <file relUrl="Content/Images/ui-bg_glass_80_e6e6e6_1x400.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Scripts/MicrosoftAjax.js" publishTime="10/13/2010 18:58:26" /> + <file relUrl="Scripts/2011.1.315/telerik.menu.min.js" publishTime="03/29/2011 09:20:47" /> + <file relUrl="Content/2011.1.315/Outlook/sprite.png" publishTime="03/29/2011 09:21:19" /> + <file relUrl="Content/2011.1.315/Default/treeview-nodes.png" publishTime="03/29/2011 09:21:33" /> + <file relUrl="Content/2011.1.315/Sunset/treeview-nodes-rtl.png" publishTime="03/29/2011 09:21:09" /> + <file relUrl="Content/2011.1.315/Hay/sprite-vertical.png" publishTime="03/29/2011 09:21:27" /> + <file relUrl="bin/SubSonic.Core.xml" publishTime="04/04/2011 20:01:32" /> <file relUrl="bin/System.Web.Mvc.dll" publishTime="01/05/2011 16:42:16" /> - <file relUrl="Content/2011.1.315/Hay/treeview-nodes-rtl.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Windows7/loading.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/jquery.validate.js" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Outlook/slider-hs-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Default/slider-hs-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Vista/imagebrowser.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="favicon.ico" publishTime="03/30/2011 16:03:38" /> - <file relUrl="Content/2011.1.315/Office2007/slider-h-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Views/AddSeries/AddNew.cshtml" publishTime="04/20/2011 23:40:55" /> - <file relUrl="App_GlobalResources/GridLocalization.fr-FR.resx" publishTime="03/30/2011 16:03:37" /> - <file relUrl="Content/2011.1.315/Simple/sprite.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/Images/X.png" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Vista/slider-vs-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/WebBlue/slider-vs-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/notibar.css" publishTime="04/24/2011 14:17:19" /> - <file relUrl="Content/2011.1.315/Black/slider-v-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Views/Series/Details.cshtml" publishTime="04/24/2011 14:17:19" /> - <file relUrl="Scripts/2011.1.315/telerik.imagebrowser.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Content/2011.1.315/Sitefinity/loading.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Hay/loading.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Vista/slider-hs-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2010Black/slider-v-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Black/slider-v-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/jquery-ui.js" publishTime="04/04/2011 15:43:24" /> - <file relUrl="Views/Series/Edit.cshtml" publishTime="04/20/2011 23:10:58" /> - <file relUrl="Content/2011.1.315/Office2010Black/treeview-line.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/2011.1.315/jquery.validate.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Content/2011.1.315/Office2010Black/slider-hs-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Windows7/slider-v-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Vista/slider-hs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2010Black/slider-h-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="bin/System.Web.Abstractions.dll" publishTime="03/18/2010 20:31:26" /> - <file relUrl="Scripts/2011.1.315/jquery-1.5.1.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="bin/System.Data.SQLite.dll" publishTime="03/07/2011 20:48:08" /> - <file relUrl="packages.config" publishTime="04/19/2011 20:00:50" /> - <file relUrl="Content/2011.1.315/Sunset/slider-hs-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="App_GlobalResources/GridLocalization.pt-PT.resx" publishTime="03/30/2011 16:03:37" /> - <file relUrl="Content/2011.1.315/Windows7/slider-hs-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="bin/Castle.Core.xml" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/Images/spin.gif" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Sunset/slider-vs-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/2011.1.315/telerik.panelbar.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Content/2011.1.315/Hay/slider-hs-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Simple/loading.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Black/slider-hs-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Forest/slider-hs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Sunset/slider-h-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Sitefinity/editor.png" publishTime="03/28/2011 22:03:28" /> + <file relUrl="Content/2011.1.315/Hay/treeview-nodes-rtl.png" publishTime="03/29/2011 09:21:27" /> + <file relUrl="Scripts/jquery.validate.js" publishTime="10/13/2010 18:58:26" /> + <file relUrl="Content/2011.1.315/Default/slider-hs-bottom.gif" publishTime="03/29/2011 09:21:35" /> + <file relUrl="Content/2011.1.315/Vista/imagebrowser.png" publishTime="03/29/2011 09:21:00" /> + <file relUrl="Views/System/Jobs.cshtml" publishTime="04/23/2011 12:47:21" /> + <file relUrl="Content/2011.1.315/Office2007/slider-h-top.gif" publishTime="03/29/2011 09:21:25" /> + <file relUrl="App_GlobalResources/GridLocalization.fr-FR.resx" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Windows7/slider-vs-right.gif" publishTime="03/29/2011 09:20:51" /> + <file relUrl="Content/2011.1.315/WebBlue/slider-v-right.gif" publishTime="03/29/2011 09:20:54" /> + <file relUrl="Content/2011.1.315/Simple/sprite.png" publishTime="03/29/2011 09:21:16" /> + <file relUrl="Content/Images/X.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Content/2011.1.315/Vista/slider-vs-left.gif" publishTime="03/29/2011 09:20:59" /> + <file relUrl="Content/2011.1.315/WebBlue/slider-vs-left.gif" publishTime="03/29/2011 09:20:54" /> + <file relUrl="Content/notibar.css" publishTime="04/23/2011 22:42:58" /> + <file relUrl="Content/2011.1.315/Black/slider-v-both.gif" publishTime="03/29/2011 09:21:37" /> + <file relUrl="Content/2011.1.315/Windows7/slider-h-bottom.gif" publishTime="03/29/2011 09:20:52" /> + <file relUrl="Scripts/2011.1.315/telerik.imagebrowser.min.js" publishTime="03/29/2011 09:20:48" /> + <file relUrl="Scripts/2011.1.315/telerik.list.min.js" publishTime="03/29/2011 09:20:48" /> + <file relUrl="Content/2011.1.315/Sunset/slider-h-bottom.gif" publishTime="03/29/2011 09:21:11" /> + <file relUrl="Content/2011.1.315/Sitefinity/loading.gif" publishTime="03/29/2011 09:21:14" /> + <file relUrl="Content/2011.1.315/Hay/loading.gif" publishTime="03/29/2011 09:21:29" /> + <file relUrl="Content/2011.1.315/Office2010Black/slider-v-both.gif" publishTime="03/29/2011 09:21:23" /> + <file relUrl="Content/2011.1.315/Black/slider-v-right.gif" publishTime="03/29/2011 09:21:37" /> + <file relUrl="Scripts/jquery-ui.js" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Office2010Black/treeview-line.png" publishTime="03/29/2011 09:21:22" /> + <file relUrl="Content/2011.1.315/Office2010Black/slider-hs-bottom.gif" publishTime="03/29/2011 09:21:23" /> + <file relUrl="Content/2011.1.315/Windows7/slider-v-right.gif" publishTime="03/29/2011 09:20:51" /> + <file relUrl="Content/2011.1.315/Vista/slider-hs-both.gif" publishTime="03/29/2011 09:21:00" /> + <file relUrl="Content/2011.1.315/Office2010Black/slider-h-top.gif" publishTime="03/29/2011 09:21:23" /> + <file relUrl="bin/System.Web.Abstractions.dll" publishTime="03/18/2010 19:31:26" /> + <file relUrl="Scripts/2011.1.315/jquery-1.5.1.min.js" publishTime="03/30/2011 14:13:12" /> + <file relUrl="packages.config" publishTime="04/19/2011 22:01:59" /> + <file relUrl="Content/2011.1.315/Sunset/slider-hs-bottom.gif" publishTime="03/29/2011 09:21:11" /> + <file relUrl="App_GlobalResources/GridLocalization.pt-PT.resx" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Windows7/slider-hs-top.gif" publishTime="03/29/2011 09:20:52" /> + <file relUrl="bin/Castle.Core.xml" publishTime="03/29/2011 11:47:35" /> + <file relUrl="Content/2011.1.315/Sitefinity/slider-v-left.gif" publishTime="03/29/2011 09:21:13" /> + <file relUrl="Content/2011.1.315/Sunset/slider-vs-right.gif" publishTime="03/29/2011 09:21:10" /> + <file relUrl="Content/2011.1.315/Default/slider-v-both.gif" publishTime="03/29/2011 09:21:34" /> + <file relUrl="Content/2011.1.315/Hay/slider-hs-bottom.gif" publishTime="03/29/2011 09:21:29" /> + <file relUrl="Content/2011.1.315/Simple/loading.gif" publishTime="03/29/2011 09:21:17" /> + <file relUrl="Content/2011.1.315/Black/slider-hs-bottom.gif" publishTime="03/29/2011 09:21:37" /> + <file relUrl="Content/2011.1.315/Forest/slider-hs-both.gif" publishTime="03/29/2011 09:21:32" /> + <file relUrl="Content/2011.1.315/Sunset/slider-h-both.gif" publishTime="03/29/2011 09:21:11" /> + <file relUrl="Content/2011.1.315/Sitefinity/editor.png" publishTime="03/29/2011 09:21:15" /> <file relUrl="bin/System.Web.Helpers.xml" publishTime="12/19/2010 22:59:38" /> - <file relUrl="Content/2011.1.315/Office2007/slider-v-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="bin/NLog.pdb" publishTime="09/26/2010 18:12:50" /> - <file relUrl="Content/Images/ui-bg_highlight-hard_100_f9f9f9_1x100.png" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Forest/slider-h-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Simple/slider-vs-both.gif" publishTime="03/28/2011 22:03:28" /> + <file relUrl="Content/2011.1.315/Office2007/slider-v-right.gif" publishTime="03/29/2011 09:21:25" /> + <file relUrl="Content/2011.1.315/Vista/slider-v-right.gif" publishTime="03/29/2011 09:20:59" /> + <file relUrl="Content/Images/ui-bg_highlight-hard_100_f9f9f9_1x100.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Content/2011.1.315/Forest/slider-h-top.gif" publishTime="03/29/2011 09:21:31" /> + <file relUrl="Content/2011.1.315/Simple/slider-vs-both.gif" publishTime="03/29/2011 09:21:16" /> <file relUrl="bin/System.Web.WebPages.dll" publishTime="01/05/2011 14:45:38" /> - <file relUrl="Content/2011.1.315/Windows7/sprite-vertical.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="App_GlobalResources/GridLocalization.es-ES.resx" publishTime="03/30/2011 16:03:37" /> - <file relUrl="Content/Images/img07.jpg" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/Images/ui-bg_highlight-soft_100_e7eef3_1x100.png" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Outlook/slider-hs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2010Black/slider-vs-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Simple/slider-h-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Libraries/Ninject.Web.Mvc.dll" publishTime="03/30/2011 16:03:38" /> - <file relUrl="Content/ajax-loader.gif" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Web20/slider-vs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/telerik.office2007.min.css" publishTime="03/28/2011 22:03:28" /> - <file relUrl="App_GlobalResources/GridLocalization.pl-PL.resx" publishTime="03/30/2011 16:03:37" /> - <file relUrl="Content/2011.1.315/Web20/slider-vs-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/jquery-tgc-countdown-1.0.js" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Web20/slider-h-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Hay/slider-vs-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Hay/slider-v-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/WebBlue/treeview-line.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Sunset/editor.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2010Black/slider-v-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/jquery.validate.unobtrusive.js" publishTime="04/04/2011 15:43:24" /> - <file relUrl="Content/2011.1.315/WebBlue/sprite-vertical.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/Images/ui-icons_2e83ff_256x240.png" publishTime="03/07/2011 20:48:08" /> - <file relUrl="App_GlobalResources/EditorLocalization.en-US.resx" publishTime="03/30/2011 16:03:37" /> - <file relUrl="Content/2011.1.315/Vista/editor.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Black/slider-vs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/jquery.simpledropdown.js" publishTime="03/07/2011 20:48:08" /> - <file relUrl="bin/Microsoft.Web.Infrastructure.dll" publishTime="01/05/2011 14:45:38" /> - <file relUrl="Scripts/2011.1.315/telerik.textbox.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Content/2011.1.315/telerik.vista.min.css" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Web20/slider-h-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Views/System/Config.cshtml" publishTime="04/22/2011 10:11:08" /> - <file relUrl="Content/2011.1.315/Simple/slider-vs-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Views/Series/Index.cshtml" publishTime="04/20/2011 23:27:33" /> - <file relUrl="App_GlobalResources/GridLocalization.en-US.resx" publishTime="03/30/2011 16:03:37" /> - <file relUrl="Content/2011.1.315/Sitefinity/slider-v-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Telerik/treeview-nodes-rtl.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/WebBlue/slider-v-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Views/System/Jobs.cshtml" publishTime="04/22/2011 09:45:42" /> - <file relUrl="Content/2011.1.315/telerik.hay.min.css" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Hay/slider-h-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Black/slider-hs-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/WebBlue/slider-vs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Views/Settings/Notifications.cshtml" publishTime="04/20/2011 17:13:19" /> - <file relUrl="bin/Ninject.dll" publishTime="03/30/2011 16:03:38" /> - <file relUrl="Content/Images/Plus.png" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/telerik.windows7.min.css" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Hay/slider-hs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Telerik/slider-hs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Sunset/slider-h-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="App_GlobalResources/EditorLocalization.fr-FR.resx" publishTime="03/30/2011 16:03:37" /> - <file relUrl="Content/2011.1.315/Black/sprite.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/telerik.webblue.min.css" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/2011.1.315/telerik.grid.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Content/2011.1.315/Sunset/slider-v-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Telerik/slider-vs-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/jquery-ui-1.8.5.custom.min.js" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/WebBlue/slider-hs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Views/History/Index.cshtml" publishTime="04/22/2011 15:22:16" /> - <file relUrl="App_GlobalResources/UploadLocalization.en-US.resx" publishTime="03/30/2011 16:03:37" /> - <file relUrl="Content/2011.1.315/Forest/slider-v-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Windows7/sprite.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Sitefinity/slider-vs-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/WebBlue/loading.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/2011.1.315/telerik.grid.resizing.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Scripts/MicrosoftMvcValidation.js" publishTime="04/04/2011 15:43:24" /> - <file relUrl="Content/2011.1.315/WebBlue/slider-v-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Web20/slider-v-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="bin/TvdbLib.xml" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Black/loading.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/jquery.unobtrusive-ajax.js" publishTime="04/04/2011 15:43:24" /> + <file relUrl="Content/2011.1.315/Windows7/sprite-vertical.png" publishTime="03/29/2011 09:20:51" /> + <file relUrl="App_GlobalResources/GridLocalization.es-ES.resx" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/Images/img07.jpg" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Content/Images/ui-bg_highlight-soft_100_e7eef3_1x100.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Content/2011.1.315/Office2010Black/loading.gif" publishTime="03/29/2011 09:21:24" /> + <file relUrl="Content/2011.1.315/Office2010Black/slider-vs-right.gif" publishTime="03/29/2011 09:21:22" /> + <file relUrl="Content/2011.1.315/Simple/slider-h-bottom.gif" publishTime="03/29/2011 09:21:17" /> + <file relUrl="Content/2011.1.315/Sitefinity/slider-h-both.gif" publishTime="03/29/2011 09:21:14" /> + <file relUrl="Content/ajax-loader.gif" publishTime="02/03/2011 16:48:28" /> + <file relUrl="Content/2011.1.315/Web20/slider-vs-both.gif" publishTime="03/29/2011 09:20:57" /> + <file relUrl="Content/2011.1.315/telerik.office2007.min.css" publishTime="03/29/2011 09:21:07" /> + <file relUrl="Content/Images/ui-icons_2694e8_256x240.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Scripts/2011.1.315/telerik.tabstrip.min.js" publishTime="03/29/2011 09:20:46" /> + <file relUrl="Content/2011.1.315/Black/slider-vs-both.gif" publishTime="03/29/2011 09:21:36" /> + <file relUrl="Scripts/jquery-tgc-countdown-1.0.js" publishTime="01/31/2011 14:26:36" /> + <file relUrl="Content/2011.1.315/Default/slider-hs-both.gif" publishTime="03/29/2011 09:21:35" /> + <file relUrl="Content/2011.1.315/Hay/slider-vs-left.gif" publishTime="03/29/2011 09:21:28" /> + <file relUrl="Content/Images/ui-icons_cd0a0a_256x240.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Content/2011.1.315/Hay/slider-v-left.gif" publishTime="03/29/2011 09:21:28" /> + <file relUrl="Content/2011.1.315/WebBlue/treeview-line.png" publishTime="03/29/2011 09:20:53" /> + <file relUrl="Content/2011.1.315/Sunset/editor.png" publishTime="03/29/2011 09:21:12" /> + <file relUrl="Content/2011.1.315/Telerik/slider-v-right.gif" publishTime="03/29/2011 09:21:02" /> + <file relUrl="Content/Images/ui-icons_2e83ff_256x240.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="App_GlobalResources/EditorLocalization.en-US.resx" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Vista/editor.png" publishTime="03/29/2011 09:21:01" /> + <file relUrl="Content/2011.1.315/Web20/slider-v-left.gif" publishTime="03/29/2011 09:20:57" /> + <file relUrl="Scripts/jquery.simpledropdown.js" publishTime="03/27/2011 22:29:41" /> + <file relUrl="Content/2011.1.315/Windows7/loading.gif" publishTime="03/29/2011 09:20:53" /> + <file relUrl="Scripts/2011.1.315/telerik.textbox.min.js" publishTime="03/29/2011 09:20:46" /> + <file relUrl="Content/2011.1.315/Outlook/slider-h-top.gif" publishTime="03/29/2011 09:21:20" /> + <file relUrl="Scripts/2011.1.315/telerik.common.min.js" publishTime="03/29/2011 09:20:50" /> + <file relUrl="Content/2011.1.315/Web20/slider-h-bottom.gif" publishTime="03/29/2011 09:20:58" /> + <file relUrl="Views/System/Config.cshtml" publishTime="04/23/2011 12:47:21" /> + <file relUrl="Content/2011.1.315/Simple/slider-vs-right.gif" publishTime="03/29/2011 09:21:16" /> + <file relUrl="Views/Series/Index.cshtml" publishTime="04/23/2011 13:06:47" /> + <file relUrl="Content/2011.1.315/Hay/slider-v-both.gif" publishTime="03/29/2011 09:21:28" /> + <file relUrl="Content/2011.1.315/Telerik/treeview-nodes-rtl.png" publishTime="03/29/2011 09:21:01" /> + <file relUrl="Content/2011.1.315/Hay/slider-vs-both.gif" publishTime="03/29/2011 09:21:28" /> + <file relUrl="bin/System.Data.SQLite.dll" publishTime="04/05/2011 19:20:41" /> + <file relUrl="Content/2011.1.315/telerik.hay.min.css" publishTime="03/29/2011 09:21:07" /> + <file relUrl="Content/2011.1.315/Black/slider-hs-top.gif" publishTime="03/29/2011 09:21:37" /> + <file relUrl="Content/2011.1.315/WebBlue/slider-vs-both.gif" publishTime="03/29/2011 09:20:54" /> + <file relUrl="Content/2011.1.315/Default/sprite.png" publishTime="03/29/2011 09:21:33" /> + <file relUrl="Content/Images/Plus.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Content/2011.1.315/telerik.windows7.min.css" publishTime="03/29/2011 09:21:04" /> + <file relUrl="Content/2011.1.315/Hay/slider-hs-both.gif" publishTime="03/29/2011 09:21:29" /> + <file relUrl="Content/2011.1.315/Telerik/slider-hs-both.gif" publishTime="03/29/2011 09:21:03" /> + <file relUrl="Content/2011.1.315/Office2010Black/slider-v-left.gif" publishTime="03/29/2011 09:21:23" /> + <file relUrl="App_GlobalResources/EditorLocalization.fr-FR.resx" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Black/sprite.png" publishTime="03/29/2011 09:21:36" /> + <file relUrl="Scripts/2011.1.315/jquery.validate.min.js" publishTime="03/30/2011 14:13:12" /> + <file relUrl="Scripts/2011.1.315/telerik.grid.min.js" publishTime="03/29/2011 09:20:48" /> + <file relUrl="Content/2011.1.315/Sunset/slider-v-right.gif" publishTime="03/29/2011 09:21:10" /> + <file relUrl="Content/2011.1.315/Telerik/slider-vs-left.gif" publishTime="03/29/2011 09:21:01" /> + <file relUrl="Scripts/jquery-ui-1.8.5.custom.min.js" publishTime="10/13/2010 18:58:26" /> + <file relUrl="Content/2011.1.315/WebBlue/slider-hs-both.gif" publishTime="03/29/2011 09:20:55" /> + <file relUrl="Views/History/Index.cshtml" publishTime="04/23/2011 12:47:21" /> + <file relUrl="App_GlobalResources/UploadLocalization.en-US.resx" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Forest/slider-v-both.gif" publishTime="03/29/2011 09:21:31" /> + <file relUrl="Content/2011.1.315/Windows7/sprite.png" publishTime="03/29/2011 09:20:51" /> + <file relUrl="Content/2011.1.315/Sitefinity/slider-vs-left.gif" publishTime="03/29/2011 09:21:13" /> + <file relUrl="Content/2011.1.315/WebBlue/loading.gif" publishTime="03/29/2011 09:20:55" /> + <file relUrl="Scripts/2011.1.315/telerik.grid.resizing.min.js" publishTime="03/29/2011 09:20:48" /> + <file relUrl="Scripts/MicrosoftMvcValidation.js" publishTime="04/04/2011 20:01:32" /> + <file relUrl="App_GlobalResources/GridLocalization.de-DE.resx" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Web20/slider-v-both.gif" publishTime="03/29/2011 09:20:57" /> + <file relUrl="bin/TvdbLib.xml" publishTime="10/17/2010 10:22:33" /> + <file relUrl="Content/2011.1.315/Black/loading.gif" publishTime="03/29/2011 09:21:38" /> + <file relUrl="Scripts/jquery.unobtrusive-ajax.js" publishTime="04/04/2011 20:01:32" /> <file relUrl="bin/System.Web.WebPages.xml" publishTime="12/19/2010 22:59:38" /> - <file relUrl="Content/2011.1.315/Office2010Black/slider-h-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Outlook/slider-v-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/WebBlue/slider-hs-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Views/Settings/EpisodeSorting.cshtml" publishTime="04/20/2011 17:02:02" /> - <file relUrl="Content/2011.1.315/Simple/imagebrowser.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/2011.1.315/telerik.draganddrop.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Content/2011.1.315/Windows7/slider-hs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2010Black/slider-vs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Simple/slider-vs-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Default/slider-vs-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/jquery.jgrowl.css" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Sunset/slider-hs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Web20/sprite.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/ie.css" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Web20/slider-v-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Simple/slider-hs-top.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2007/slider-vs-right.gif" publishTime="03/28/2011 22:03:28" /> + <file relUrl="Content/2011.1.315/Office2010Black/slider-h-both.gif" publishTime="03/29/2011 09:21:24" /> + <file relUrl="Content/2011.1.315/Outlook/slider-v-left.gif" publishTime="03/29/2011 09:21:19" /> + <file relUrl="Content/2011.1.315/WebBlue/slider-hs-top.gif" publishTime="03/29/2011 09:20:54" /> + <file relUrl="Views/Settings/EpisodeSorting.cshtml" publishTime="04/20/2011 21:45:08" /> + <file relUrl="Views/Series/Edit.cshtml" publishTime="04/23/2011 13:06:47" /> + <file relUrl="Scripts/2011.1.315/telerik.draganddrop.min.js" publishTime="03/29/2011 09:20:49" /> + <file relUrl="Content/2011.1.315/Windows7/slider-hs-both.gif" publishTime="03/29/2011 09:20:52" /> + <file relUrl="Content/2011.1.315/Office2010Black/slider-vs-both.gif" publishTime="03/29/2011 09:21:22" /> + <file relUrl="Content/2011.1.315/Simple/slider-vs-left.gif" publishTime="03/29/2011 09:21:16" /> + <file relUrl="Content/2011.1.315/Default/slider-vs-right.gif" publishTime="03/29/2011 09:21:33" /> + <file relUrl="App_GlobalResources/GridLocalization.pl-PL.resx" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Sunset/slider-hs-both.gif" publishTime="03/29/2011 09:21:11" /> + <file relUrl="Content/ie.css" publishTime="03/27/2011 22:29:41" /> + <file relUrl="Content/2011.1.315/Outlook/slider-hs-top.gif" publishTime="03/29/2011 09:21:20" /> + <file relUrl="Content/2011.1.315/Simple/slider-hs-top.gif" publishTime="03/29/2011 09:21:17" /> + <file relUrl="Content/2011.1.315/Office2007/slider-vs-right.gif" publishTime="03/29/2011 09:21:25" /> <file relUrl="bin/System.Web.WebPages.Deployment.xml" publishTime="12/20/2010 09:52:36" /> - <file relUrl="Views/AddSeries/AddExisting.cshtml" publishTime="04/20/2011 20:58:41" /> - <file relUrl="Content/2011.1.315/Vista/slider-vs-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Hay/slider-vs-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/jquery.validate.min.js" publishTime="04/04/2011 15:43:24" /> - <file relUrl="Content/jquery-ui.custom.css" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Scripts/MicrosoftAjax.js" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/WebBlue/treeview-nodes-rtl.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/Images/ui-bg_diagonals-thick_15_444444_40x40.png" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Sitefinity/imagebrowser.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Web20/treeview-nodes.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Web20/treeview-nodes-rtl.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2007/slider-h-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Windows7/slider-h-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2010Black/editor.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Web20/imagebrowser.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/jquery-ui.css" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Outlook/slider-vs-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/WebBlue/editor.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2007/slider-vs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Black/editor.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Outlook/slider-v-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2007/slider-hs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Web.config" publishTime="04/24/2011 17:07:55" /> - <file relUrl="Scripts/2011.1.315/telerik.list.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Content/2011.1.315/Office2010Black/imagebrowser.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Views/Settings/Index.cshtml" publishTime="04/20/2011 20:50:59" /> - <file relUrl="Content/2011.1.315/Windows7/slider-vs-both.gif" publishTime="03/28/2011 22:03:28" /> + <file relUrl="Views/AddSeries/AddExisting.cshtml" publishTime="04/21/2011 19:24:13" /> + <file relUrl="Content/2011.1.315/Vista/slider-vs-right.gif" publishTime="03/29/2011 09:20:59" /> + <file relUrl="Content/2011.1.315/Hay/slider-vs-right.gif" publishTime="03/29/2011 09:21:28" /> + <file relUrl="Scripts/jquery.validate.min.js" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/jquery-ui.custom.css" publishTime="02/03/2011 16:48:28" /> + <file relUrl="App_GlobalResources/GridLocalization.ru-RU.resx" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/WebBlue/treeview-nodes-rtl.png" publishTime="03/29/2011 09:20:53" /> + <file relUrl="Content/2011.1.315/Vista/slider-hs-top.gif" publishTime="03/29/2011 09:21:00" /> + <file relUrl="Content/2011.1.315/Sitefinity/imagebrowser.png" publishTime="03/29/2011 09:21:15" /> + <file relUrl="Content/2011.1.315/Web20/treeview-nodes.png" publishTime="03/29/2011 09:20:56" /> + <file relUrl="Content/2011.1.315/Web20/treeview-nodes-rtl.png" publishTime="03/29/2011 09:20:56" /> + <file relUrl="Content/2011.1.315/Office2007/slider-h-both.gif" publishTime="03/29/2011 09:21:26" /> + <file relUrl="Content/2011.1.315/Windows7/slider-h-both.gif" publishTime="03/29/2011 09:20:52" /> + <file relUrl="Content/2011.1.315/Office2010Black/editor.png" publishTime="03/29/2011 09:21:24" /> + <file relUrl="Content/2011.1.315/Web20/imagebrowser.png" publishTime="03/29/2011 09:20:58" /> + <file relUrl="Content/jquery-ui.css" publishTime="02/03/2011 16:48:28" /> + <file relUrl="Content/2011.1.315/Outlook/slider-vs-left.gif" publishTime="03/29/2011 09:21:19" /> + <file relUrl="Content/2011.1.315/WebBlue/editor.png" publishTime="03/29/2011 09:20:56" /> + <file relUrl="Content/2011.1.315/Office2010Black/slider-hs-both.gif" publishTime="03/29/2011 09:21:23" /> + <file relUrl="Content/2011.1.315/Black/editor.png" publishTime="03/29/2011 09:21:39" /> + <file relUrl="Content/2011.1.315/Outlook/slider-v-right.gif" publishTime="03/29/2011 09:21:19" /> + <file relUrl="Content/2011.1.315/Office2007/slider-hs-both.gif" publishTime="03/29/2011 09:21:26" /> + <file relUrl="Web.config" publishTime="04/24/2011 12:11:18" /> + <file relUrl="Content/2011.1.315/Simple/slider-h-both.gif" publishTime="03/29/2011 09:21:17" /> + <file relUrl="Content/2011.1.315/Office2010Black/imagebrowser.png" publishTime="03/29/2011 09:21:24" /> + <file relUrl="Scripts/MicrosoftMvcValidation.debug.js" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Windows7/slider-vs-both.gif" publishTime="03/29/2011 09:20:51" /> <file relUrl="bin/Microsoft.Web.Infrastructure.xml" publishTime="12/20/2010 09:52:36" /> - <file relUrl="Content/2011.1.315/Vista/slider-h-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/2011.1.315/telerik.common.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Content/2011.1.315/Vista/slider-v-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Office2010Black/loading.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Windows7/slider-v-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Default/slider-v-left.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="bin/SubSonic.Core.dll" publishTime="03/30/2011 16:03:37" /> - <file relUrl="Content/2011.1.315/Outlook/sprite-vertical.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Outlook/slider-v-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Telerik/slider-hs-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Web20/slider-vs-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="bin/System.Web.Routing.dll" publishTime="03/18/2010 20:31:26" /> - <file relUrl="Content/2011.1.315/Forest/slider-vs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/WebBlue/treeview-nodes.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/WebBlue/slider-vs-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Forest/slider-h-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Hay/slider-v-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Black/treeview-line.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Default/slider-h-bottom.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Telerik/treeview-line.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/2011.1.315/telerik.autocomplete.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Content/2011.1.315/Black/slider-h-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Views/Series/SubMenu.cshtml" publishTime="04/20/2011 23:30:28" /> - <file relUrl="Content/2011.1.315/Outlook/editor.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/2011.1.315/telerik.treeview.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Scripts/jquery.jgrowl.js" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Views/Settings/UserProfileSection.cshtml" publishTime="04/21/2011 17:27:09" /> - <file relUrl="Content/Images/ui-icons_cd0a0a_256x240.png" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Sunset/slider-vs-both.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/Notification.js" publishTime="04/24/2011 14:17:19" /> - <file relUrl="Content/2011.1.315/Windows7/imagebrowser.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Scripts/2011.1.315/telerik.slider.min.js" publishTime="03/28/2011 22:03:29" /> - <file relUrl="Content/2011.1.315/Sitefinity/sprite-vertical.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/2011.1.315/Default/sprite.png" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Content/Images/ui-icons_2694e8_256x240.png" publishTime="03/07/2011 20:48:08" /> - <file relUrl="Content/2011.1.315/Windows7/slider-vs-right.gif" publishTime="03/28/2011 22:03:28" /> - <file relUrl="Views/_ViewStart.cshtml" publishTime="04/20/2011 19:35:06" /> - <file relUrl="Content/2011.1.315/Windows7/editor.png" publishTime="03/28/2011 22:03:28" /> + <file relUrl="Content/2011.1.315/Vista/slider-h-both.gif" publishTime="03/29/2011 09:21:00" /> + <file relUrl="Content/2011.1.315/Forest/editor.png" publishTime="03/29/2011 09:21:32" /> + <file relUrl="Content/2011.1.315/Sunset/slider-h-top.gif" publishTime="03/29/2011 09:21:10" /> + <file relUrl="bin/Ninject.dll" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Windows7/slider-v-both.gif" publishTime="03/29/2011 09:20:52" /> + <file relUrl="Content/2011.1.315/Default/slider-v-left.gif" publishTime="03/29/2011 09:21:34" /> + <file relUrl="bin/SubSonic.Core.dll" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/Outlook/sprite-vertical.png" publishTime="03/29/2011 09:21:18" /> + <file relUrl="Content/2011.1.315/Outlook/slider-v-both.gif" publishTime="03/29/2011 09:21:19" /> + <file relUrl="Content/2011.1.315/Telerik/slider-hs-bottom.gif" publishTime="03/29/2011 09:21:02" /> + <file relUrl="Content/2011.1.315/Web20/slider-vs-right.gif" publishTime="03/29/2011 09:20:56" /> + <file relUrl="bin/System.Web.Routing.dll" publishTime="03/18/2010 19:31:26" /> + <file relUrl="Content/2011.1.315/Forest/slider-vs-both.gif" publishTime="03/29/2011 09:21:31" /> + <file relUrl="Content/2011.1.315/WebBlue/treeview-nodes.png" publishTime="03/29/2011 09:20:53" /> + <file relUrl="Content/2011.1.315/WebBlue/slider-vs-right.gif" publishTime="03/29/2011 09:20:54" /> + <file relUrl="Content/2011.1.315/Forest/slider-h-bottom.gif" publishTime="03/29/2011 09:21:32" /> + <file relUrl="Content/2011.1.315/Black/treeview-line.png" publishTime="03/29/2011 09:21:36" /> + <file relUrl="Content/2011.1.315/Default/slider-h-bottom.gif" publishTime="03/29/2011 09:21:35" /> + <file relUrl="Content/2011.1.315/Telerik/treeview-line.png" publishTime="03/29/2011 09:21:01" /> + <file relUrl="Scripts/2011.1.315/telerik.autocomplete.min.js" publishTime="03/29/2011 09:20:50" /> + <file relUrl="Content/2011.1.315/Black/slider-h-both.gif" publishTime="03/29/2011 09:21:38" /> + <file relUrl="Views/Series/SubMenu.cshtml" publishTime="04/21/2011 19:24:13" /> + <file relUrl="Content/2011.1.315/Outlook/editor.png" publishTime="03/29/2011 09:21:21" /> + <file relUrl="Content/2011.1.315/Telerik/sprite.png" publishTime="03/29/2011 09:21:01" /> + <file relUrl="Scripts/jquery.jgrowl.js" publishTime="10/17/2010 23:06:03" /> + <file relUrl="Content/2011.1.315/Web20/sprite.png" publishTime="03/29/2011 09:20:56" /> + <file relUrl="Views/Settings/Downloads.cshtml" publishTime="04/20/2011 21:45:08" /> + <file relUrl="Content/2011.1.315/WebBlue/sprite-vertical.png" publishTime="03/29/2011 09:20:53" /> + <file relUrl="Content/Images/ui-bg_glass_50_99c2ff_1x400.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Content/2011.1.315/Windows7/imagebrowser.png" publishTime="03/29/2011 09:20:53" /> + <file relUrl="Content/Images/ui-icons_72a7cf_256x240.png" publishTime="03/28/2011 21:50:45" /> + <file relUrl="Content/2011.1.315/Sitefinity/sprite.png" publishTime="03/29/2011 09:21:12" /> + <file relUrl="Content/2011.1.315/Forest/sprite.png" publishTime="03/29/2011 09:21:30" /> + <file relUrl="App_GlobalResources/EditorLocalization.uk-UA.resx" publishTime="04/04/2011 20:01:32" /> + <file relUrl="Content/2011.1.315/telerik.common.min.css" publishTime="03/29/2011 09:21:08" /> + <file relUrl="Views/_ViewStart.cshtml" publishTime="04/20/2011 21:45:08" /> + <file relUrl="Content/2011.1.315/Windows7/editor.png" publishTime="03/29/2011 09:20:53" /> </publishProfile> </publishData> \ No newline at end of file diff --git a/NzbDrone.Web/Views/Settings/Downloads.cshtml b/NzbDrone.Web/Views/Settings/Downloads.cshtml index 149233ff1..1854cd444 100644 --- a/NzbDrone.Web/Views/Settings/Downloads.cshtml +++ b/NzbDrone.Web/Views/Settings/Downloads.cshtml @@ -94,6 +94,8 @@ <fieldset class="sub-field"> <legend>SABnzbd</legend> + <button type="button" onclick="autoConfigureSab()">Auto-Configure</button> + <div class="config-section"> <div class="config-group"> <div class="config-title">@Html.LabelFor(m => m.SabHost)</div> @@ -172,4 +174,26 @@ </fieldset> } <div id="result"></div> - \ No newline at end of file + +<script type="text/javascript"> + var autoConfigureSabUrl = '@Url.Action("AutoConfigureSab", "Settings")'; + + function autoConfigureSab() { + $.ajax({ + type: "POST", + url: autoConfigureSabUrl, + data: jQuery.param({ username: $('#SabUsername').val(), password: $('#SabPassword').val() }), + error: function (req, status, error) { + alert("Sorry! We could not autoconfigure SABnzbd for you"); + }, + success: autoConfigureSuccess + }); + + function autoConfigureSuccess(data) { + $('#SabApiKey').val(data.ApiKey); + $('#SabPort').val(data.Port); + $('#SabUsername').val(data.Username); + $('#SabPassword').val(data.Password); + } + } +</script> \ No newline at end of file diff --git a/NzbDrone/IISController.cs b/NzbDrone/IISController.cs index 24813c620..52e1390e6 100644 --- a/NzbDrone/IISController.cs +++ b/NzbDrone/IISController.cs @@ -44,7 +44,8 @@ namespace NzbDrone IISProcess.StartInfo.CreateNoWindow = true; - IISProcess.OutputDataReceived += (OnDataReceived); + IISProcess.OutputDataReceived += (OnOutputDataReceived); + IISProcess.ErrorDataReceived += (OnErrorDataReceived); //Set Variables for the config file. Environment.SetEnvironmentVariable("NZBDRONE_PATH", Config.ProjectRoot); @@ -60,6 +61,9 @@ namespace NzbDrone Logger.Info("Starting process. [{0}]", IISProcess.StartInfo.FileName); + + + IISProcess.Start(); IISProcess.BeginErrorReadLine(); @@ -73,6 +77,14 @@ namespace NzbDrone return IISProcess; } + private static void OnErrorDataReceived(object sender, DataReceivedEventArgs e) + { + if (e == null || String.IsNullOrWhiteSpace(e.Data)) + return; + + IISLogger.Error(e.Data); + } + internal static void StopServer() { KillProcess(IISProcess); @@ -82,7 +94,7 @@ namespace NzbDrone { string processPath = process.MainModule.FileName; Logger.Info("[{0}]IIS Process found. Path:{1}", process.Id, processPath); - if (CleanPath(processPath) == CleanPath(IISExe)) + if (NormalizePath(processPath) == NormalizePath(IISExe)) { Logger.Info("[{0}]Process is considered orphaned.", process.Id); KillProcess(process); @@ -124,7 +136,7 @@ namespace NzbDrone } } - private static void OnDataReceived(object s, DataReceivedEventArgs e) + private static void OnOutputDataReceived(object s, DataReceivedEventArgs e) { if (e == null || String.IsNullOrWhiteSpace(e.Data) || e.Data.StartsWith("Request started:") || e.Data.StartsWith("Request ended:") || e.Data == ("IncrementMessages called")) @@ -167,9 +179,19 @@ namespace NzbDrone } } - private static string CleanPath(string path) + public static string NormalizePath(string path) { - return path.ToLower().Replace("\\", "").Replace("//", "//"); + if (String.IsNullOrWhiteSpace(path)) + throw new ArgumentException("Path can not be null or empty"); + + var info = new FileInfo(path); + + if (info.FullName.StartsWith(@"\\")) //UNC + { + return info.FullName.TrimEnd('/', '\\', ' '); + } + + return info.FullName.Trim('/', '\\', ' ').ToLower(); } diff --git a/NzbDrone/NzbDrone.csproj b/NzbDrone/NzbDrone.csproj index 983bd4931..47de312e0 100644 --- a/NzbDrone/NzbDrone.csproj +++ b/NzbDrone/NzbDrone.csproj @@ -13,6 +13,7 @@ <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> <FileAlignment>512</FileAlignment> <TargetFrameworkProfile /> + <IsWebBootstrapper>false</IsWebBootstrapper> <PublishUrl>publish\</PublishUrl> <Install>true</Install> <InstallFrom>Disk</InstallFrom> @@ -25,7 +26,6 @@ <MapFileExtensions>true</MapFileExtensions> <ApplicationRevision>0</ApplicationRevision> <ApplicationVersion>1.0.0.%2a</ApplicationVersion> - <IsWebBootstrapper>false</IsWebBootstrapper> <UseApplicationTrust>false</UseApplicationTrust> <BootstrapperEnabled>true</BootstrapperEnabled> </PropertyGroup> diff --git a/NzbDrone/Program.cs b/NzbDrone/Program.cs index 310b0846e..eb891dd20 100644 --- a/NzbDrone/Program.cs +++ b/NzbDrone/Program.cs @@ -21,6 +21,7 @@ namespace NzbDrone AppDomain.CurrentDomain.UnhandledException += ((s, e) => AppDomainException(e)); AppDomain.CurrentDomain.ProcessExit += ProgramExited; AppDomain.CurrentDomain.DomainUnload += ProgramExited; + Process.GetCurrentProcess().EnableRaisingEvents = true; Process.GetCurrentProcess().Exited += ProgramExited; Config.ConfigureNlog(); From e4d208883aeb340bbb618ca3083e15dc8f3863d7 Mon Sep 17 00:00:00 2001 From: Mark McDowall <markus.mcd5@gmail.com> Date: Mon, 25 Apr 2011 08:21:12 -0700 Subject: [PATCH 2/3] Fixed episode parsing so it is not too aggressive. Added tests for episode parsing and Assertions for number of episodes parsed (to ensure the count is correct). --- NzbDrone.Core.Test/ParserTest.cs | 18 ++++++++++-------- NzbDrone.Core/Parser.cs | 2 +- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/NzbDrone.Core.Test/ParserTest.cs b/NzbDrone.Core.Test/ParserTest.cs index 08a2ca125..349b6600a 100644 --- a/NzbDrone.Core.Test/ParserTest.cs +++ b/NzbDrone.Core.Test/ParserTest.cs @@ -17,7 +17,6 @@ namespace NzbDrone.Core.Test [Test] [Row("Sonny.With.a.Chance.S02E15", "Sonny.With.a.Chance", 2, 15)] - [Row("WEEDS.S03E01-06.DUAL.BDRip.XviD.AC3.-HELLYWOOD", "WEEDS", 3, 1)] [Row("Two.and.a.Half.Me.103.720p.HDTV.X264-DIMENSION", "Two.and.a.Half.Me", 1, 3)] [Row("Two.and.a.Half.Me.113.720p.HDTV.X264-DIMENSION", "Two.and.a.Half.Me", 1, 13)] [Row("Two.and.a.Half.Me.1013.720p.HDTV.X264-DIMENSION", "Two.and.a.Half.Me", 10, 13)] @@ -36,12 +35,14 @@ namespace NzbDrone.Core.Test [Row("Pride.and.Prejudice.1995.S03E20.HDTV.XviD-LOL", "Pride and Prejudice 1995", 3, 20)] //[Row(@"Season 4\07 WS PDTV XviD FUtV", "", 4, 7)] [Row("The.Office.S03E115.DVDRip.XviD-OSiTV", "The.Office", 3, 115)] + [Row(@"Parks and Recreation - S02E21 - 94 Meetings - 720p TV.mkv", "Parks and Recreation", 2, 21)] public void episode_parse(string postTitle, string title, int season, int episode) { var result = Parser.ParseEpisodeInfo(postTitle); Assert.AreEqual(season, result.SeasonNumber); Assert.AreEqual(episode, result.Episodes[0]); Assert.AreEqual(Parser.NormalizeTitle(title), result.CleanTitle); + Assert.AreEqual(1, result.Episodes.Count); } [Test] @@ -85,20 +86,21 @@ namespace NzbDrone.Core.Test [Test] [Timeout(1)] - [Row("WEEDS.S03E01-06.DUAL.BDRip.XviD.AC3.-HELLYWOOD", "WEEDS", 3, new[] { 1, 2, 3, 4, 5, 6 })] - [Row("Two.and.a.Half.Men.103.104.720p.HDTV.X264-DIMENSION", "Two.and.a.Half.Men", 1, new[] { 3, 4 })] - [Row("Weeds.S03E01.S03E02.720p.HDTV.X264-DIMENSION", "Weeds", 3, new[] { 1, 2 })] - [Row("The Borgias S01e01 e02 ShoHD On Demand 1080i DD5 1 ALANiS", "The Borgias", 1, new[] { 1, 2 })] - [Row("Big Time Rush 1x01 to 10 480i DD2 0 Sianto", "Big Time Rush", 1, new[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 })] - [Row("White.Collar.2x04.2x05.720p.BluRay-FUTV", "White.Collar", 2, new[] { 4, 5 })] + [Row("WEEDS.S03E01-06.DUAL.BDRip.XviD.AC3.-HELLYWOOD", "WEEDS", 3, new[] { 1, 2, 3, 4, 5, 6 }, 6)] + [Row("Two.and.a.Half.Men.103.104.720p.HDTV.X264-DIMENSION", "Two.and.a.Half.Men", 1, new[] { 3, 4 }, 2)] + [Row("Weeds.S03E01.S03E02.720p.HDTV.X264-DIMENSION", "Weeds", 3, new[] { 1, 2 }, 2)] + [Row("The Borgias S01e01 e02 ShoHD On Demand 1080i DD5 1 ALANiS", "The Borgias", 1, new[] { 1, 2 }, 2)] + [Row("Big Time Rush 1x01 to 10 480i DD2 0 Sianto", "Big Time Rush", 1, new[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }, 10)] + [Row("White.Collar.2x04.2x05.720p.BluRay-FUTV", "White.Collar", 2, new[] { 4, 5 }, 2)] //[Row("The.Kennedys.Part.1.and.Part.2.DSR.XviD-SYS", 1, new[] { 1, 2 })] - public void episode_multipart_parse(string postTitle, string title, int season, int[] episodes) + public void episode_multipart_parse(string postTitle, string title, int season, int[] episodes, int count) { var result = Parser.ParseEpisodeInfo(postTitle); Assert.AreEqual(season, result.SeasonNumber); Assert.Count(episodes.Length, result.Episodes); Assert.AreElementsEqualIgnoringOrder(episodes, result.Episodes); Assert.AreEqual(Parser.NormalizeTitle(title), result.CleanTitle); + Assert.AreEqual(count, result.Episodes.Count); } [Test] diff --git a/NzbDrone.Core/Parser.cs b/NzbDrone.Core/Parser.cs index e260a56ca..077b919ca 100644 --- a/NzbDrone.Core/Parser.cs +++ b/NzbDrone.Core/Parser.cs @@ -16,7 +16,7 @@ namespace NzbDrone.Core { new Regex(@"^(?<title>.+?)?\W?(?<year>\d{4}?)?\W+(?<airyear>\d{4})\W+(?<airmonth>\d{2})\W+(?<airday>\d{2})\W?(?!\\)", RegexOptions.IgnoreCase | RegexOptions.Compiled), - new Regex(@"^(?<title>.*?)?(?:\W?S?(?<season>\d{1,2}(?!\d+))(?:(?:\-|\.|[ex]|\s|to)+(?<episode>\d{1,2}(?!\d+)))+)+\W?(?!\\)", + new Regex(@"^(?<title>.*?)?(?:\W?S?(?<season>\d{1,2}(?!\d+))(?:(?:\-|\.|[ex]|\s|\sto\s){1,2}(?<episode>\d{1,2}(?!\d+)))+)+\W?(?!\\)", RegexOptions.IgnoreCase | RegexOptions.Compiled), new Regex(@"^(?<title>.+?)?\W?(?<year>\d{4}?)?(?:\W(?<season>\d+)(?<episode>\d{2}))+\W?(?!\\)", RegexOptions.IgnoreCase | RegexOptions.Compiled), From deb7f9d81192bc0d456fc8f56df0a3d89ade1745 Mon Sep 17 00:00:00 2001 From: Mark McDowall <markus.mcd5@gmail.com> Date: Mon, 25 Apr 2011 11:21:53 -0700 Subject: [PATCH 3/3] Merge + Download Settings UI Fixes. --- .gitignore | 3 +- NzbDrone.Core.Test/EpisodeProviderTest.cs | 206 -- NzbDrone.Core.Test/Files/RSS/newzbin.xml | 2943 +++++++++++++++++ NzbDrone.Core.Test/Files/RSS/nzbmatrix.xml | 512 +++ NzbDrone.Core.Test/Files/RSS/nzbsrus.xml | 275 ++ NzbDrone.Core.Test/IndexerProviderTest.cs | 59 +- NzbDrone.Core.Test/MockLib.cs | 15 +- NzbDrone.Core.Test/NzbDrone.Core.Test.csproj | 9 + NzbDrone.Core.Test/RepoTest.cs | 2 +- NzbDrone.Core.Test/SeriesProviderTest.cs | Bin 8192 -> 8234 bytes NzbDrone.Core.Test/log.config | 2 +- .../Instrumentation/SubsonicTarget.cs | 11 +- NzbDrone.Core/Providers/Core/HttpProvider.cs | 58 +- NzbDrone.Core/Providers/EpisodeProvider.cs | 35 +- .../Providers/Indexer/IndexerProviderBase.cs | 28 +- .../Indexer/SyndicationFeedXmlReader.cs | 67 + NzbDrone.Core/Providers/SabProvider.cs | 4 + NzbDrone.Core/Providers/SeasonProvider.cs | 4 - NzbDrone.Core/Providers/SeriesProvider.cs | 5 +- NzbDrone.Core/Repository/Series.cs | 2 +- .../Controllers/SettingsController.cs | 2 - NzbDrone.Web/Views/Settings/Downloads.cshtml | 17 +- 22 files changed, 3963 insertions(+), 296 deletions(-) delete mode 100644 NzbDrone.Core.Test/EpisodeProviderTest.cs create mode 100644 NzbDrone.Core.Test/Files/RSS/newzbin.xml create mode 100644 NzbDrone.Core.Test/Files/RSS/nzbmatrix.xml create mode 100644 NzbDrone.Core.Test/Files/RSS/nzbsrus.xml create mode 100644 NzbDrone.Core/Providers/Indexer/SyndicationFeedXmlReader.cs 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<TvdbSeries>.CreateNew().With( - c => c.Episodes = - new List<TvdbEpisode>(Builder<TvdbEpisode>.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<TvDbProvider>() - .Setup(c => c.GetSeries(seriesId, true)) - .Returns(fakeEpisodes).Verifiable(); - - //mocker.GetMock<IRepository>().SetReturnsDefault(); - - - //Act - var sw = Stopwatch.StartNew(); - mocker.Resolve<EpisodeProvider>().RefreshEpisodeInfo(seriesId); - var actualCount = mocker.Resolve<EpisodeProvider>().GetEpisodeBySeries(seriesId); - //Assert - mocker.GetMock<TvDbProvider>().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<int> { 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> { QualityTypes.TV, QualityTypes.DVD, QualityTypes.Bluray720, QualityTypes.Bluray1080 }, - Cutoff = QualityTypes.Bluray720, - Name = "TV/DVD", - }; - - - - var mocker = new AutoMoqer(); - mocker.GetMock<IRepository>() - .Setup(r => r.Single(It.IsAny<Expression<Func<Episode, Boolean>>>())) - .Returns(episodeInfo); - - mocker.GetMock<QualityProvider>() - .Setup(q => q.Find(1)) - .Returns(seriesQualityProfile); - - var result = mocker.Resolve<EpisodeProvider>().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<int> { targetEpisode.EpisodeNumber }, - Quality = QualityTypes.DVD - }; - - var result = mocker.Resolve<EpisodeProvider>().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<int> { 3 }, - Quality = QualityTypes.DVD - - }; - - var parseResult2 = new EpisodeParseResult - { - SeriesId = 12, - SeasonNumber = 3, - Episodes = new List<int> { 3 }, - Quality = QualityTypes.DVD - - }; - - var mocker = new AutoMoqer(); - mocker.SetConstant(MockLib.GetEmptyRepository()); - - var episodeProvider = mocker.Resolve<EpisodeProvider>(); - 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<TvDbProvider>(); - const int tvDbSeriesId = 71256; - //act - var seriesProvider = mocker.Resolve<SeriesProvider>(); - - seriesProvider.AddSeries("c:\\test\\", tvDbSeriesId, 0); - var episodeProvider = mocker.Resolve<EpisodeProvider>(); - 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 @@ +<?xml version="1.0" encoding="utf-8" ?> +<rss version="2.0" xml:lang="en-GB" +xmlns:report="http://www.newzbin.com/DTD/2007/feeds/report/"> + <channel> + <title>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 f13edde5deea03e0dbae7be7e97f16a378d24ca2..7a88771e61d4196d746fd3779707e2cb5dcb6113 100644 GIT binary patch delta 29 lcmZp0Smm%`f%IfU9(fLp!qUW?%#zBQD= 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) - { - try - { - return new 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 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) + public virtual string DownloadString(string address) { try { - var webClient = new WebClient(); - webClient.DownloadFile(request, filename); + return new 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 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; + } + + //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 Cutoff Value + //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 @@