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

Side by Side Diff: chrome/app/policy/policy_templates.json

Issue 8382005: Rename network configuration policy as per Zhanyong's proposal. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unit test. Created 9 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/policy/device_policy_cache.cc » ('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 1807 matching lines...) Expand 10 before | Expand all | Expand 10 after
1818 1818
1819 See the description of the URL blacklist policy for the format of entries of this list. 1819 See the description of the URL blacklist policy for the format of entries of this list.
1820 1820
1821 This policy can be used to open exceptions to restrictive blacklists. For example, '*' can be blacklisted to block all requests, and this policy can be us ed to allow access to a limited list of URLs. It can be used to open exceptions to certain schemes, subdomains of other domains, ports, or specific paths. 1821 This policy can be used to open exceptions to restrictive blacklists. For example, '*' can be blacklisted to block all requests, and this policy can be us ed to allow access to a limited list of URLs. It can be used to open exceptions to certain schemes, subdomains of other domains, ports, or specific paths.
1822 1822
1823 The most specific filter will determine if a URL is blocked or allowed. Th e whitelist takes precedence over the blacklist. 1823 The most specific filter will determine if a URL is blocked or allowed. Th e whitelist takes precedence over the blacklist.
1824 1824
1825 This policy is limited to 100 entries; subsequent entries will be ignored. ''', 1825 This policy is limited to 100 entries; subsequent entries will be ignored. ''',
1826 }, 1826 },
1827 { 1827 {
1828 'name': 'UserNetworkConfiguration', 1828 'name': 'OpenNetworkConfiguration',
1829 'type': 'string', 1829 'type': 'string',
1830 'supported_on': ['chrome_os:0.16-'], 1830 'supported_on': ['chrome_os:0.16-'],
1831 'features': {'dynamic_refresh': 1}, 1831 'features': {'dynamic_refresh': 1},
1832 'future': False, 1832 'future': False,
1833 'example_value': '{ "NetworkConfigurations": [ { "GUID": "{4b224dfd-6849-7 a63-5e394343244ae9c9}", "Name": "my WiFi", "Type": "WiFi", "WiFi": { "SSID": "my WiFi", "HiddenSSID": false, "Security": "None", "AutoConnect": true } } ] }', 1833 'example_value': '{ "NetworkConfigurations": [ { "GUID": "{4b224dfd-6849-7 a63-5e394343244ae9c9}", "Name": "my WiFi", "Type": "WiFi", "WiFi": { "SSID": "my WiFi", "HiddenSSID": false, "Security": "None", "AutoConnect": true } } ] }',
1834 'id': 107, 1834 'id': 107,
1835 'caption': '''User-level network configuration''', 1835 'caption': '''User-level network configuration''',
1836 'desc': '''Allows pushing network configuration to be applied per-user to a <ph name="PRODUCT_OS_NAME">$2<ex>Chromium OS</ex></ph> device. The network con figuration is a JSON-formatted string as defined by the Open Network Configurati on format described at https://sites.google.com/a/chromium.org/dev/chromium-os/c hromiumos-design-docs/open-network-configuration''', 1836 'desc': '''Allows pushing network configuration to be applied per-user to a <ph name="PRODUCT_OS_NAME">$2<ex>Chromium OS</ex></ph> device. The network con figuration is a JSON-formatted string as defined by the Open Network Configurati on format described at https://sites.google.com/a/chromium.org/dev/chromium-os/c hromiumos-design-docs/open-network-configuration''',
1837 }, 1837 },
1838 { 1838 {
1839 'name': 'DeviceNetworkConfiguration', 1839 'name': 'DeviceOpenNetworkConfiguration',
1840 'type': 'string', 1840 'type': 'string',
1841 'supported_on': ['chrome_os:0.16-'], 1841 'supported_on': ['chrome_os:0.16-'],
1842 'device_only': True, 1842 'device_only': True,
1843 'features': {'dynamic_refresh': 1}, 1843 'features': {'dynamic_refresh': 1},
1844 'future': True, 1844 'future': True,
1845 'example_value': '{ "NetworkConfigurations": [ { "GUID": "{4b224dfd-6849-7 a63-5e394343244ae9c9}", "Name": "my WiFi", "Type": "WiFi", "WiFi": { "SSID": "my WiFi", "HiddenSSID": false, "Security": "None", "AutoConnect": true } } ] }', 1845 'example_value': '{ "NetworkConfigurations": [ { "GUID": "{4b224dfd-6849-7 a63-5e394343244ae9c9}", "Name": "my WiFi", "Type": "WiFi", "WiFi": { "SSID": "my WiFi", "HiddenSSID": false, "Security": "None", "AutoConnect": true } } ] }',
1846 'id': 108, 1846 'id': 108,
1847 'caption': '''Device-level network configuration''', 1847 'caption': '''Device-level network configuration''',
1848 'desc': '''Allows pushing network configuration to be applied for all usee rs of a <ph name="PRODUCT_OS_NAME">$2<ex>Chromium OS</ex></ph> device. The netwo rk configuration is a JSON-formatted string as defined by the Open Network Confi guration format described at https://sites.google.com/a/chromium.org/dev/chromiu m-os/chromiumos-design-docs/open-network-configuration''', 1848 'desc': '''Allows pushing network configuration to be applied for all usee rs of a <ph name="PRODUCT_OS_NAME">$2<ex>Chromium OS</ex></ph> device. The netwo rk configuration is a JSON-formatted string as defined by the Open Network Confi guration format described at https://sites.google.com/a/chromium.org/dev/chromiu m-os/chromiumos-design-docs/open-network-configuration''',
1849 }, 1849 },
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
1930 'desc': '''The name of the feature that indicates for a given policy that changes to it are respected by Chrome without a browser restart''', 1930 'desc': '''The name of the feature that indicates for a given policy that changes to it are respected by Chrome without a browser restart''',
1931 'text': '''Dynamic Policy Refresh''' 1931 'text': '''Dynamic Policy Refresh'''
1932 }, 1932 },
1933 'doc_deprecated': { 1933 'doc_deprecated': {
1934 'desc': '''Text appended in parentheses to the policy name to indicate t h at it has been deprecated''', 1934 'desc': '''Text appended in parentheses to the policy name to indicate t h at it has been deprecated''',
1935 'text': 'deprecated', 1935 'text': 'deprecated',
1936 } 1936 }
1937 }, 1937 },
1938 'placeholders': [], 1938 'placeholders': [],
1939 } 1939 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/policy/device_policy_cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698