2021-04-04 12:28:41 +02:00
|
|
|
From 1705c2634a2271659e3baf6b6c35f2e63bf05736 Mon Sep 17 00:00:00 2001
|
2020-07-11 02:48:54 +02:00
|
|
|
From: Luke Granger-Brown <git@lukegb.com>
|
|
|
|
Date: Sat, 11 Jul 2020 00:46:13 +0000
|
2021-04-04 12:28:41 +02:00
|
|
|
Subject: [PATCH 6/6] Always use Google Fonts.
|
2020-07-11 02:48:54 +02:00
|
|
|
|
|
|
|
We're not a corporate, and we're not behind the GFW. Always use Google Fonts,
|
|
|
|
because even though we no longer get the caching benefits (boo, browsers),
|
|
|
|
it is still a better geographically-distributed CDN.
|
|
|
|
---
|
|
|
|
java/com/google/gerrit/httpd/raw/IndexHtmlUtil.java | 2 +-
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/java/com/google/gerrit/httpd/raw/IndexHtmlUtil.java b/java/com/google/gerrit/httpd/raw/IndexHtmlUtil.java
|
2021-04-04 12:28:41 +02:00
|
|
|
index 3b2cae702a..84ce678b6d 100644
|
2020-07-11 02:48:54 +02:00
|
|
|
--- a/java/com/google/gerrit/httpd/raw/IndexHtmlUtil.java
|
|
|
|
+++ b/java/com/google/gerrit/httpd/raw/IndexHtmlUtil.java
|
2021-04-04 12:28:41 +02:00
|
|
|
@@ -182,7 +182,7 @@ public class IndexHtmlUtil {
|
2020-07-11 02:48:54 +02:00
|
|
|
if (urlParameterMap.containsKey("ce")) {
|
|
|
|
data.put("polyfillCE", "true");
|
|
|
|
}
|
|
|
|
- if (urlParameterMap.containsKey("gf")) {
|
|
|
|
+ if (/* urlParameterMap.containsKey("gf") || */ true) {
|
|
|
|
data.put("useGoogleFonts", "true");
|
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2020-11-27 18:39:35 +01:00
|
|
|
2.29.2
|
2020-07-11 02:48:54 +02:00
|
|
|
|