Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(795)

Side by Side Diff: components/policy/resources/policy_templates.json

Issue 2059513003: Add a policy for disabling the stripping of PAC URLs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2743
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/test/data/policy/policy_test_cases.json ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 8548 matching lines...) Expand 10 before | Expand all | Expand 10 after
8559 'features': { 8559 'features': {
8560 'dynamic_refresh': False, 8560 'dynamic_refresh': False,
8561 'per_profile': True, 8561 'per_profile': True,
8562 }, 8562 },
8563 'example_value': True, 8563 'example_value': True,
8564 'id': 333, 8564 'id': 333,
8565 'caption': '''Enables cast''', 8565 'caption': '''Enables cast''',
8566 'tags': [], 8566 'tags': [],
8567 'desc': '''If this is set to true or is not set, users will be able to cas t tabs, sites or the desktop from the browser. If set to false, this option will be disabled.''' 8567 'desc': '''If this is set to true or is not set, users will be able to cas t tabs, sites or the desktop from the browser. If set to false, this option will be disabled.'''
8568 }, 8568 },
8569 {
8570 'name': 'PacHttpsUrlStrippingEnabled',
8571 'type': 'main',
8572 'schema': { 'type': 'boolean' },
8573 'supported_on': [ 'chrome.*:52-', 'chrome_os:52-' ],
8574 'features': {
8575 'dynamic_refresh': False,
8576 'per_profile': False,
8577 },
8578 'example_value': False,
8579 'id': 332,
8580 'caption': '''Enable PAC URL stripping (for https://)''',
8581 'tags': ['system-security'],
8582 'desc': '''Strips privacy and security sensitive parts of https:// URLs be fore passing them on to PAC scripts (Proxy Auto Config) used by <ph name="PRODUC T_NAME">$1<ex>Google Chrome</ex></ph> during proxy resolution.
8583
8584 When not set (or set to true) the default behavior is to strip https:// UR Ls before submitting them to a PAC script. In this manner the PAC script is not able to view data that is ordinarily protected by an encrypted channel (like the path and query).
8585
8586 When the policy is set to false, this security feature is disabled, and PA C scripts are granted the ability to view the full URL. This setting applies to all PAC scripts regardless of origin. For instance it applies to PAC scripts obt ained through WPAD as well as those fetched over an insecure transport.''',
8587 },
8569 ], 8588 ],
8570 'messages': { 8589 'messages': {
8571 # Messages that are not associated to any policies. 8590 # Messages that are not associated to any policies.
8572 'win_supported_winxpsp2': { 8591 'win_supported_winxpsp2': {
8573 '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:'.''', 8592 '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:'.''',
8574 'text': '''Microsoft Windows XP SP2 or later''' 8593 'text': '''Microsoft Windows XP SP2 or later'''
8575 }, 8594 },
8576 'mac_chrome_preferences': { 8595 'mac_chrome_preferences': {
8577 'desc': '''A text indicating in Mac OS X Workgroup Manager, that currently the preferences of Chromium are being edited''', 8596 'desc': '''A text indicating in Mac OS X Workgroup Manager, that currently the preferences of Chromium are being edited''',
8578 'text': '''<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> preferenc es''' 8597 'text': '''<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> preferenc es'''
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
8688 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''', 8707 'desc': '''Text appended in parentheses next to the policies top-level con tainer to indicate that those policies are of the Recommended level''',
8689 'text': 'Default Settings (users can override)', 8708 'text': 'Default Settings (users can override)',
8690 }, 8709 },
8691 'doc_complex_policies_on_windows': { 8710 'doc_complex_policies_on_windows': {
8692 'desc': '''Text pointing the user to a help article for complex policies o n Windows''', 8711 'desc': '''Text pointing the user to a help article for complex policies o n Windows''',
8693 '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>' '', 8712 '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>' '',
8694 }, 8713 },
8695 }, 8714 },
8696 'placeholders': [], 8715 'placeholders': [],
8697 } 8716 }
OLDNEW
« no previous file with comments | « chrome/test/data/policy/policy_test_cases.json ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698