Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(268)

Side by Side Diff: components/policy/resources/policy_templates.json

Issue 818433003: ChromeOS: Implement CaptivePortalAuthenticationIgnoresProxy policy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 { 1 {
2 # policy_templates.json - Metafile for policy templates 2 # policy_templates.json - Metafile for policy templates
3 # 3 #
4 # The content of this file is evaluated as a Python expression. 4 # The content of this file is evaluated as a Python expression.
5 # 5 #
6 # This file is used as input to generate the following policy templates: 6 # This file is used as input to generate the following policy templates:
7 # ADM, ADMX+ADML, MCX/plist and html documentation. 7 # ADM, ADMX+ADML, MCX/plist and html documentation.
8 # 8 #
9 # Policy templates are user interface definitions or documents about the 9 # Policy templates are user interface definitions or documents about the
10 # policies that can be used to configure Chrome. Each policy is a name-value 10 # policies that can be used to configure Chrome. Each policy is a name-value
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 # templates and documentation. The policy definition list that Chrome sees 116 # templates and documentation. The policy definition list that Chrome sees
117 # will include policies marked with 'future'. If a WIP policy isn't meant to 117 # will include policies marked with 'future'. If a WIP policy isn't meant to
118 # be seen by the policy providers either, the 'supported_on' key should be set 118 # be seen by the policy providers either, the 'supported_on' key should be set
119 # to an empty list. 119 # to an empty list.
120 # 120 #
121 # IDs: 121 # IDs:
122 # Since a Protocol Buffer definition is generated from this file, unique and 122 # Since a Protocol Buffer definition is generated from this file, unique and
123 # persistent IDs for all fields (but not for groups!) are needed. These are 123 # persistent IDs for all fields (but not for groups!) are needed. These are
124 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs, 124 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs,
125 # because doing so would break the deployed wire format! 125 # because doing so would break the deployed wire format!
126 # For your editing convenience: highest ID currently used: 284 126 # For your editing convenience: highest ID currently used: 285
127 # 127 #
128 # Placeholders: 128 # Placeholders:
129 # The following placeholder strings are automatically substituted: 129 # The following placeholder strings are automatically substituted:
130 # $1 -> Google Chrome / Chromium 130 # $1 -> Google Chrome / Chromium
131 # $2 -> Google Chrome OS / Chromium OS 131 # $2 -> Google Chrome OS / Chromium OS
132 # $3 -> Google Chrome Frame / Chromium Frame 132 # $3 -> Google Chrome Frame / Chromium Frame
133 # $6 is reserved for doc_writer 133 # $6 is reserved for doc_writer
134 # 134 #
135 # Device Policy: 135 # Device Policy:
136 # An additional flag device_only (optional, defaults to False) indicates 136 # An additional flag device_only (optional, defaults to False) indicates
(...skipping 1101 matching lines...) Expand 10 before | Expand all | Expand 10 after
1238 'per_profile': True, 1238 'per_profile': True,
1239 }, 1239 },
1240 'deprecated': True, 1240 'deprecated': True,
1241 'example_value': True, 1241 'example_value': True,
1242 'id': 65, 1242 'id': 65,
1243 'caption': '''Clear site data on browser shutdown (deprecated)''', 1243 'caption': '''Clear site data on browser shutdown (deprecated)''',
1244 'desc': '''This policy has been retired as of <ph name="PRODUCT_NAME">$1<e x>Google Chrome</ex></ph> version 29.''', 1244 'desc': '''This policy has been retired as of <ph name="PRODUCT_NAME">$1<e x>Google Chrome</ex></ph> version 29.''',
1245 'label': '''Clear site data on browser shutdown (deprecated)''', 1245 'label': '''Clear site data on browser shutdown (deprecated)''',
1246 }, 1246 },
1247 { 1247 {
1248 'name': 'CaptivePortalAuthenticationIgnoresProxy',
bartfab (slow) 2014/12/19 12:08:54 We have a group for proxy settings. Please move th
Alexander Alekseev 2014/12/22 22:20:11 I've moved it out of this group, because group des
1249 'type': 'int-enum',
1250 'schema': {
1251 'type': 'integer',
1252 'enum': [ 0, 1, 2 ],
1253 },
1254 'items': [
1255 {
1256 'name': 'False',
1257 'value': 0,
1258 'caption': '''Captive portal authernication will use current proxy set tings''',
bartfab (slow) 2014/12/19 12:08:54 Nit: s/authernication/authentication/
Alexander Alekseev 2014/12/22 22:20:12 Done.
1259 },
1260 {
1261 'name': 'True',
1262 'value': 1,
1263 'caption': '''Captive portal authernication window will ignore proxy s ettings''',
bartfab (slow) 2014/12/19 12:08:54 Nit: s/authernication/authentication/
Alexander Alekseev 2014/12/22 22:20:11 Done.
1264 },
1265 {
1266 'name': 'UserDefined',
1267 'value': 2,
1268 'caption': '''Users will be able to configure this parameter in about: flags''',
bartfab (slow) 2014/12/19 12:08:54 about:flags is not meant to be a place where you t
Alexander Alekseev 2014/12/22 22:20:11 Done.
1269 },
1270 ],
1271 'supported_on': ['chrome_os:41-'],
1272 'features': {
1273 'can_be_recommended': False,
bartfab (slow) 2014/12/19 12:08:54 Your option 2 is semantically very close to a reco
Alexander Alekseev 2014/12/22 22:20:11 As far, as I understand discussion in https://docs
1274 'dynamic_refresh': True,
1275 'per_profile': True,
1276 },
1277 'example_value': 0,
1278 'id': 285,
1279 'caption': '''Captive Portal Authentication Ignores Proxy''',
bartfab (slow) 2014/12/19 12:08:54 Nit: Please use regular capitalization, not title
Alexander Alekseev 2014/12/22 22:20:11 Done.
1280 'desc': '''<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> will bypa ss any proxy for Captive Portal authentication.
1281
1282 This policy only takes effect if proxy is configured (either in domain pol icy, or by user in chrome:settings).
bartfab (slow) 2014/12/19 12:08:54 Nit 1: s/in domain/through/ Nit 2: s/by/by the/ Ni
Alexander Alekseev 2014/12/22 22:20:11 Done.
1283
1284 If you enable this setting, captive portal authentication page will be dis played in a separate window ignoring all proxy settings.
bartfab (slow) 2014/12/19 12:08:54 Nit 1: s/captive/any captive/ Nit 2: s/page/pages/
Alexander Alekseev 2014/12/22 22:20:11 Done.
1285
1286 If you disable this setting, captive portal authentication page will be sh own in a (regular) new browser tab.
bartfab (slow) 2014/12/19 12:08:54 Nit 1: s/captive/any captive/ Nit 2: s/page/pages/
Alexander Alekseev 2014/12/22 22:20:11 Done.
1287
1288 If you set this policy to 'UserDefined', users would be able to configure this parameter in about:flags.
bartfab (slow) 2014/12/19 12:08:54 As discussed above, this should be handled via rec
Alexander Alekseev 2014/12/22 22:20:11 Done.
1289
1290 Leaving this policy not set eaquals to 'False' policy value.''',
bartfab (slow) 2014/12/19 12:08:54 Nit 1: s/eaquals/equals/ Nit 2: You can fold this
Alexander Alekseev 2014/12/22 22:20:11 Done.
1291 },
1292 {
1248 'name': 'Proxy', 1293 'name': 'Proxy',
1249 'type': 'group', 1294 'type': 'group',
1250 'caption': '''Proxy server''', 1295 'caption': '''Proxy server''',
1251 'desc': '''Allows you to specify the proxy server used by <ph name="PRODUC T_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing proxy set tings. 1296 'desc': '''Allows you to specify the proxy server used by <ph name="PRODUC T_NAME">$1<ex>Google Chrome</ex></ph> and prevents users from changing proxy set tings.
1252 1297
1253 If you choose to never use a proxy server and always connect directly, all other options are ignored. 1298 If you choose to never use a proxy server and always connect directly, all other options are ignored.
1254 1299
1255 If you choose to auto detect the proxy server, all other options are ignor ed. 1300 If you choose to auto detect the proxy server, all other options are ignor ed.
1256 1301
1257 For detailed examples, visit: 1302 For detailed examples, visit:
(...skipping 5903 matching lines...) Expand 10 before | Expand all | Expand 10 after
7161 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''', 7206 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''',
7162 'text': 'Default Settings (users can override)', 7207 'text': 'Default Settings (users can override)',
7163 }, 7208 },
7164 'doc_complex_policies_on_windows': { 7209 'doc_complex_policies_on_windows': {
7165 'desc': '''Text pointing the user to a help article for complex policies o n Windows''', 7210 'desc': '''Text pointing the user to a help article for complex policies o n Windows''',
7166 'text': '''encoded as a JSON string, for details see <ph name="COMPLEX_POL ICIES_URL">http://www.chromium.org/administrators/complex-policies-on-windows<ex >http://www.chromium.org/administrators/complex-policies-on-windows</ex></ph>''' , 7211 'text': '''encoded as a JSON string, for details see <ph name="COMPLEX_POL ICIES_URL">http://www.chromium.org/administrators/complex-policies-on-windows<ex >http://www.chromium.org/administrators/complex-policies-on-windows</ex></ph>''' ,
7167 }, 7212 },
7168 }, 7213 },
7169 'placeholders': [], 7214 'placeholders': [],
7170 } 7215 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698