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 1131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1142 upon installation / first run. | 1142 upon installation / first run. |
| 1143 | 1143 |
| 1144 This policy is not available on Windows instances that are not joined to | 1144 This policy is not available on Windows instances that are not joined to |
| 1145 an Active Directory domain. (For Chrome OS, see | 1145 an Active Directory domain. (For Chrome OS, see |
| 1146 DeviceMetricsReportingEnabled.)''', | 1146 DeviceMetricsReportingEnabled.)''', |
| 1147 }, | 1147 }, |
| 1148 { | 1148 { |
| 1149 'name': 'PasswordManager', | 1149 'name': 'PasswordManager', |
| 1150 'type': 'group', | 1150 'type': 'group', |
| 1151 'caption': '''Password manager''', | 1151 'caption': '''Password manager''', |
| 1152 'desc': '''Configures the password manager. If the password manager is ena bled, then you can choose to enable or disable whether the user may show stored passwords in clear text.''', | 1152 'desc': '''Configures the password manager.''', |
| 1153 'policies': [ | 1153 'policies': [ |
| 1154 { | 1154 { |
| 1155 'name': 'PasswordManagerEnabled', | 1155 'name': 'PasswordManagerEnabled', |
| 1156 'type': 'main', | 1156 'type': 'main', |
| 1157 'schema': { 'type': 'boolean' }, | 1157 'schema': { 'type': 'boolean' }, |
| 1158 'supported_on': [ | 1158 'supported_on': [ |
| 1159 'chrome.*:8-', | 1159 'chrome.*:8-', |
| 1160 'chrome_os:11-', | 1160 'chrome_os:11-', |
| 1161 'android:30-', | 1161 'android:30-', |
| 1162 'ios:34-47', | 1162 'ios:34-47', |
| (...skipping 17 matching lines...) Expand all Loading... | |
| 1180 | 1180 |
| 1181 If this policy is enabled or disabled, users cannot change or override | 1181 If this policy is enabled or disabled, users cannot change or override |
| 1182 it in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. If this | 1182 it in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. If this |
| 1183 policy is unset, password saving is allowed (but can be turned off by | 1183 policy is unset, password saving is allowed (but can be turned off by |
| 1184 the user).''', | 1184 the user).''', |
| 1185 }, | 1185 }, |
| 1186 { | 1186 { |
| 1187 'name': 'PasswordManagerAllowShowPasswords', | 1187 'name': 'PasswordManagerAllowShowPasswords', |
| 1188 'type': 'main', | 1188 'type': 'main', |
| 1189 'schema': { 'type': 'boolean' }, | 1189 'schema': { 'type': 'boolean' }, |
| 1190 'supported_on': ['chrome.*:8-', 'chrome_os:11-'], | 1190 'supported_on': ['chrome.*:8-50', 'chrome_os:11-50'], |
| 1191 'features': { | 1191 'features': { |
| 1192 'dynamic_refresh': True, | 1192 'dynamic_refresh': True, |
| 1193 'per_profile': True, | 1193 'per_profile': True, |
| 1194 }, | 1194 }, |
| 1195 'example_value': False, | 1195 'example_value': False, |
|
bartfab (slow)
2016/04/01 14:54:16
Nit: Please add:
'deprecated': True,
vabr (Chromium)
2016/04/01 14:59:01
Done.
| |
| 1196 'id': 17, | 1196 'id': 17, |
| 1197 'caption': '''Allow users to show passwords in Password Manager''', | 1197 'caption': '''Allow users to show passwords in Password Manager (depre cated)''', |
| 1198 'tags': [], | 1198 'tags': [], |
| 1199 'desc': '''Controls whether the user may show passwords in clear text in the password manager. | 1199 'desc': '''The associated setting was used before reauthentication on viewing passwords was introduced. Since then, the setting and hence this policy had no effect on the behavior of Chrome. The current behavior of Chrome is now t he same as if the the policy was set to disable showing passwords in clear text in the password manager settings page. That means that the settings page contain s just a placeholder, and only upon the user clicking "Show" (and reauthenticati ng, if applicable) Chrome shows the password. Original description of the policy follows below. |
| 1200 | |
| 1201 Controls whether the user may show passwords in clear text in the pass word manager. | |
| 1200 | 1202 |
| 1201 If you disable this setting, the password manager does not allow showi ng stored passwords in clear text in the password manager window. | 1203 If you disable this setting, the password manager does not allow showi ng stored passwords in clear text in the password manager window. |
| 1202 | 1204 |
| 1203 If you enable or do not set this policy, users can view their password s in clear text in the password manager.''', | 1205 If you enable or do not set this policy, users can view their password s in clear text in the password manager.''', |
| 1204 }, | 1206 }, |
| 1205 ], | 1207 ], |
| 1206 }, | 1208 }, |
| 1207 { | 1209 { |
| 1208 'name': 'AutoFillEnabled', | 1210 'name': 'AutoFillEnabled', |
| 1209 'type': 'main', | 1211 'type': 'main', |
| (...skipping 7286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 8496 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''', | 8498 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''', |
| 8497 'text': 'Default Settings (users can override)', | 8499 'text': 'Default Settings (users can override)', |
| 8498 }, | 8500 }, |
| 8499 'doc_complex_policies_on_windows': { | 8501 'doc_complex_policies_on_windows': { |
| 8500 'desc': '''Text pointing the user to a help article for complex policies o n Windows''', | 8502 'desc': '''Text pointing the user to a help article for complex policies o n Windows''', |
| 8501 'text': '''encoded as a JSON string, for details see <ph name="COMPLEX_POL ICIES_URL">https://www.chromium.org/administrators/complex-policies-on-windows<e x>https://www.chromium.org/administrators/complex-policies-on-windows</ex></ph>' '', | 8503 'text': '''encoded as a JSON string, for details see <ph name="COMPLEX_POL ICIES_URL">https://www.chromium.org/administrators/complex-policies-on-windows<e x>https://www.chromium.org/administrators/complex-policies-on-windows</ex></ph>' '', |
| 8502 }, | 8504 }, |
| 8503 }, | 8505 }, |
| 8504 'placeholders': [], | 8506 'placeholders': [], |
| 8505 } | 8507 } |
| OLD | NEW |