]> git.p6c8.net - policy-templates.git/commitdiff
Merge pull request #1142 from qupig/master
authorMichael Kaply <345868+mkaply@users.noreply.github.com>
Sun, 11 Aug 2024 12:42:19 +0000 (08:42 -0400)
committerGitHub <noreply@github.com>
Sun, 11 Aug 2024 12:42:19 +0000 (08:42 -0400)
Remove space that should not exist in key name

docs/index.md
linux/policies.json
mac/org.mozilla.firefox.plist
windows/en-US/firefox.adml

index b6667db0ace57fc05867111ce6c51444894c2702..130ed1d35be5f9cd35d16a2052261cd50ddbd70f 100644 (file)
@@ -3796,7 +3796,7 @@ Software\Policies\Mozilla\Firefox\HttpAllowlist\2 = "http://example.edu"
 #### Windows (Intune)
 OMA-URI:
 ```
-./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/HttpAllowlist 
+./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/HttpAllowlist
 ```
 Value (string):
 ```
@@ -3806,7 +3806,7 @@ Value (string):
 #### macOS
 ```
 <dict>
-  <key>HttpAllowlist </key>
+  <key>HttpAllowlist</key>
   <array>
     <string>http://example.org</string>
     <string>http://example.edu</string>
@@ -3817,7 +3817,7 @@ Value (string):
 ```
 {
   "policies": {
-    "HttpAllowlist ": ["http://example.org",
+    "HttpAllowlist": ["http://example.org",
                        "http://example.edu"]
   }
 }
index 7e1fdd485a8c0cc0d41dfaca7d6a9de51b33b0a5..003731c576964bc86acda2e58fcb79c16acd158b 100644 (file)
                     "http://example.edu/"],
       "StartPage": "none" | "homepage" | "previous-session" | "homepage-locked"
     },
-    "HttpAllowlist ": ["http://example.org",
+    "HttpAllowlist": ["http://example.org",
                        "http://example.edu"],
     "HttpsOnlyMode": "allowed" | "disallowed" | "enabled" | "force_enabled",
     "InstallAddonsPermission": {
index 70431803ffcc1f0ab5c6714f732c2ccfad38fdc0..f6348d312651f41a1f40611a38137c89dcfe8192 100644 (file)
                <key>StartPage</key>
                <string>homepage</string>
        </dict>
-       <key>HttpAllowlist </key>
+       <key>HttpAllowlist</key>
        <array>
                <string>http://example.org</string>
                <string>http://example.edu</string>
index 58655efd9cee0a06b7f143e702f78ce0974a4f1e..18518ed5b6c47c08b86f57a81ba925b3304ab18e 100644 (file)
@@ -1114,7 +1114,7 @@ If this policy is disabled or not configured, HTTPS-Only Mode is not enabled.</s
       <string id="HttpsOnlyMode_Disallowed">Off and locked</string>
       <string id="HttpsOnlyMode_Enabled">On by default</string>
       <string id="HttpsOnlyMode_ForceEnabled">On and locked</string>
-      <string id="HttpAllowlist">HTTP Allowlist </string>
+      <string id="HttpAllowlist">HTTP Allowlist</string>
       <string id="HttpAllowlist_Explain">If this policy is enabled, you can specify a list origins that will not be upgraded to HTTPS.
 
 If this policy is disabled or not configured, all origins are upgraded to HTTPS if HTTPS-Only Mode is enabled.</string>

patrick-canterino.de