From 3c9991973f7f7423318277fe6595c89dfcceb2b1 Mon Sep 17 00:00:00 2001 From: "jeanluc@google.com" Date: Fri, 8 Oct 2010 22:22:41 +0000 Subject: Define the Default Search related policies so that the ADM, ADMX, and Mac related policy files are generated. BUG=49306 TEST=Install the ADM file using gpedit.msc. Look that the fields appear there and when filled modify the Basic pane of Options dialog. Do the same for the Mac: add it to Workgroup Manager and see that the values can be specified. Review URL: http://codereview.chromium.org/3613011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62031 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/app/policy/policy_templates.json | 76 +++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) (limited to 'chrome/app/policy/policy_templates.json') diff --git a/chrome/app/policy/policy_templates.json b/chrome/app/policy/policy_templates.json index c3a314c..70a2c52 100644 --- a/chrome/app/policy/policy_templates.json +++ b/chrome/app/policy/policy_templates.json @@ -355,6 +355,82 @@ }] }, { + 'name': 'DefaultSearchProvider', + 'type': 'group', + 'policies': [ + { + 'name': 'DefaultSearchProviderEnabled', + 'type': 'main', + 'annotations': { + 'platforms': ['linux', 'mac', 'win'], + 'products': ['chrome'], + 'features': {'dynamic_refresh': 1}, + 'example_value': True, + } + }, + { + 'name': 'DefaultSearchProviderName', + 'type': 'string', + 'annotations': { + 'platforms': ['linux', 'mac', 'win'], + 'products': ['chrome'], + 'features': {'dynamic_refresh': 1}, + 'example_value': 'My Intranet Search', + } + }, + { + 'name': 'DefaultSearchProviderKeyword', + 'type': 'string', + 'annotations': { + 'platforms': ['linux', 'mac', 'win'], + 'products': ['chrome'], + 'features': {'dynamic_refresh': 1}, + 'example_value': 'mis', + } + }, + { + 'name': 'DefaultSearchProviderSearchURL', + 'type': 'string', + 'annotations': { + 'platforms': ['linux', 'mac', 'win'], + 'products': ['chrome'], + 'features': {'dynamic_refresh': 1}, + 'example_value': 'http://search.my.company/search?q={searchTerms}', + } + }, + { + 'name': 'DefaultSearchProviderSuggestURL', + 'type': 'string', + 'annotations': { + 'platforms': ['linux', 'mac', 'win'], + 'products': ['chrome'], + 'features': {'dynamic_refresh': 1}, + 'example_value': 'http://search.my.company/suggest?q={searchTerms}', + } + }, + { + 'name': 'DefaultSearchProviderIconURL', + 'type': 'string', + 'annotations': { + 'platforms': ['linux', 'mac', 'win'], + 'products': ['chrome'], + 'features': {'dynamic_refresh': 1}, + 'example_value': 'http://search.my.company/favicon.ico', + } + }, + { + 'name': 'DefaultSearchProviderEncodings', + 'type': 'list', + 'annotations': { + 'platforms': ['linux', 'mac', 'win'], + 'products': ['chrome'], + 'features': {'dynamic_refresh': 1}, + 'example_value': ['UTF-8', 'UTF-16', 'GB2312', 'ISO-8859-1'] + } + }, + ] + }, + { 'name': 'ChromeFrameRendererSettings', 'type': 'group', 'policies': [{ -- cgit v1.1