2013-04-07 09:30:37 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Indexers.Wombles
|
|
|
|
|
{
|
2013-05-02 03:59:09 +02:00
|
|
|
|
public class Wombles : IndexerBase
|
2013-04-07 09:30:37 +02:00
|
|
|
|
{
|
2013-07-04 23:20:08 +02:00
|
|
|
|
public override string Name
|
|
|
|
|
{
|
|
|
|
|
get { return "WomblesIndex"; }
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-08 19:53:26 +02:00
|
|
|
|
public override IParseFeed Parser
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return new WomblesParser();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-07 09:30:37 +02:00
|
|
|
|
public override IEnumerable<string> RecentFeed
|
|
|
|
|
{
|
2013-06-08 19:53:26 +02:00
|
|
|
|
get { yield return "http://nzb.isasecret.com/rss/?sec=TV&fr=false"; }
|
2013-04-07 09:30:37 +02:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-06 09:38:16 +02:00
|
|
|
|
public override IEnumerable<string> GetEpisodeSearchUrls(string seriesTitle, int tvRageId, int seasonNumber, int episodeNumber)
|
2013-04-07 09:30:37 +02:00
|
|
|
|
{
|
|
|
|
|
return new List<string>();
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-06 09:38:16 +02:00
|
|
|
|
public override IEnumerable<string> GetSeasonSearchUrls(string seriesTitle, int tvRageId, int seasonNumber)
|
2013-04-07 09:30:37 +02:00
|
|
|
|
{
|
|
|
|
|
return new List<string>();
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-06 09:38:16 +02:00
|
|
|
|
public override IEnumerable<string> GetDailyEpisodeSearchUrls(string seriesTitle, int tvRageId, DateTime date)
|
2013-04-07 09:30:37 +02:00
|
|
|
|
{
|
|
|
|
|
return new List<string>();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|