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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 # templates and documentation. The policy definition list that Chrome sees | 116 # templates and documentation. The policy definition list that Chrome sees |
117 # will include policies marked with 'future'. If a WIP policy isn't meant to | 117 # will include policies marked with 'future'. If a WIP policy isn't meant to |
118 # be seen by the policy providers either, the 'supported_on' key should be set | 118 # be seen by the policy providers either, the 'supported_on' key should be set |
119 # to an empty list. | 119 # to an empty list. |
120 # | 120 # |
121 # IDs: | 121 # IDs: |
122 # Since a Protocol Buffer definition is generated from this file, unique and | 122 # Since a Protocol Buffer definition is generated from this file, unique and |
123 # persistent IDs for all fields (but not for groups!) are needed. These are | 123 # persistent IDs for all fields (but not for groups!) are needed. These are |
124 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs, | 124 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs, |
125 # because doing so would break the deployed wire format! | 125 # because doing so would break the deployed wire format! |
126 # For your editing convenience: highest ID currently used: 278 | 126 # For your editing convenience: highest ID currently used: 279 |
127 # | 127 # |
128 # Placeholders: | 128 # Placeholders: |
129 # The following placeholder strings are automatically substituted: | 129 # The following placeholder strings are automatically substituted: |
130 # $1 -> Google Chrome / Chromium | 130 # $1 -> Google Chrome / Chromium |
131 # $2 -> Google Chrome OS / Chromium OS | 131 # $2 -> Google Chrome OS / Chromium OS |
132 # $3 -> Google Chrome Frame / Chromium Frame | 132 # $3 -> Google Chrome Frame / Chromium Frame |
133 # $6 is reserved for doc_writer | 133 # $6 is reserved for doc_writer |
134 # | 134 # |
135 # Device Policy: | 135 # Device Policy: |
136 # An additional flag device_only (optional, defaults to False) indicates | 136 # An additional flag device_only (optional, defaults to False) indicates |
(...skipping 6647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6784 'dynamic_refresh': True, | 6784 'dynamic_refresh': True, |
6785 'per_profile': False, | 6785 'per_profile': False, |
6786 }, | 6786 }, |
6787 'example_value': True, | 6787 'example_value': True, |
6788 'id': 276, | 6788 'id': 276, |
6789 'caption': '''Enable add person in profile manager''', | 6789 'caption': '''Enable add person in profile manager''', |
6790 'desc': '''If this policy is set to true or not configured, <ph name="PROD
UCT_NAME">$1<ex>Google Chrome</ex></ph> will allow Add Person from the user mana
ger. | 6790 'desc': '''If this policy is set to true or not configured, <ph name="PROD
UCT_NAME">$1<ex>Google Chrome</ex></ph> will allow Add Person from the user mana
ger. |
6791 | 6791 |
6792 If this policy is set to false, <ph name="PRODUCT_NAME">$1<ex>Google Chrom
e</ex></ph> will not allow creation of new profiles from the profile manager.'''
, | 6792 If this policy is set to false, <ph name="PRODUCT_NAME">$1<ex>Google Chrom
e</ex></ph> will not allow creation of new profiles from the profile manager.'''
, |
6793 }, | 6793 }, |
| 6794 { |
| 6795 'name': 'SSLVersionMin', |
| 6796 'type': 'string-enum', |
| 6797 'schema': { |
| 6798 'type': 'string', |
| 6799 'enum': [ |
| 6800 'ssl3', |
| 6801 'tls1', |
| 6802 'tls1.1', |
| 6803 'tls1.2', |
| 6804 ], |
| 6805 }, |
| 6806 'items': [ |
| 6807 { |
| 6808 'name': 'SSLv3', |
| 6809 'value': 'ssl3', |
| 6810 'caption': 'SSL 3.0', |
| 6811 }, |
| 6812 { |
| 6813 'name': 'TLSv1', |
| 6814 'value': 'tls1', |
| 6815 'caption': 'TLS 1.0', |
| 6816 }, |
| 6817 { |
| 6818 'name': 'TLSv1.1', |
| 6819 'value': 'tls1.1', |
| 6820 'caption': 'TLS 1.1', |
| 6821 }, |
| 6822 { |
| 6823 'name': 'TLSv1.2', |
| 6824 'value': 'tls1.2', |
| 6825 'caption': 'TLS 1.2', |
| 6826 }, |
| 6827 ], |
| 6828 'supported_on': [ |
| 6829 'chrome.*:39-', |
| 6830 'chrome_os:39-', |
| 6831 'android:39-', |
| 6832 'ios:39-', |
| 6833 ], |
| 6834 'features': { |
| 6835 'dynamic_refresh': True, |
| 6836 'per_profile': False, |
| 6837 }, |
| 6838 'example_value': 'ssl3', |
| 6839 'id': 279, |
| 6840 'caption': '''Minimum SSL version enabled''', |
| 6841 'desc': '''If this policy is not configured then <ph name="PRODUCT_NAME">$
1<ex>Google Chrome</ex></ph> will use a default minimum version, which is SSLv3
in Chrome 39 but may be TLS 1.0 in Chrome 40. |
| 6842 |
| 6843 Otherwise it may be set to one of the following values: "sslv3", "tls1", "
tls1.1" or "tls1.2". When set, <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex><
/ph> will not use SSL/TLS versions less than the specified version. An unrecogni
zed value will be ignored. |
| 6844 |
| 6845 Note that, despite the number, "sslv3" is an earier version than "tls1".''
', |
| 6846 }, |
6794 ], | 6847 ], |
6795 'messages': { | 6848 'messages': { |
6796 # Messages that are not associated to any policies. | 6849 # Messages that are not associated to any policies. |
6797 'win_supported_winxpsp2': { | 6850 'win_supported_winxpsp2': { |
6798 'desc': '''A label specifying the oldest possible compatible version of Wi
ndows. This text will appear right next to a label containing the text 'Supporte
d on:'.''', | 6851 'desc': '''A label specifying the oldest possible compatible version of Wi
ndows. This text will appear right next to a label containing the text 'Supporte
d on:'.''', |
6799 'text': '''Microsoft Windows XP SP2 or later''' | 6852 'text': '''Microsoft Windows XP SP2 or later''' |
6800 }, | 6853 }, |
6801 'mac_chrome_preferences': { | 6854 'mac_chrome_preferences': { |
6802 'desc': '''A text indicating in Mac OS X Workgroup Manager, that currently
the preferences of Chromium are being edited''', | 6855 'desc': '''A text indicating in Mac OS X Workgroup Manager, that currently
the preferences of Chromium are being edited''', |
6803 'text': '''<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> preferenc
es''' | 6856 'text': '''<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> preferenc
es''' |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6908 'desc': '''Text appended in parentheses next to the policies top-level con
tainer to indicate that those policies are of the Recommended level''', | 6961 'desc': '''Text appended in parentheses next to the policies top-level con
tainer to indicate that those policies are of the Recommended level''', |
6909 'text': 'Default Settings (users can override)', | 6962 'text': 'Default Settings (users can override)', |
6910 }, | 6963 }, |
6911 'doc_complex_policies_on_windows': { | 6964 'doc_complex_policies_on_windows': { |
6912 'desc': '''Text pointing the user to a help article for complex policies o
n Windows''', | 6965 'desc': '''Text pointing the user to a help article for complex policies o
n Windows''', |
6913 'text': '''encoded as a JSON string, for details see <ph name="COMPLEX_POL
ICIES_URL">http://www.chromium.org/administrators/complex-policies-on-windows<ex
>http://www.chromium.org/administrators/complex-policies-on-windows</ex></ph>'''
, | 6966 'text': '''encoded as a JSON string, for details see <ph name="COMPLEX_POL
ICIES_URL">http://www.chromium.org/administrators/complex-policies-on-windows<ex
>http://www.chromium.org/administrators/complex-policies-on-windows</ex></ph>'''
, |
6914 }, | 6967 }, |
6915 }, | 6968 }, |
6916 'placeholders': [], | 6969 'placeholders': [], |
6917 } | 6970 } |
OLD | NEW |