Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class DataUpdateAgent
private readonly ILogger _logger;
private readonly IReadOnlyList<(StatusDataType DataType, string Url)> _targets = new[]
{
(StatusDataType.Chromium, "http://www.chromestatus.com/features.json"),
(StatusDataType.Chromium, "https://chromestatus.com/features.json"),
(StatusDataType.Edge, "https://raw.githubusercontent.com/MicrosoftEdge/Status/production/status.json"),
(StatusDataType.WebKitWebCore, "https://raw.githubusercontent.com/WebKit/WebKit/main/Source/WebCore/features.json"),
(StatusDataType.WebKitJavaScriptCore, "https://raw.githubusercontent.com/WebKit/WebKit/main/Source/JavaScriptCore/features.json"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
}
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Browser Platform Status Tracker</title>
<link href="@Url.Action("Index", "Home", new object(), "http")" />
<link href="@Url.Action("Index", "Home", new object(), "https")" />
<updated>@Model.LastUpdatedAt.ToString("yyyy-MM-dd'T'HH:mm:ss.fffK", DateTimeFormatInfo.InvariantInfo)</updated>
<author>
<name>Mayuki Sawatari</name>
Expand All @@ -20,7 +20,7 @@
{
<entry>
<title>@date.ToString("yyyy-MM-dd", new CultureInfo("en-us"))</title>
<link href="@Url.Action("Changes", "Home", new { Date = date.ToString("yyyy-MM-dd") }, "http")" />
<link href="@Url.Action("Changes", "Home", new { Date = date.ToString("yyyy-MM-dd") }, "https")" />
<id>@Url.Action("Changes", "Home", new { Date = date.ToString("yyyy-MM-dd") }, "http")</id>
<updated>@Model.GetUpdatedAtByDate(date).ToString("yyyy-MM-dd'T'HH:mm:ss.fffK", DateTimeFormatInfo.InvariantInfo)</updated>
<content type="html">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
@if (Model.ChromeChangeSet != null && Model.ChromeChangeSet.Changes.Any())
{
<section>
<h1><a href="http://www.chromestatus.com/features"><img src="~/images/shared/Icon-Chromium.png" alt="" p-visibility="@(!Model.HideIcon)" />Chromium</a></h1>
<h1><a href="https://chromestatus.com/features"><img src="~/images/shared/Icon-Chromium.png" alt="" p-visibility="@(!Model.HideIcon)" />Chromium</a></h1>
<ul class="changes">
@foreach (var change in Model.ChromeChangeSet.Changes.Cast<ChromiumChangeInfo>())
{
Expand Down Expand Up @@ -179,7 +179,7 @@
@if (Model.WebKitWebCoreChangeSet != null && Model.WebKitWebCoreChangeSet.Changes.Any())
{
<section>
<h1><a href="http://trac.webkit.org/browser/trunk/Source/WebCore/features.json"><img src="~/images/shared/Icon-WebKit.png" alt="" p-visibility="@(!Model.HideIcon)" />WebKit (WebCore)</a></h1>
<h1><a href="https://trac.webkit.org/browser/trunk/Source/WebCore/features.json"><img src="~/images/shared/Icon-WebKit.png" alt="" p-visibility="@(!Model.HideIcon)" />WebKit (WebCore)</a></h1>
<ul class="changes">
@foreach (var change in Model.WebKitWebCoreChangeSet.Changes.Cast<WebKitChangeInfo>())
{
Expand Down Expand Up @@ -231,7 +231,7 @@
@if (Model.WebKitJavaScriptCoreChangeSet != null && Model.WebKitJavaScriptCoreChangeSet.Changes.Any())
{
<section>
<h1><a href="http://trac.webkit.org/browser/trunk/Source/JavaScriptCore/features.json"><img src="~/images/shared/Icon-WebKit.png" alt="" p-visibility="@(!Model.HideIcon)" />WebKit (JavaScriptCore)</a></h1>
<h1><a href="https://trac.webkit.org/browser/trunk/Source/JavaScriptCore/features.json"><img src="~/images/shared/Icon-WebKit.png" alt="" p-visibility="@(!Model.HideIcon)" />WebKit (JavaScriptCore)</a></h1>
<ul class="changes">
@foreach (var change in Model.WebKitJavaScriptCoreChangeSet.Changes.Cast<WebKitChangeInfo>())
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>@(String.IsNullOrWhiteSpace(ViewBag.Title) ? "" : ViewBag.Title + " - ")Browser Platform Status Tracker</title>
<link rel="alternate" type="application/atom+xml" title="Browser Platform Status Tracker" href="@Url.Action("Feed", "Home", new object(), "http")" />
<link rel="alternate" type="application/atom+xml" title="Browser Platform Status Tracker" href="@Url.Action("Feed", "Home", new object(), "https")" />
<environment names="Development">
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.css" />
<link rel="stylesheet" href="~/css/site.css" />
Expand Down Expand Up @@ -62,8 +62,8 @@
<hr />
<footer>
@RenderSection("Footer", required: false)
<p><a class="service-link" asp-action="Feed"><img class="shared-icon" src="~/images/shared/ic_rss_feed_black_24px.svg" alt="Feed" /> Subscribe</a> <a class="service-link" href="http://github.com/mayuki/PlatformStatusTracker"><img class="shared-icon" src="~/images/shared/GitHub-Mark-64px.png" alt="GitHub" /> GitHub</a></p>
<p>Source: <a href="https://platform-status.mozilla.org/">Firefox Platform Status</a>, <a href="http://www.chromestatus.com/features">Chromium Dashboard</a>, <a href="https://developer.microsoft.com/en-us/microsoft-edge/status/">Microsoft Edge Platform Status</a> and <a href="https://webkit.org/status/">WebKit Status</a> (Creative Commons Attribution 2.5 License)</p>
<p><a class="service-link" asp-action="Feed"><img class="shared-icon" src="~/images/shared/ic_rss_feed_black_24px.svg" alt="Feed" /> Subscribe</a> <a class="service-link" href="https://github.com/mayuki/PlatformStatusTracker"><img class="shared-icon" src="~/images/shared/GitHub-Mark-64px.png" alt="GitHub" /> GitHub</a></p>
<p>Source: <a href="https://platform-status.mozilla.org/">Firefox Platform Status</a>, <a href="https://chromestatus.com/features">Chromium Dashboard</a>, <a href="https://developer.microsoft.com/en-us/microsoft-edge/status/">Microsoft Edge Platform Status</a> and <a href="https://webkit.org/status/">WebKit Status</a> (Creative Commons Attribution 2.5 License)</p>
<p>Mayuki Sawatari &lt;[email protected]&gt;</p>
</footer>
</div>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
## Platform data sources

- https://developer.microsoft.com/en-us/microsoft-edge/status/
- http://www.chromestatus.com/features
- https://chromestatus.com/features
- https://webkit.org/status/
- https://platform-status.mozilla.org/