Skip to content

Commit 4392844

Browse files
committed
Use https://
1 parent a58a07f commit 4392844

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

PlatformStatusTracker/PlatformStatusTracker.Core/Model/DataUpdateAgent.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public class DataUpdateAgent
1919
private readonly ILogger _logger;
2020
private readonly IReadOnlyList<(StatusDataType DataType, string Url)> _targets = new[]
2121
{
22-
(StatusDataType.Chromium, "http://www.chromestatus.com/features.json"),
22+
(StatusDataType.Chromium, "https://chromestatus.com/features.json"),
2323
(StatusDataType.Edge, "https://raw.githubusercontent.com/MicrosoftEdge/Status/production/status.json"),
2424
(StatusDataType.WebKitWebCore, "https://raw.githubusercontent.com/WebKit/WebKit/main/Source/WebCore/features.json"),
2525
(StatusDataType.WebKitJavaScriptCore, "https://raw.githubusercontent.com/WebKit/WebKit/main/Source/JavaScriptCore/features.json"),

PlatformStatusTracker/PlatformStatusTracker.Web/Views/Home/Feed.cshtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
}
1010
<feed xmlns="http://www.w3.org/2005/Atom">
1111
<title>Browser Platform Status Tracker</title>
12-
<link href="@Url.Action("Index", "Home", new object(), "http")" />
12+
<link href="@Url.Action("Index", "Home", new object(), "https")" />
1313
<updated>@Model.LastUpdatedAt.ToString("yyyy-MM-dd'T'HH:mm:ss.fffK", DateTimeFormatInfo.InvariantInfo)</updated>
1414
<author>
1515
<name>Mayuki Sawatari</name>
@@ -20,7 +20,7 @@
2020
{
2121
<entry>
2222
<title>@date.ToString("yyyy-MM-dd", new CultureInfo("en-us"))</title>
23-
<link href="@Url.Action("Changes", "Home", new { Date = date.ToString("yyyy-MM-dd") }, "http")" />
23+
<link href="@Url.Action("Changes", "Home", new { Date = date.ToString("yyyy-MM-dd") }, "https")" />
2424
<id>@Url.Action("Changes", "Home", new { Date = date.ToString("yyyy-MM-dd") }, "http")</id>
2525
<updated>@Model.GetUpdatedAtByDate(date).ToString("yyyy-MM-dd'T'HH:mm:ss.fffK", DateTimeFormatInfo.InvariantInfo)</updated>
2626
<content type="html">

PlatformStatusTracker/PlatformStatusTracker.Web/Views/Home/Partial/ChangeSets.cshtml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
@if (Model.ChromeChangeSet != null && Model.ChromeChangeSet.Changes.Any())
122122
{
123123
<section>
124-
<h1><a href="http://www.chromestatus.com/features"><img src="~/images/shared/Icon-Chromium.png" alt="" p-visibility="@(!Model.HideIcon)" />Chromium</a></h1>
124+
<h1><a href="https://chromestatus.com/features"><img src="~/images/shared/Icon-Chromium.png" alt="" p-visibility="@(!Model.HideIcon)" />Chromium</a></h1>
125125
<ul class="changes">
126126
@foreach (var change in Model.ChromeChangeSet.Changes.Cast<ChromiumChangeInfo>())
127127
{
@@ -179,7 +179,7 @@
179179
@if (Model.WebKitWebCoreChangeSet != null && Model.WebKitWebCoreChangeSet.Changes.Any())
180180
{
181181
<section>
182-
<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>
182+
<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>
183183
<ul class="changes">
184184
@foreach (var change in Model.WebKitWebCoreChangeSet.Changes.Cast<WebKitChangeInfo>())
185185
{
@@ -231,7 +231,7 @@
231231
@if (Model.WebKitJavaScriptCoreChangeSet != null && Model.WebKitJavaScriptCoreChangeSet.Changes.Any())
232232
{
233233
<section>
234-
<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>
234+
<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>
235235
<ul class="changes">
236236
@foreach (var change in Model.WebKitJavaScriptCoreChangeSet.Changes.Cast<WebKitChangeInfo>())
237237
{

PlatformStatusTracker/PlatformStatusTracker.Web/Views/Shared/_Layout.cshtml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="utf-8" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<title>@(String.IsNullOrWhiteSpace(ViewBag.Title) ? "" : ViewBag.Title + " - ")Browser Platform Status Tracker</title>
8-
<link rel="alternate" type="application/atom+xml" title="Browser Platform Status Tracker" href="@Url.Action("Feed", "Home", new object(), "http")" />
8+
<link rel="alternate" type="application/atom+xml" title="Browser Platform Status Tracker" href="@Url.Action("Feed", "Home", new object(), "https")" />
99
<environment names="Development">
1010
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.css" />
1111
<link rel="stylesheet" href="~/css/site.css" />
@@ -62,8 +62,8 @@
6262
<hr />
6363
<footer>
6464
@RenderSection("Footer", required: false)
65-
<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>
66-
<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>
65+
<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>
66+
<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>
6767
<p>Mayuki Sawatari &lt;mayuki@misuzilla.org&gt;</p>
6868
</footer>
6969
</div>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
## Platform data sources
1111

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

0 commit comments

Comments
 (0)