Title: [265301] trunk/Websites/webkit.org
- Revision
- 265301
- Author
- j...@apple.com
- Date
- 2020-08-05 12:51:59 -0700 (Wed, 05 Aug 2020)
Log Message
Enhance feature status page origin for flexible test environments
https://bugs.webkit.org/show_bug.cgi?id=215178
Reviewed by Devin Rousso.
* wp-content/themes/webkit/css-status.php:
* wp-content/themes/webkit/status.php:
Modified Paths
Diff
Modified: trunk/Websites/webkit.org/ChangeLog (265300 => 265301)
--- trunk/Websites/webkit.org/ChangeLog 2020-08-05 19:40:56 UTC (rev 265300)
+++ trunk/Websites/webkit.org/ChangeLog 2020-08-05 19:51:59 UTC (rev 265301)
@@ -1,3 +1,13 @@
+2020-08-05 Jon Davis <j...@apple.com>
+
+ Enhance feature status page origin for flexible test environments
+ https://bugs.webkit.org/show_bug.cgi?id=215178
+
+ Reviewed by Devin Rousso.
+
+ * wp-content/themes/webkit/css-status.php:
+ * wp-content/themes/webkit/status.php:
+
2020-04-23 Filip Pizlo <fpi...@apple.com>
Unreviewed, check in some more files for a blog post.
Modified: trunk/Websites/webkit.org/wp-content/themes/webkit/css-status.php (265300 => 265301)
--- trunk/Websites/webkit.org/wp-content/themes/webkit/css-status.php 2020-08-05 19:40:56 UTC (rev 265300)
+++ trunk/Websites/webkit.org/wp-content/themes/webkit/css-status.php 2020-08-05 19:51:59 UTC (rev 265301)
@@ -29,7 +29,7 @@
});
}
-var origin = new URL("https://<?php echo strpos(WP_HOST, "webkit.org") !== false ? "svn.webkit.org" : WP_HOST; ?>/");
+var origin = new URL("<?php echo strpos(WP_HOST, "webkit.org") !== false ? "https://svn.webkit.org" : WP_HOME; ?>/");
var loadCSSProperties = xhrPromise(new URL("/repository/webkit/trunk/Source/WebCore/css/CSSProperties.json", origin));
</script>
Modified: trunk/Websites/webkit.org/wp-content/themes/webkit/status.php (265300 => 265301)
--- trunk/Websites/webkit.org/wp-content/themes/webkit/status.php 2020-08-05 19:40:56 UTC (rev 265300)
+++ trunk/Websites/webkit.org/wp-content/themes/webkit/status.php 2020-08-05 19:51:59 UTC (rev 265301)
@@ -28,7 +28,7 @@
xhrRequest.send();
});
}
-var origin = new URL("https://<?php echo strpos(WP_HOST, "webkit.org") !== false ? "svn.webkit.org" : WP_HOST; ?>/");
+var origin = new URL("<?php echo strpos(WP_HOST, "webkit.org") !== false ? "https://svn.webkit.org" : WP_HOME; ?>/");
var loadJavaScriptCoreFeatures = xhrPromise(new URL("/repository/webkit/trunk/Source/_javascript_Core/features.json", origin));
var loadWebCoreFeatures = xhrPromise(new URL("/repository/webkit/trunk/Source/WebCore/features.json", origin));
</script>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes