| OLD | NEW |
| 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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 'name': 'ProxyServerMode', | 256 'name': 'ProxyServerMode', |
| 257 'type': 'enum', | 257 'type': 'enum', |
| 258 'items': [ | 258 'items': [ |
| 259 {'name': 'ProxyServerDisabled', 'value': '0'}, | 259 {'name': 'ProxyServerDisabled', 'value': '0'}, |
| 260 {'name': 'ProxyServerAutoDetect', 'value': '1'}, | 260 {'name': 'ProxyServerAutoDetect', 'value': '1'}, |
| 261 {'name': 'ProxyServerManual', 'value': '2'}, | 261 {'name': 'ProxyServerManual', 'value': '2'}, |
| 262 {'name': 'ProxyServerUseSystem', 'value': '3'}, | 262 {'name': 'ProxyServerUseSystem', 'value': '3'}, |
| 263 ], | 263 ], |
| 264 'supported_on': ['chrome.*:8-'], | 264 'supported_on': ['chrome.*:8-'], |
| 265 'annotations': { | 265 'annotations': { |
| 266 'features': {'dynamic_refresh': 0}, | 266 'features': {'dynamic_refresh': 1}, |
| 267 'example_value': 2, | 267 'example_value': 2, |
| 268 } | 268 } |
| 269 }, | 269 }, |
| 270 { | 270 { |
| 271 'name': 'ProxyServer', | 271 'name': 'ProxyServer', |
| 272 'type': 'string', | 272 'type': 'string', |
| 273 'supported_on': ['chrome.*:8-'], | 273 'supported_on': ['chrome.*:8-'], |
| 274 'annotations': { | 274 'annotations': { |
| 275 'features': {'dynamic_refresh': 0}, | 275 'features': {'dynamic_refresh': 1}, |
| 276 'example_value': '123.123.123.123:8080', | 276 'example_value': '123.123.123.123:8080', |
| 277 } | 277 } |
| 278 }, | 278 }, |
| 279 { | 279 { |
| 280 'name': 'ProxyPacUrl', | 280 'name': 'ProxyPacUrl', |
| 281 'type': 'string', | 281 'type': 'string', |
| 282 'supported_on': ['chrome.*:8-'], | 282 'supported_on': ['chrome.*:8-'], |
| 283 'annotations': { | 283 'annotations': { |
| 284 'features': {'dynamic_refresh': 0}, | 284 'features': {'dynamic_refresh': 1}, |
| 285 'example_value': 'http://internal.site/example.pac' | 285 'example_value': 'http://internal.site/example.pac' |
| 286 } | 286 } |
| 287 }, | 287 }, |
| 288 { | 288 { |
| 289 'name': 'ProxyBypassList', | 289 'name': 'ProxyBypassList', |
| 290 'type': 'string', | 290 'type': 'string', |
| 291 'supported_on': ['chrome.*:8-'], | 291 'supported_on': ['chrome.*:8-'], |
| 292 'annotations': { | 292 'annotations': { |
| 293 'features': {'dynamic_refresh': 0}, | 293 'features': {'dynamic_refresh': 1}, |
| 294 'example_value': | 294 'example_value': |
| 295 'http://www.example1.com,' | 295 'http://www.example1.com,' |
| 296 'http://www.example2.com,http://internalsite/', | 296 'http://www.example2.com,http://internalsite/', |
| 297 } | 297 } |
| 298 }, | 298 }, |
| 299 ] | 299 ] |
| 300 }, | 300 }, |
| 301 { | 301 { |
| 302 'name': 'HTTPAuthentication', | 302 'name': 'HTTPAuthentication', |
| 303 'type': 'group', | 303 'type': 'group', |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 571 { | 571 { |
| 572 'key': '$4', | 572 'key': '$4', |
| 573 'value': 'http://www.chromium.org/developers/how-tos/chrome-frame-getting-
started' | 573 'value': 'http://www.chromium.org/developers/how-tos/chrome-frame-getting-
started' |
| 574 }, | 574 }, |
| 575 { | 575 { |
| 576 'key': '$5', | 576 'key': '$5', |
| 577 'value': 'http://www.chromium.org/administrators/policy-templates' | 577 'value': 'http://www.chromium.org/administrators/policy-templates' |
| 578 }, | 578 }, |
| 579 ] | 579 ] |
| 580 } | 580 } |
| OLD | NEW |