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 6244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6255 }, | 6255 }, |
6256 ], | 6256 ], |
6257 }, | 6257 }, |
6258 { | 6258 { |
6259 'name': 'ManagedBookmarks', | 6259 'name': 'ManagedBookmarks', |
6260 'type': 'dict', | 6260 'type': 'dict', |
6261 'schema': { | 6261 'schema': { |
6262 'type': 'array', | 6262 'type': 'array', |
6263 'items': { | 6263 'items': { |
6264 'type': 'object', | 6264 'type': 'object', |
| 6265 'id': 'BookmarkType', |
6265 'properties': { | 6266 'properties': { |
6266 'name': { 'type': 'string' }, | 6267 'name': { 'type': 'string' }, |
6267 'url': { 'type': 'string' }, | 6268 'url': { 'type': 'string' }, |
| 6269 'children': { |
| 6270 'type': 'array', |
| 6271 'items': { '$ref': 'BookmarkType' }, |
| 6272 }, |
6268 }, | 6273 }, |
6269 }, | 6274 }, |
6270 }, | 6275 }, |
6271 'supported_on': ['android:30-', 'ios:35-'], | 6276 'supported_on': [ |
| 6277 'android:30-', |
| 6278 'ios:35-', |
| 6279 'chrome.*:37-', |
| 6280 'chrome_os:37-', |
| 6281 ], |
6272 'features': { | 6282 'features': { |
6273 'dynamic_refresh': True, | 6283 'dynamic_refresh': True, |
6274 'per_profile': True, | 6284 'per_profile': True, |
6275 }, | 6285 }, |
6276 'example_value': [ | 6286 'example_value': [ |
6277 { | 6287 { |
6278 "name": "Google", | 6288 "name": "Google", |
6279 "url": "google.com" | 6289 "url": "google.com" |
6280 }, { | 6290 }, { |
6281 "name": "Youtube", | 6291 "name": "Youtube", |
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6507 'desc': '''Text appended in parentheses to the policy name to indicate tha
t it has been deprecated''', | 6517 'desc': '''Text appended in parentheses to the policy name to indicate tha
t it has been deprecated''', |
6508 'text': 'deprecated', | 6518 'text': 'deprecated', |
6509 }, | 6519 }, |
6510 'doc_recommended': { | 6520 'doc_recommended': { |
6511 'desc': '''Text appended in parentheses next to the policies top-level con
tainer to indicate that those policies are of the Recommended level''', | 6521 'desc': '''Text appended in parentheses next to the policies top-level con
tainer to indicate that those policies are of the Recommended level''', |
6512 'text': 'Default Settings (users can override)', | 6522 'text': 'Default Settings (users can override)', |
6513 }, | 6523 }, |
6514 }, | 6524 }, |
6515 'placeholders': [], | 6525 'placeholders': [], |
6516 } | 6526 } |
OLD | NEW |