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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 # policy configuration files. 'dynamic_refresh' controls if the generated | 87 # policy configuration files. 'dynamic_refresh' controls if the generated |
88 # documentation should state that the policy supports dynamic refresh or not. | 88 # documentation should state that the policy supports dynamic refresh or not. |
89 # Supporting dynamic refresh means that Chrome respects the changes to the | 89 # Supporting dynamic refresh means that Chrome respects the changes to the |
90 # policy immediately, without the need for restart. | 90 # policy immediately, without the need for restart. |
91 # | 91 # |
92 # IDs: | 92 # IDs: |
93 # Since a Protocol Buffer definition is generated from this file, unique and | 93 # Since a Protocol Buffer definition is generated from this file, unique and |
94 # persistent IDs for all fields (but not for groups!) are needed. These are | 94 # persistent IDs for all fields (but not for groups!) are needed. These are |
95 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs, | 95 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs, |
96 # because doing so would break the deployed wire format! | 96 # because doing so would break the deployed wire format! |
97 # For your editing convenience: highest ID currently used: 101 | 97 # For your editing convenience: highest ID currently used: 103 |
98 # | 98 # |
99 # Placeholders: | 99 # Placeholders: |
100 # The following placeholder strings are automatically substituted: | 100 # The following placeholder strings are automatically substituted: |
101 # $1 -> Google Chrome / Chromium | 101 # $1 -> Google Chrome / Chromium |
102 # $2 -> Google Chrome OS / Chromium OS | 102 # $2 -> Google Chrome OS / Chromium OS |
103 # $3 -> Google Chrome Frame / Chromium Frame | 103 # $3 -> Google Chrome Frame / Chromium Frame |
104 # $6 is reserved for doc_writer | 104 # $6 is reserved for doc_writer |
105 # | 105 # |
106 # Device Policy: | 106 # Device Policy: |
107 # An additional flag device_only (optional, defaults to False) indicates | 107 # An additional flag device_only (optional, defaults to False) indicates |
(...skipping 1157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1265 }, | 1265 }, |
1266 ], | 1266 ], |
1267 'supported_on': ['chrome.*:10-', 'chrome_os:0.11-'], | 1267 'supported_on': ['chrome.*:10-', 'chrome_os:0.11-'], |
1268 'features': {'dynamic_refresh': 1}, | 1268 'features': {'dynamic_refresh': 1}, |
1269 'example_value': 0, | 1269 'example_value': 0, |
1270 'id': 54, | 1270 'id': 54, |
1271 'caption': '''Default geolocation setting''', | 1271 'caption': '''Default geolocation setting''', |
1272 'desc': '''Allows you to set whether websites are allowed to track the
users' physical location. Tracking the users' physical location can be allowed
by default, denied by default or the user can be asked everytime a website reque
sts the pysical location.''', | 1272 'desc': '''Allows you to set whether websites are allowed to track the
users' physical location. Tracking the users' physical location can be allowed
by default, denied by default or the user can be asked everytime a website reque
sts the pysical location.''', |
1273 }, | 1273 }, |
1274 { | 1274 { |
| 1275 'name': 'DefaultAutoSelectCertificateSetting', |
| 1276 'type': 'int-enum', |
| 1277 'items': [ |
| 1278 { |
| 1279 'name': 'AllowAutoSelectCertificate', |
| 1280 'value': 1, |
| 1281 'caption': '''Allows <ph name="PRODUCT_NAME">$1<ex>Google Chrome</
ex></ph> to automatically select client certificates.''' |
| 1282 }, |
| 1283 { |
| 1284 'name': 'AskAutoSelectCertificate', |
| 1285 'value': 3, |
| 1286 'caption': '''Asks the user to select a certificate whenever a sit
e requests a client certificate.''', |
| 1287 }, |
| 1288 ], |
| 1289 'supported_on': ['chrome.*:15-', 'chrome_os:0.15-'], |
| 1290 'features': {'dynamic_refresh': 1}, |
| 1291 'example_value': 1, |
| 1292 'id': 102, |
| 1293 'caption': '''Default setting for selecting client certificates''', |
| 1294 'desc': '''Allows you to set whether a client certificate should be au
tomatically selected by <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> (i
f possible), the user should be asked to select a client certificate or no certi
ficates should be sent to sites requesting client certificates.''', |
| 1295 }, |
| 1296 { |
| 1297 'name': 'AutoSelectCertificateForUrls', |
| 1298 'type': 'list', |
| 1299 'supported_on': ['chrome.*:15-', 'chrome_os:0.15-'], |
| 1300 'features': {'dynamic_refresh': 1}, |
| 1301 'example_value': ['https://www.example.com', '[*.]example.edu'], |
| 1302 'id': 103, |
| 1303 'caption': '''Automatically select client certificates for these sites
''', |
| 1304 'desc': '''Allows you to specify a list of url patterns that specify s
ites for which <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> should auto
matically select a client certificates, if the site requests a certificate.''', |
| 1305 }, |
| 1306 { |
1275 'name': 'CookiesAllowedForUrls', | 1307 'name': 'CookiesAllowedForUrls', |
1276 'type': 'list', | 1308 'type': 'list', |
1277 'supported_on': ['chrome.*:11-', 'chrome_os:0.11-'], | 1309 'supported_on': ['chrome.*:11-', 'chrome_os:0.11-'], |
1278 'features': {'dynamic_refresh': 1}, | 1310 'features': {'dynamic_refresh': 1}, |
1279 'example_value': ['http://www.example.com', '[*.]example.edu'], | 1311 'example_value': ['http://www.example.com', '[*.]example.edu'], |
1280 'id': 77, | 1312 'id': 77, |
1281 'caption': '''Allow cookies on these sites''', | 1313 'caption': '''Allow cookies on these sites''', |
1282 'desc': '''Allows you to set a list of url patterns that specify sites
which are allowed to set cookies.''', | 1314 'desc': '''Allows you to set a list of url patterns that specify sites
which are allowed to set cookies.''', |
1283 }, | 1315 }, |
1284 { | 1316 { |
(...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1830 'desc': '''The name of the feature that indicates for a given policy that
changes to it are respected by Chrome without a browser restart''', | 1862 'desc': '''The name of the feature that indicates for a given policy that
changes to it are respected by Chrome without a browser restart''', |
1831 'text': '''Dynamic Policy Refresh''' | 1863 'text': '''Dynamic Policy Refresh''' |
1832 }, | 1864 }, |
1833 'doc_deprecated': { | 1865 'doc_deprecated': { |
1834 'desc': '''Text appended in parentheses to the policy name to indicate t h
at it has been deprecated''', | 1866 'desc': '''Text appended in parentheses to the policy name to indicate t h
at it has been deprecated''', |
1835 'text': 'deprecated', | 1867 'text': 'deprecated', |
1836 } | 1868 } |
1837 }, | 1869 }, |
1838 'placeholders': [], | 1870 'placeholders': [], |
1839 } | 1871 } |
OLD | NEW |