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: 267 | 121 # For your editing convenience: highest ID currently used: 268 |
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 4521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4653 'caption': '''Use 24 hour clock by default''', | 4653 'caption': '''Use 24 hour clock by default''', |
4654 'desc': '''Specifies the clock format be used for the device. | 4654 'desc': '''Specifies the clock format be used for the device. |
4655 | 4655 |
4656 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. | 4656 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. |
4657 | 4657 |
4658 If the policy is not set to true, the device will use a 24 hour clock form
at. If the policy is set to false, the device will use 12 hour clock format. | 4658 If the policy is not set to true, the device will use a 24 hour clock form
at. If the policy is set to false, the device will use 12 hour clock format. |
4659 | 4659 |
4660 If this policy is not set, the device will default to a 24 hour clock form
at.''', | 4660 If this policy is not set, the device will default to a 24 hour clock form
at.''', |
4661 }, | 4661 }, |
4662 { | 4662 { |
| 4663 'name': 'TouchVirtualKeyboardEnabled', |
| 4664 'type': 'main', |
| 4665 'schema': { 'type': 'boolean' }, |
| 4666 'supported_on': ['chrome_os:37-' ], |
| 4667 'features': { |
| 4668 'dynamic_refresh': True, |
| 4669 'per_profile': True |
| 4670 }, |
| 4671 'example_value': False, |
| 4672 'id': 268, |
| 4673 'caption': '''Enable virtual keyboard''', |
| 4674 'desc': '''This policy configures enabling the virtual keyboard as an inpu
t device on ChromeOS. Users cannot override this policy. |
| 4675 |
| 4676 If the policy is set to true, the on-screen virtual keyboard will always b
e enabled. |
| 4677 |
| 4678 If set to false, the on-screen virtual keyboard will always be disabled. |
| 4679 |
| 4680 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. |
| 4681 |
| 4682 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.''', |
| 4683 }, |
| 4684 { |
4663 'name': 'ShowLogoutButtonInTray', | 4685 'name': 'ShowLogoutButtonInTray', |
4664 'type': 'main', | 4686 'type': 'main', |
4665 'schema': { 'type': 'boolean' }, | 4687 'schema': { 'type': 'boolean' }, |
4666 'supported_on': ['chrome_os:25-'], | 4688 'supported_on': ['chrome_os:25-'], |
4667 'features': { | 4689 'features': { |
4668 'dynamic_refresh': True, | 4690 'dynamic_refresh': True, |
4669 'per_profile': True, | 4691 'per_profile': True, |
4670 }, | 4692 }, |
4671 'example_value': True, | 4693 'example_value': True, |
4672 'id': 164, | 4694 'id': 164, |
(...skipping 1862 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6535 'desc': '''Text appended in parentheses to the policy name to indicate tha
t it has been deprecated''', | 6557 'desc': '''Text appended in parentheses to the policy name to indicate tha
t it has been deprecated''', |
6536 'text': 'deprecated', | 6558 'text': 'deprecated', |
6537 }, | 6559 }, |
6538 'doc_recommended': { | 6560 'doc_recommended': { |
6539 'desc': '''Text appended in parentheses next to the policies top-level con
tainer to indicate that those policies are of the Recommended level''', | 6561 'desc': '''Text appended in parentheses next to the policies top-level con
tainer to indicate that those policies are of the Recommended level''', |
6540 'text': 'Default Settings (users can override)', | 6562 'text': 'Default Settings (users can override)', |
6541 }, | 6563 }, |
6542 }, | 6564 }, |
6543 'placeholders': [], | 6565 'placeholders': [], |
6544 } | 6566 } |
OLD | NEW |