diff options
author | pkasting@google.com <pkasting@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-18 22:30:08 +0000 |
---|---|---|
committer | pkasting@google.com <pkasting@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-18 22:30:08 +0000 |
commit | 53ec0a4ac9269a7e4a1bce6e0204e8eda9846ed7 (patch) | |
tree | d8dfaf753b89c0e68b80db5b040a754a5be3b8c4 /chrome/browser | |
parent | 6dfc67bdd9eb27a8dcf6fe74806d4d26f8534cd2 (diff) | |
download | chromium_src-53ec0a4ac9269a7e4a1bce6e0204e8eda9846ed7.zip chromium_src-53ec0a4ac9269a7e4a1bce6e0204e8eda9846ed7.tar.gz chromium_src-53ec0a4ac9269a7e4a1bce6e0204e8eda9846ed7.tar.bz2 |
* Land the fix for issue 1322174 (which is not last-minute) on the trunk. This has already landed on branch.
* Revert one of my earlier fixes to hack some RTL engine names to be "LTR-friendly" to work around bugs in the engine management dialog. We also show these names in _other_ places (like the keyword UI in the omnibox) which are not buggy, so I broke these.
* Change the URLs for msn.co.il, which unlike seemingly all other MSN sites is actually really using MSN and not Live Search under the hood, and thus has a different URL layout.
BUG=1322174,1329557,1329566
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1003 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser')
-rw-r--r-- | chrome/browser/template_url_prepopulate_data.cc | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/chrome/browser/template_url_prepopulate_data.cc b/chrome/browser/template_url_prepopulate_data.cc index eced663..3aa3816 100644 --- a/chrome/browser/template_url_prepopulate_data.cc +++ b/chrome/browser/template_url_prepopulate_data.cc @@ -648,10 +648,7 @@ const PrepopulatedEngine live = { }; const PrepopulatedEngine live_ar_XA = { - // The name here is displayed LTR, but is really RTL (with an LTR string at - // the beginning), so hackishly reorder things so they look "RTL". - // TODO(pkasting): When http://b/1252245 is fixed, we can revert this hack. - L"(\x0627\x0644\x0639\x0631\x0628\x064a\x0629) Live Search", + L"Live Search (\x0627\x0644\x0639\x0631\x0628\x064a\x0629)", L"", // "live.com" is already taken by live_en_XA (see comment on ID below). L"http://search.live.com/s/wlflag.ico", L"http://search.live.com/results.aspx?setlang=ar-XA&mkt=ar-XA&" @@ -1208,8 +1205,8 @@ const PrepopulatedEngine msn_fr_FR = { const PrepopulatedEngine msn_he_IL = { L"msn.co.il", L"msn.co.il", - L"http://search.msn.co.il/s/wlflag.ico", - L"http://search.msn.co.il/results.aspx?mkt=he-IL&q={searchTerms}", + L"http://msn.co.il/favicon.ico", + L"http://search.msn.co.il/Search.aspx?q={searchTerms}", "UTF-8", NULL, 3, @@ -1771,10 +1768,7 @@ const PrepopulatedEngine voila = { }; const PrepopulatedEngine walla = { - // The name here is displayed LTR, but is really RTL, so hackishly reorder - // the exclamation point so it looks "RTL". - // TODO(pkasting): When http://b/1252245 is fixed, we can revert this hack. - L"!\x05d5\x05d5\x05d0\x05dc\x05d4", + L"\x05d5\x05d5\x05d0\x05dc\x05d4!", L"walla.co.il", L"http://www.walla.co.il/favicon.ico", L"http://search.walla.co.il/?e=hew&q={searchTerms}", @@ -2199,7 +2193,7 @@ const PrepopulatedEngine yandex_ru = { L"yandex.ru", L"http://yandex.ru/favicon.ico", L"http://yandex.ru/yandsearch?text={searchTerms}", - "windows-1251", + "UTF-8", L"http://suggest.yandex.net/suggest-ff.cgi?part={searchTerms}", 15, }; @@ -2209,7 +2203,7 @@ const PrepopulatedEngine yandex_ua = { L"yandex.ua", L"http://yandex.ua/favicon.ico", L"http://yandex.ua/yandsearch?text={searchTerms}", - "windows-1251", + "UTF-8", L"http://suggest.yandex.net/suggest-ff.cgi?part={searchTerms}", 15, }; @@ -2999,7 +2993,7 @@ void RegisterUserPrefs(PrefService* prefs) { } int GetDataVersion() { - return 10; // Increment this if you change the above data in ways that mean + return 11; // Increment this if you change the above data in ways that mean // users with existing data should get a new version. } |