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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 111 # templates and documentation. The policy definition list that Chrome sees | 111 # templates and documentation. The policy definition list that Chrome sees |
| 112 # will include policies marked with 'future'. If a WIP policy isn't meant to | 112 # will include policies marked with 'future'. If a WIP policy isn't meant to |
| 113 # be seen by the policy providers either, the 'supported_on' key should be set | 113 # be seen by the policy providers either, the 'supported_on' key should be set |
| 114 # to an empty list. | 114 # to an empty list. |
| 115 # | 115 # |
| 116 # IDs: | 116 # IDs: |
| 117 # Since a Protocol Buffer definition is generated from this file, unique and | 117 # Since a Protocol Buffer definition is generated from this file, unique and |
| 118 # persistent IDs for all fields (but not for groups!) are needed. These are | 118 # persistent IDs for all fields (but not for groups!) are needed. These are |
| 119 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs, | 119 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs, |
| 120 # because doing so would break the deployed wire format! | 120 # because doing so would break the deployed wire format! |
| 121 # For your editing convenience: highest ID currently used: 268 | 121 # For your editing convenience: highest ID currently used: 269 |
| 122 # | 122 # |
| 123 # Placeholders: | 123 # Placeholders: |
| 124 # The following placeholder strings are automatically substituted: | 124 # The following placeholder strings are automatically substituted: |
| 125 # $1 -> Google Chrome / Chromium | 125 # $1 -> Google Chrome / Chromium |
| 126 # $2 -> Google Chrome OS / Chromium OS | 126 # $2 -> Google Chrome OS / Chromium OS |
| 127 # $3 -> Google Chrome Frame / Chromium Frame | 127 # $3 -> Google Chrome Frame / Chromium Frame |
| 128 # $6 is reserved for doc_writer | 128 # $6 is reserved for doc_writer |
| 129 # | 129 # |
| 130 # Device Policy: | 130 # Device Policy: |
| 131 # An additional flag device_only (optional, defaults to False) indicates | 131 # An additional flag device_only (optional, defaults to False) indicates |
| (...skipping 4557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 4689 'caption': '''Use 24 hour clock by default''', | 4689 'caption': '''Use 24 hour clock by default''', |
| 4690 'desc': '''Specifies the clock format be used for the device. | 4690 'desc': '''Specifies the clock format be used for the device. |
| 4691 | 4691 |
| 4692 This policy configures the clock format to use on the login screen and as a default for user sessions. Users can still override the clock format for their account. | 4692 This policy configures the clock format to use on the login screen and as a default for user sessions. Users can still override the clock format for their account. |
| 4693 | 4693 |
| 4694 If the policy is set to true, the device will use a 24 hour clock format. If the policy is set to false, the device will use 12 hour clock format. | 4694 If the policy is set to true, the device will use a 24 hour clock format. If the policy is set to false, the device will use 12 hour clock format. |
| 4695 | 4695 |
| 4696 If this policy is not set, the device will default to a 24 hour clock form at.''', | 4696 If this policy is not set, the device will default to a 24 hour clock form at.''', |
| 4697 }, | 4697 }, |
| 4698 { | 4698 { |
| 4699 'name': 'TouchVirtualKeyboardEnabled', | |
| 4700 'type': 'main', | |
| 4701 'schema': { 'type': 'boolean' }, | |
| 4702 'supported_on': ['chrome_os:37-' ], | |
| 4703 'features': { | |
| 4704 'dynamic_refresh': True, | |
| 4705 'per_profile': True | |
|
Joao da Silva
2014/06/17 16:38:25
Please confirm that this policy works with multipr
| |
| 4706 }, | |
| 4707 'example_value': False, | |
| 4708 'id': 269, | |
| 4709 'caption': '''Enable virtual keyboard''', | |
| 4710 'desc': '''This policy configures enabling the virtual keyboard as an inpu t device on ChromeOS. Users cannot override this policy. | |
| 4711 | |
| 4712 If the policy is set to true, the on-screen virtual keyboard will always b e enabled. | |
| 4713 | |
| 4714 If set to false, the on-screen virtual keyboard will always be disabled. | |
| 4715 | |
| 4716 If you set this policy, users cannot change or override it. However, users will still be able to enable/disable an accessibility on-screen keyboard which takes precedence over the virtual keyboard controlled by this policy. See the |V irtualKeyboardEnabled| policy for controlling the accessibility on-screen keyboa rd. | |
| 4717 | |
| 4718 If this policy is left unset, the on-screen keyboard is disabled initially but can be enabled by the user anytime. Heuristic rules may also be used to dec ide when to display the keyboard.''', | |
| 4719 }, | |
| 4720 { | |
| 4699 'name': 'ShowLogoutButtonInTray', | 4721 'name': 'ShowLogoutButtonInTray', |
| 4700 'type': 'main', | 4722 'type': 'main', |
| 4701 'schema': { 'type': 'boolean' }, | 4723 'schema': { 'type': 'boolean' }, |
| 4702 'supported_on': ['chrome_os:25-'], | 4724 'supported_on': ['chrome_os:25-'], |
| 4703 'features': { | 4725 'features': { |
| 4704 'dynamic_refresh': True, | 4726 'dynamic_refresh': True, |
| 4705 'per_profile': True, | 4727 'per_profile': True, |
| 4706 }, | 4728 }, |
| 4707 'example_value': True, | 4729 'example_value': True, |
| 4708 'id': 164, | 4730 'id': 164, |
| (...skipping 1862 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 6571 'desc': '''Text appended in parentheses to the policy name to indicate tha t it has been deprecated''', | 6593 'desc': '''Text appended in parentheses to the policy name to indicate tha t it has been deprecated''', |
| 6572 'text': 'deprecated', | 6594 'text': 'deprecated', |
| 6573 }, | 6595 }, |
| 6574 'doc_recommended': { | 6596 'doc_recommended': { |
| 6575 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''', | 6597 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''', |
| 6576 'text': 'Default Settings (users can override)', | 6598 'text': 'Default Settings (users can override)', |
| 6577 }, | 6599 }, |
| 6578 }, | 6600 }, |
| 6579 'placeholders': [], | 6601 'placeholders': [], |
| 6580 } | 6602 } |
| OLD | NEW |