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

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

Issue 8477005: Add policies to specify an enterprise web store. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add tests for ComponentLoader. Created 9 years, 1 month 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
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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 # policy configuration files. 'dynamic_refresh' controls if the generated 93 # policy configuration files. 'dynamic_refresh' controls if the generated
94 # documentation should state that the policy supports dynamic refresh or not. 94 # documentation should state that the policy supports dynamic refresh or not.
95 # Supporting dynamic refresh means that Chrome respects the changes to the 95 # Supporting dynamic refresh means that Chrome respects the changes to the
96 # policy immediately, without the need for restart. 96 # policy immediately, without the need for restart.
97 # 97 #
98 # IDs: 98 # IDs:
99 # Since a Protocol Buffer definition is generated from this file, unique and 99 # Since a Protocol Buffer definition is generated from this file, unique and
100 # persistent IDs for all fields (but not for groups!) are needed. These are 100 # persistent IDs for all fields (but not for groups!) are needed. These are
101 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs, 101 # specified by the 'id' keys of each policy. NEVER CHANGE EXISTING IDs,
102 # because doing so would break the deployed wire format! 102 # because doing so would break the deployed wire format!
103 # For your editing convenience: highest ID currently used: 109 103 # For your editing convenience: highest ID currently used: 111
104 # 104 #
105 # Placeholders: 105 # Placeholders:
106 # The following placeholder strings are automatically substituted: 106 # The following placeholder strings are automatically substituted:
107 # $1 -> Google Chrome / Chromium 107 # $1 -> Google Chrome / Chromium
108 # $2 -> Google Chrome OS / Chromium OS 108 # $2 -> Google Chrome OS / Chromium OS
109 # $3 -> Google Chrome Frame / Chromium Frame 109 # $3 -> Google Chrome Frame / Chromium Frame
110 # $6 is reserved for doc_writer 110 # $6 is reserved for doc_writer
111 # 111 #
112 # Device Policy: 112 # Device Policy:
113 # An additional flag device_only (optional, defaults to False) indicates 113 # An additional flag device_only (optional, defaults to False) indicates
(...skipping 1746 matching lines...) Expand 10 before | Expand all | Expand 10 after
1860 'future': False, 1860 'future': False,
1861 'example_value': True, 1861 'example_value': True,
1862 'id': 109, 1862 'id': 109,
1863 'caption': '''Enable submission of documents to <ph name="CLOUD_PRINT_NAME ">Google Cloud Print</ph>''', 1863 'caption': '''Enable submission of documents to <ph name="CLOUD_PRINT_NAME ">Google Cloud Print</ph>''',
1864 'desc': ''' Enables <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex>< /ph> to submit documents to <ph name="CLOUD_PRINT_NAME">Google Cloud Print</ph> for printing. NOTE: This only affects <ph name="CLOUD_PRINT_NAME">Google Cloud Print</ph> support in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. It does not prevent users from submitting print jobs on web sites. 1864 'desc': ''' Enables <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex>< /ph> to submit documents to <ph name="CLOUD_PRINT_NAME">Google Cloud Print</ph> for printing. NOTE: This only affects <ph name="CLOUD_PRINT_NAME">Google Cloud Print</ph> support in <ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph>. It does not prevent users from submitting print jobs on web sites.
1865 1865
1866 If this setting is enabled or not configured, users can print to <ph name= "CLOUD_PRINT_NAME">Google Cloud Print</ph> from the <ph name="PRODUCT_NAME">$1<e x>Google Chrome</ex></ph> print dialog. 1866 If this setting is enabled or not configured, users can print to <ph name= "CLOUD_PRINT_NAME">Google Cloud Print</ph> from the <ph name="PRODUCT_NAME">$1<e x>Google Chrome</ex></ph> print dialog.
1867 1867
1868 If this setting is disabled, users cannot print to <ph name="CLOUD_PRINT_N AME">Google Cloud Print</ph> from the <ph name="PRODUCT_NAME">$1<ex>Google Chrom e</ex></ph> print dialog''', 1868 If this setting is disabled, users cannot print to <ph name="CLOUD_PRINT_N AME">Google Cloud Print</ph> from the <ph name="PRODUCT_NAME">$1<ex>Google Chrom e</ex></ph> print dialog''',
1869 }, 1869 },
1870 {
1871 'name': 'EnterpriseWebStoreURL',
1872 'type': 'string',
1873 'supported_on': ['chrome.*:17-','chrome_os:0.17-'],
1874 'features': {'dynamic_refresh': 1},
1875 'future': False,
1876 'example_value': 'http://company-intranet/chromeapps',
1877 'id': 110,
1878 'caption': '''Enterprise web store URL''',
1879 'desc': '''Enables an enterprise web store, where users can install Chrome apps and extensions.''',
1880 },
1881 {
1882 'name': 'EnterpriseWebStoreName',
1883 'type': 'string',
1884 'supported_on': ['chrome.*:17-','chrome_os:0.17-'],
1885 'features': {'dynamic_refresh': 1},
1886 'future': False,
1887 'example_value': 'WidgCo Chrome Apps',
1888 'id': 111,
1889 'caption': '''Enterprise web store name''',
1890 'desc': '''The name of your enterprise web store, which will be shown on t he new tab page.''',
1891 },
1870 ], 1892 ],
1871 'messages': { 1893 'messages': {
1872 # Messages that are not associated to any policies. 1894 # Messages that are not associated to any policies.
1873 'win_supported_winxpsp2': { 1895 'win_supported_winxpsp2': {
1874 '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:'.''', 1896 '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:'.''',
1875 'text': '''Microsoft Windows XP SP2 or later''' 1897 'text': '''Microsoft Windows XP SP2 or later'''
1876 }, 1898 },
1877 'mac_chrome_preferences': { 1899 'mac_chrome_preferences': {
1878 'desc': '''A text indicating in Mac OS X Workgroup Manager, that currently the preferences of Chrome are being edited''', 1900 'desc': '''A text indicating in Mac OS X Workgroup Manager, that currently the preferences of Chrome are being edited''',
1879 'text': '''<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> preferenc es''' 1901 'text': '''<ph name="PRODUCT_NAME">$1<ex>Google Chrome</ex></ph> preferenc es'''
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
1950 'desc': '''The name of the feature that indicates for a given policy that changes to it are respected by Chrome without a browser restart''', 1972 'desc': '''The name of the feature that indicates for a given policy that changes to it are respected by Chrome without a browser restart''',
1951 'text': '''Dynamic Policy Refresh''' 1973 'text': '''Dynamic Policy Refresh'''
1952 }, 1974 },
1953 'doc_deprecated': { 1975 'doc_deprecated': {
1954 'desc': '''Text appended in parentheses to the policy name to indicate t h at it has been deprecated''', 1976 'desc': '''Text appended in parentheses to the policy name to indicate t h at it has been deprecated''',
1955 'text': 'deprecated', 1977 'text': 'deprecated',
1956 } 1978 }
1957 }, 1979 },
1958 'placeholders': [], 1980 'placeholders': [],
1959 } 1981 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/browser_resources.grd » ('j') | chrome/browser/extensions/component_loader.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698