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', | |
Andrew T Wilson (Slow)
2014/10/14 08:32:53
I wonder if instead of a blanket policy, if instea
agl
2014/10/14 17:39:51
The message is very much that we're moving on from
| |
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': ['chrome.*:39-', 'chrome_os:39-', 'android:39-'], | |
Andrew T Wilson (Slow)
2014/10/14 08:32:53
We use our own net stack on ios - is this policy s
Joao da Silva
2014/10/14 08:40:10
Is this going to be merged back to 39? Current tru
agl
2014/10/14 17:39:51
We are going to watch and listen to requests once
agl
2014/10/14 17:39:51
Thanks -- I just omitted ios. Done.
| |
6829 'features': { | |
6830 'dynamic_refresh': True, | |
6831 'per_profile': False, | |
6832 }, | |
6833 'example_value': 'ssl3', | |
6834 'id': 279, | |
6835 'caption': '''Minimum SSL version enabled''', | |
6836 '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. | |
Andrew T Wilson (Slow)
2014/10/14 08:32:53
The idea is that ssl3 < tls1 for the purposes of t
agl
2014/10/14 17:39:51
That's good point. It is something that people hav
| |
6837 | |
6838 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.''', | |
6839 }, | |
6794 ], | 6840 ], |
6795 'messages': { | 6841 'messages': { |
6796 # Messages that are not associated to any policies. | 6842 # Messages that are not associated to any policies. |
6797 'win_supported_winxpsp2': { | 6843 '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:'.''', | 6844 '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''' | 6845 'text': '''Microsoft Windows XP SP2 or later''' |
6800 }, | 6846 }, |
6801 'mac_chrome_preferences': { | 6847 'mac_chrome_preferences': { |
6802 'desc': '''A text indicating in Mac OS X Workgroup Manager, that currently the preferences of Chromium are being edited''', | 6848 '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''' | 6849 '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''', | 6954 '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)', | 6955 'text': 'Default Settings (users can override)', |
6910 }, | 6956 }, |
6911 'doc_complex_policies_on_windows': { | 6957 'doc_complex_policies_on_windows': { |
6912 'desc': '''Text pointing the user to a help article for complex policies o n Windows''', | 6958 '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>''' , | 6959 '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 }, | 6960 }, |
6915 }, | 6961 }, |
6916 'placeholders': [], | 6962 'placeholders': [], |
6917 } | 6963 } |
OLD | NEW |