mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-10-30 15:32:31 +01:00
Fixed nzbs.org RSS URL.
Series Details Specials looks like the standard season grids.
This commit is contained in:
parent
4d442ba1e5
commit
9c51633470
@ -145,7 +145,7 @@
|
|||||||
<virtualDirectory path="/" physicalPath="%NZBDRONE_PATH%\NZBDrone.Web" />
|
<virtualDirectory path="/" physicalPath="%NZBDRONE_PATH%\NZBDrone.Web" />
|
||||||
</application>
|
</application>
|
||||||
<bindings>
|
<bindings>
|
||||||
<binding protocol="http" bindingInformation="*:8980:" />
|
<binding protocol="http" bindingInformation="*:8989:" />
|
||||||
</bindings>
|
</bindings>
|
||||||
</site>
|
</site>
|
||||||
<siteDefaults>
|
<siteDefaults>
|
||||||
|
@ -20,7 +20,7 @@ namespace NzbDrone.Core.Providers.Indexer
|
|||||||
{
|
{
|
||||||
return new[]
|
return new[]
|
||||||
{
|
{
|
||||||
string.Format("http://nzbs.org/rss.php?catid=1,14&i={0}&h={1}&num=50&dl=1", _configProvider.NzbsOrgUId, _configProvider.NzbsOrgHash)
|
string.Format("http://nzbs.org/rss.php?type=1&i={0}&h={1}&num=50&dl=1", _configProvider.NzbsOrgUId, _configProvider.NzbsOrgHash)
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -105,22 +105,35 @@
|
|||||||
<br />
|
<br />
|
||||||
<h3>Specials</h3>
|
<h3>Specials</h3>
|
||||||
<div class="grid-container">
|
<div class="grid-container">
|
||||||
@{Html.Telerik().Grid(specialSeasons.Episodes).Name("seasons_specials")
|
@{Html.Telerik().Grid<EpisodeModel>().Name("seasons_specials")
|
||||||
.TableHtmlAttributes(new {@class = "Grid"})
|
.TableHtmlAttributes(new {@class = "Grid"})
|
||||||
.Columns(columns =>
|
.Columns(columns =>
|
||||||
{
|
{
|
||||||
columns.Bound(c => c.EpisodeNumber).Width(0).Title("Episode");
|
columns.Bound(o => o.EpisodeId)
|
||||||
columns.Bound(c => c.Title);
|
.ClientTemplate(
|
||||||
columns.Bound(c => c.AirDate).Format("{0:d}").Width(0);
|
"<input type='checkbox' name='checkedEpisodes' value='<#= EpisodeId #>' />")
|
||||||
|
.Title("")
|
||||||
|
.Width(1)
|
||||||
|
.HtmlAttributes(new { style = "text-align:center" });
|
||||||
|
|
||||||
|
columns.Bound(c => c.EpisodeNumber).Width(10).Title("Episode");
|
||||||
|
columns.Bound(c => c.Title).Title("Title").Width(300);
|
||||||
|
columns.Bound(c => c.AirDate).Format("{0:d}").Width(10);
|
||||||
|
columns.Bound(c => c.Quality).Width(10);
|
||||||
|
columns.Bound(c => c.Path);
|
||||||
})
|
})
|
||||||
//.DetailView(detailView => detailView.ClientTemplate("<div><#= Overview #> </br><#= Path #> </div>"))
|
.DetailView(detailView => detailView.ClientTemplate("<div><#= Overview #> </br><#= Path #> </div>"))
|
||||||
.ClientEvents(clientEvents =>
|
.ClientEvents(clientEvents =>
|
||||||
{
|
{
|
||||||
clientEvents.OnDataBinding("grid_bind");
|
clientEvents.OnDataBinding("grid_bind");
|
||||||
clientEvents.OnDataBound("grid_bound");
|
clientEvents.OnDataBound("grid_bound");
|
||||||
})
|
})
|
||||||
.Sortable(rows => rows.OrderBy(epSort => epSort.Add(c => c.EpisodeNumber)).Enabled(false))
|
.Sortable(rows => rows.OrderBy(epSort => epSort.Add(c => c.EpisodeNumber).Descending()).Enabled(true))
|
||||||
.Footer(false)
|
.Footer(true)
|
||||||
|
.DataBinding(
|
||||||
|
d =>
|
||||||
|
d.Ajax().Select("_AjaxSeasonGrid", "Series",
|
||||||
|
new RouteValueDictionary { { "seasonId", specialSeasons.SeasonId.ToString() } }))
|
||||||
.Render(); }
|
.Render(); }
|
||||||
<span class="grid-loader"><img src="@Url.Content("~/Content/Images/Loading.gif")" alt="Loading"/> Loading...</span>
|
<span class="grid-loader"><img src="@Url.Content("~/Content/Images/Loading.gif")" alt="Loading"/> Loading...</span>
|
||||||
</div>
|
</div>
|
||||||
|
@ -4,6 +4,6 @@
|
|||||||
<supportedRuntime version="v4.0" />
|
<supportedRuntime version="v4.0" />
|
||||||
</startup>
|
</startup>
|
||||||
<appSettings>
|
<appSettings>
|
||||||
<add key="port" value="8980" />
|
<add key="port" value="8989" />
|
||||||
</appSettings>
|
</appSettings>
|
||||||
</configuration>
|
</configuration>
|
Loading…
Reference in New Issue
Block a user