Title: [202449] trunk/Websites/webkit.org
- Revision
- 202449
- Author
- [email protected]
- Date
- 2016-06-24 14:54:09 -0700 (Fri, 24 Jun 2016)
Log Message
Rewrite the WebKit Nightly build download URLs to use the correct secure URL.
https://bugs.webkit.org/show_bug.cgi?id=159100.
Reviewed by Joseph Pecoraro.
* wp-content/plugins/sync-nightly-builds.php:
Modified Paths
Diff
Modified: trunk/Websites/webkit.org/ChangeLog (202448 => 202449)
--- trunk/Websites/webkit.org/ChangeLog 2016-06-24 21:33:15 UTC (rev 202448)
+++ trunk/Websites/webkit.org/ChangeLog 2016-06-24 21:54:09 UTC (rev 202449)
@@ -1,3 +1,12 @@
+2016-06-24 Jon Davis <[email protected]>
+
+ Rewrite the WebKit Nightly build download URLs to use the correct secure URL.
+ https://bugs.webkit.org/show_bug.cgi?id=159100.
+
+ Reviewed by Joseph Pecoraro.
+
+ * wp-content/plugins/sync-nightly-builds.php:
+
2016-06-13 Jon Davis <[email protected]>
Minor style updates for figcaptions and post forewords.
Modified: trunk/Websites/webkit.org/wp-content/plugins/sync-nightly-builds.php (202448 => 202449)
--- trunk/Websites/webkit.org/wp-content/plugins/sync-nightly-builds.php 2016-06-24 21:33:15 UTC (rev 202448)
+++ trunk/Websites/webkit.org/wp-content/plugins/sync-nightly-builds.php 2016-06-24 21:54:09 UTC (rev 202449)
@@ -79,7 +79,11 @@
$line = trim($line);
if ( empty($line) ) break;
list($build, $timestamp, $download) = explode(',', $line);
- $records[$i] = array($build, date("F j, Y g:i A", $timestamp) . " GMT", $download);
+ $records[$i] = array(
+ $build,
+ date("F j, Y g:i A", $timestamp) . " GMT",
+ str_replace("http://builds.nightly.webkit.org/", "https://builds-nightly.webkit.org/", $download)
+ );
}
fclose($resource);
return (array)$records;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes