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: 254 | 121 # For your editing convenience: highest ID currently used: 255 |
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 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
618 'dynamic_refresh': True, | 618 'dynamic_refresh': True, |
619 'per_profile': False, | 619 'per_profile': False, |
620 }, | 620 }, |
621 'example_value': False, | 621 'example_value': False, |
622 'id': 234, | 622 'id': 234, |
623 'caption': '''Enable or disable PIN-less authentication''', | 623 'caption': '''Enable or disable PIN-less authentication''', |
624 'desc': '''If this setting is enabled or not configured, then users ca
n opt to pair clients and hosts at connection time, eliminating the need to ente
r a PIN every time. | 624 'desc': '''If this setting is enabled or not configured, then users ca
n opt to pair clients and hosts at connection time, eliminating the need to ente
r a PIN every time. |
625 | 625 |
626 If this setting is disabled, then this feature will not be available.'
'', | 626 If this setting is disabled, then this feature will not be available.'
'', |
627 }, | 627 }, |
| 628 { |
| 629 'name': 'RemoteAccessHostAllowGnubbyAuth', |
| 630 'type': 'main', |
| 631 'schema': { 'type': 'boolean' }, |
| 632 'supported_on': ['chrome.*:35-'], |
| 633 'features': { |
| 634 'dynamic_refresh': True, |
| 635 'per_profile': False, |
| 636 }, |
| 637 'example_value': True, |
| 638 'id': 255, |
| 639 'caption': '''Allow gnubby authentication''', |
| 640 'desc': '''If this setting is enabled, then gnubby authentication requ
ests will be proxied across a remote host connection. |
| 641 |
| 642 If this setting is disabled or not configured, gnubby authentication r
equests will not be proxied.''', |
| 643 }, |
628 ], | 644 ], |
629 }, | 645 }, |
630 { | 646 { |
631 'name': 'PrintingEnabled', | 647 'name': 'PrintingEnabled', |
632 'type': 'main', | 648 'type': 'main', |
633 'schema': { 'type': 'boolean' }, | 649 'schema': { 'type': 'boolean' }, |
634 'supported_on': ['chrome.*:8-', 'chrome_os:11-'], | 650 'supported_on': ['chrome.*:8-', 'chrome_os:11-'], |
635 'features': { | 651 'features': { |
636 'dynamic_refresh': True, | 652 'dynamic_refresh': True, |
637 'per_profile': True, | 653 'per_profile': True, |
(...skipping 5483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6121 'desc': '''Text appended in parentheses to the policy name to indicate tha
t it has been deprecated''', | 6137 'desc': '''Text appended in parentheses to the policy name to indicate tha
t it has been deprecated''', |
6122 'text': 'deprecated', | 6138 'text': 'deprecated', |
6123 }, | 6139 }, |
6124 'doc_recommended': { | 6140 'doc_recommended': { |
6125 'desc': '''Text appended in parentheses next to the policies top-level con
tainer to indicate that those policies are of the Recommended level''', | 6141 'desc': '''Text appended in parentheses next to the policies top-level con
tainer to indicate that those policies are of the Recommended level''', |
6126 'text': 'Default Settings (users can override)', | 6142 'text': 'Default Settings (users can override)', |
6127 }, | 6143 }, |
6128 }, | 6144 }, |
6129 'placeholders': [], | 6145 'placeholders': [], |
6130 } | 6146 } |
OLD | NEW |