Chromium Code Reviews| 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 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 499 'type': 'list', | 499 'type': 'list', |
| 500 'supported_on': ['chrome.*:8-'], | 500 'supported_on': ['chrome.*:8-'], |
| 501 'annotations': { | 501 'annotations': { |
| 502 'features': {'dynamic_refresh': 1}, | 502 'features': {'dynamic_refresh': 1}, |
| 503 'example_value': ['UTF-8', 'UTF-16', 'GB2312', 'ISO-8859-1'] | 503 'example_value': ['UTF-8', 'UTF-16', 'GB2312', 'ISO-8859-1'] |
| 504 } | 504 } |
| 505 }, | 505 }, |
| 506 ] | 506 ] |
| 507 }, | 507 }, |
| 508 { | 508 { |
| 509 'name': 'ContentSettings', | |
| 510 'type': 'group', | |
| 511 'policies': [ | |
| 512 { | |
| 513 'name': 'DefaultNotificationSetting', | |
| 514 'type': 'enum', | |
| 515 'items': [ | |
| 516 {'name': 'AllowNotifications', 'value': '0'}, | |
| 517 {'name': 'BlockNotifications', 'value': '1'}, | |
| 518 {'name': 'AskNotifications', 'value': '2'}, | |
| 519 ], | |
| 520 'supported_on': ['chrome.*:8-'], | |
|
danno
2010/12/16 13:56:42
10-
markusheintz_
2010/12/16 17:29:30
Done.
| |
| 521 'annotations': { | |
| 522 'features': {'dynamic_refresh': 1}, | |
| 523 'example_value': 0, | |
| 524 } | |
| 525 }, | |
| 526 { | |
| 527 'name': 'DefaultGeolocationSetting', | |
| 528 'type': 'enum', | |
| 529 'items': [ | |
| 530 {'name': 'AllowGeolocation', 'value': '0'}, | |
| 531 {'name': 'BlockGeolocation', 'value': '1'}, | |
| 532 {'name': 'AskGeolocation', 'value': '2'}, | |
| 533 ], | |
| 534 'supported_on': ['chrome.*:8-'], | |
|
danno
2010/12/16 13:56:42
10-
markusheintz_
2010/12/16 17:29:30
Done.
| |
| 535 'annotations': { | |
| 536 'features': {'dynamic_refresh': 1}, | |
| 537 'example_value': 0, | |
| 538 } | |
| 539 }, | |
| 540 ] | |
| 541 }, | |
| 542 { | |
| 509 'name': 'ChromeFrameRendererSettings', | 543 'name': 'ChromeFrameRendererSettings', |
| 510 'type': 'group', | 544 'type': 'group', |
| 511 'policies': [{ | 545 'policies': [{ |
| 512 'name': 'ChromeFrameRendererSettings', | 546 'name': 'ChromeFrameRendererSettings', |
| 513 'type': 'enum', | 547 'type': 'enum', |
| 514 'items': [ | 548 'items': [ |
| 515 {'name': 'RenderInHost', 'value': '0'}, | 549 {'name': 'RenderInHost', 'value': '0'}, |
| 516 {'name': 'RenderInChromeFrame', 'value': '1'}, | 550 {'name': 'RenderInChromeFrame', 'value': '1'}, |
| 517 ], | 551 ], |
| 518 'supported_on': ['chrome_frame:8-'], | 552 'supported_on': ['chrome_frame:8-'], |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 571 { | 605 { |
| 572 'key': '$4', | 606 'key': '$4', |
| 573 'value': 'http://www.chromium.org/developers/how-tos/chrome-frame-getting- started' | 607 'value': 'http://www.chromium.org/developers/how-tos/chrome-frame-getting- started' |
| 574 }, | 608 }, |
| 575 { | 609 { |
| 576 'key': '$5', | 610 'key': '$5', |
| 577 'value': 'http://www.chromium.org/administrators/policy-templates' | 611 'value': 'http://www.chromium.org/administrators/policy-templates' |
| 578 }, | 612 }, |
| 579 ] | 613 ] |
| 580 } | 614 } |
| OLD | NEW |