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

Side by Side Diff: chrome/browser/search_engines/prepopulated_engines.json

Issue 11377049: Moving prepopulated search engines to a JSON file. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Ready for thorough review Created 8 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
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // This file is used by json_to_struct.py to generate prepopulated_engine.h/cc.
6 // Any time you modify this file regenerate the .h/.cc. From src/ call:
not at google - send to devlin 2012/11/12 18:38:13 Is there some reason you can't generate those file
beaudoin 2012/11/13 18:44:26 Done.
7 // python tools/json_to_struct/json_to_struct.py
8 // -n TemplateURLPrepopulateData
9 // -d chrome/browser/search_engines/
10 // -s chrome/browser/search_engines/prepopulated_engines_schema.json
11 // chrome/browser/search_engines/prepopulated_engines.json
12 //
13
14 // Engine definitions. See prepopulated_engines_schema.json for the field
15 // definitions.
16
17 // The following unique IDs are available:
18 // 53, 56, 58, 60, 61, 64, 65, 66, 70, 74, 78, 79, 80, 81, 84, 86, 88, 91,
19 // 92, 93, 94, 95, 96, 97, 98, 99, 102+
20 //
21 // IDs > 1000 are reserved for distribution custom engines.
22 //
23 // NOTES:
24 // CHANGE THE ABOVE NUMBERS IF YOU ADD A NEW ENGINE; ID conflicts = bad!
25 // CHANGE kMaxPrepopulatedEngineID in template_url_prepopulate_data.cc if you
26 // add new engine outside of the current range or it will not be counted
27 // in stats.
Peter Kasting 2012/11/12 22:46:36 This comment is now wrong and should refer to your
beaudoin 2012/11/13 18:44:26 It's not the same variable, but I've moved the oth
28
29 {
30 "int_variables": {
not at google - send to devlin 2012/11/12 18:38:13 Does order matter? In which case you'll need to do
beaudoin 2012/11/13 18:44:26 I tried doing that but could not pull it off in Py
not at google - send to devlin 2012/11/13 20:28:07 Bummer (I only really meant it as an observation -
31 // Increment this if you change the data in ways that mean users with
32 // existing data should get a new version.
33 "kCurrentDataVersion": 45
34 },
35
36 // The following engines are included in country lists and are added to the
37 // list of search engines on the first run depending on user's country.
38 "elements": {
39 "abcsok": {
40 "name": "ABC S\u00f8k",
41 "keyword": "abcsok.no",
42 "favicon_url": "http://abcsok.no/favicon.ico",
43 "search_url": "http://abcsok.no/index.html?q={searchTerms}",
44 "type": "SEARCH_ENGINE_ABCSOK",
45 "id": 72
46 },
47
48 "altavista": {
49 "name": "AltaVista",
50 "keyword": "altavista.com",
51 "favicon_url": "http://www.altavista.com/favicon.ico",
52 "search_url": "http://www.altavista.com/web/results?q={searchTerms}",
53 "type": "SEARCH_ENGINE_ALTAVISTA",
54 "id": 89
55 },
56
57 "altavista_ar": {
58 "name": "AltaVista",
59 "keyword": "ar.altavista.com",
60 "favicon_url": "http://ar.altavista.com/favicon.ico",
61 "search_url": "http://ar.altavista.com/web/results?q={searchTerms}",
62 "type": "SEARCH_ENGINE_ALTAVISTA",
63 "id": 89
64 },
65
66 "altavista_se": {
67 "name": "AltaVista",
68 "keyword": "se.altavista.com",
69 "favicon_url": "http://se.altavista.com/favicon.ico",
70 "search_url": "http://se.altavista.com/web/results?q={searchTerms}",
71 "type": "SEARCH_ENGINE_ALTAVISTA",
72 "id": 89
73 },
74
75 "aol": {
76 "name": "AOL",
77 "keyword": "aol.com",
78 "favicon_url": "http://search.aol.com/favicon.ico",
79 "search_url": "http://search.aol.com/aol/search?query={searchTerms}",
80 "id": 35
81 },
82
83 "araby": {
84 "name": "\u0639\u0631\u0628\u064a",
85 "keyword": "araby.com",
86 "favicon_url": "http://araby.com/favicon.ico",
87 "search_url": "http://araby.com/?q={searchTerms}",
88 "id": 12
89 },
90
91 "ask": {
92 "name": "Ask",
93 "keyword": "ask.com",
94 "favicon_url": "http://www.ask.com/favicon.ico",
95 "search_url": "http://www.ask.com/web?q={searchTerms}",
96 "suggest_url": "http://ss.ask.com/query?q={searchTerms}&li=ff",
97 "type": "SEARCH_ENGINE_ASK",
98 "id": 4
99 },
100
101 "ask_de": {
102 "name": "Ask.com Deutschland",
103 "keyword": "de.ask.com",
104 "favicon_url": "http://de.ask.com/favicon.ico",
105 "search_url": "http://de.ask.com/web?q={searchTerms}",
106 "suggest_url": "http://ss.de.ask.com/query?q={searchTerms}&li=ff",
107 "type": "SEARCH_ENGINE_ASK",
108 "id": 4
109 },
110
111 "ask_es": {
112 "name": "Ask.com Espa\u00f1a",
113 "keyword": "es.ask.com",
114 "favicon_url": "http://es.ask.com/favicon.ico",
115 "search_url": "http://es.ask.com/web?q={searchTerms}",
116 "suggest_url": "http://ss.es.ask.com/query?q={searchTerms}&li=ff",
117 "type": "SEARCH_ENGINE_ASK",
118 "id": 4
119 },
120
121 "ask_it": {
122 "name": "Ask.com Italia",
123 "keyword": "it.ask.com",
124 "favicon_url": "http://it.ask.com/favicon.ico",
125 "search_url": "http://it.ask.com/web?q={searchTerms}",
126 "suggest_url": "http://ss.it.ask.com/query?q={searchTerms}&li=ff",
127 "type": "SEARCH_ENGINE_ASK",
128 "id": 4
129 },
130
131 "ask_nl": {
132 "name": "Ask.com Nederland",
133 "keyword": "nl.ask.com",
134 "favicon_url": "http://nl.ask.com/favicon.ico",
135 "search_url": "http://nl.ask.com/web?q={searchTerms}",
136 "suggest_url": "http://ss.nl.ask.com/query?q={searchTerms}&li=ff",
137 "type": "SEARCH_ENGINE_ASK",
138 "id": 4
139 },
140
141 "ask_uk": {
142 "name": "Ask Jeeves",
143 "keyword": "uk.ask.com",
144 "favicon_url": "http://uk.ask.com/favicon.ico",
145 "search_url": "http://uk.ask.com/web?q={searchTerms}",
146 "suggest_url": "http://ss.uk.ask.com/query?q={searchTerms}&li=ff",
147 "type": "SEARCH_ENGINE_ASK",
148 "id": 4
149 },
150
151 "atlas_cz": {
152 "name": "Atlas",
153 "keyword": "atlas.cz",
154 "favicon_url": "http://img.atlas.cz/favicon.ico",
155 "search_url": "http://search.atlas.cz/?q={searchTerms}",
156 "encoding": "windows-1250",
157 "id": 27
158 },
159
160 "atlas_sk": {
161 "name": "ATLAS.SK",
162 "keyword": "atlas.sk",
163 "favicon_url": "http://www.atlas.sk/images/favicon.ico",
164 "search_url": "http://hladaj.atlas.sk/fulltext/?phrase={searchTerms}",
165 "id": 27
166 },
167
168 "baidu": {
169 "name": "\u767e\u5ea6",
170 "keyword": "baidu.com",
171 "favicon_url": "http://www.baidu.com/favicon.ico",
172 "search_url": "http://www.baidu.com/s?wd={searchTerms}",
173 "encoding": "GB2312",
174 "type": "SEARCH_ENGINE_BAIDU",
175 "id": 21
176 },
177
178 "bing": {
179 "name": "Bing",
180 "keyword": "bing.com",
181 "favicon_url": "http://www.bing.com/s/wlflag.ico",
182 "search_url": "http://www.bing.com/search?q={searchTerms}",
183 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
184 "type": "SEARCH_ENGINE_BING",
185 "id": 3
186 },
187
188 "bing_ar_XA": {
189 "name": "Bing",
190 "keyword": "bing.com_", // bing.com is taken by bing_en_XA.
191 "favicon_url": "http://www.bing.com/s/wlflag.ico",
192 "search_url": "http://www.bing.com/search?setmkt=ar-XA&q={searchTerms}",
193 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
194 "type": "SEARCH_ENGINE_BING",
195 "id": 7 // Can't be 3 as this has to appear in the Arabian countries' lis ts
Peter Kasting 2012/11/12 22:46:36 Nit: Comments should not go > 80 chars
beaudoin 2012/11/13 18:44:26 Done.
196 // alongside bing_en_XA.
197 },
198
199 "bing_bg_BG": {
200 "name": "Bing",
201 "keyword": "bing.com",
202 "favicon_url": "http://www.bing.com/s/wlflag.ico",
203 "search_url": "http://www.bing.com/search?setmkt=bg-BG&q={searchTerms}",
204 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
205 "type": "SEARCH_ENGINE_BING",
206 "id": 3
207 },
208
209 "bing_cs_CZ": {
210 "name": "Bing",
211 "keyword": "bing.com",
212 "favicon_url": "http://www.bing.com/s/wlflag.ico",
213 "search_url": "http://www.bing.com/search?setmkt=cs-CZ&q={searchTerms}",
214 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
215 "type": "SEARCH_ENGINE_BING",
216 "id": 3
217 },
218
219 "bing_da_DK": {
220 "name": "Bing",
221 "keyword": "bing.com",
222 "favicon_url": "http://www.bing.com/s/wlflag.ico",
223 "search_url": "http://www.bing.com/search?setmkt=da-DK&q={searchTerms}",
224 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
225 "type": "SEARCH_ENGINE_BING",
226 "id": 3
227 },
228
229 "bing_de_AT": {
230 "name": "Bing",
231 "keyword": "bing.com",
232 "favicon_url": "http://www.bing.com/s/wlflag.ico",
233 "search_url": "http://www.bing.com/search?setmkt=de-AT&q={searchTerms}",
234 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
235 "type": "SEARCH_ENGINE_BING",
236 "id": 3
237 },
238
239 "bing_de_CH": {
240 "name": "Bing",
241 "keyword": "bing.com",
242 "favicon_url": "http://www.bing.com/s/wlflag.ico",
243 "search_url": "http://www.bing.com/search?setmkt=de-CH&q={searchTerms}",
244 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
245 "type": "SEARCH_ENGINE_BING",
246 "id": 3
247 },
248
249 "bing_de_DE": {
250 "name": "Bing",
251 "keyword": "bing.com",
252 "favicon_url": "http://www.bing.com/s/wlflag.ico",
253 "search_url": "http://www.bing.com/search?setmkt=de-DE&q={searchTerms}",
254 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
255 "type": "SEARCH_ENGINE_BING",
256 "id": 3
257 },
258
259 "bing_el_GR": {
260 "name": "Bing",
261 "keyword": "bing.com",
262 "favicon_url": "http://www.bing.com/s/wlflag.ico",
263 "search_url": "http://www.bing.com/search?setmkt=el-GR&q={searchTerms}",
264 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
265 "type": "SEARCH_ENGINE_BING",
266 "id": 3
267 },
268
269 "bing_en_AU": {
270 "name": "Bing",
271 "keyword": "bing.com",
272 "favicon_url": "http://www.bing.com/s/wlflag.ico",
273 "search_url": "http://www.bing.com/search?setmkt=en-AU&q={searchTerms}",
274 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
275 "type": "SEARCH_ENGINE_BING",
276 "id": 3
277 },
278
279 "bing_en_CA": {
280 "name": "Bing",
281 "keyword": "bing.com",
282 "favicon_url": "http://www.bing.com/s/wlflag.ico",
283 "search_url": "http://www.bing.com/search?setmkt=en-CA&q={searchTerms}",
284 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
285 "type": "SEARCH_ENGINE_BING",
286 "id": 3
287 },
288
289 "bing_en_GB": {
290 "name": "Bing",
291 "keyword": "bing.com",
292 "favicon_url": "http://www.bing.com/s/wlflag.ico",
293 "search_url": "http://www.bing.com/search?setmkt=en-GB&q={searchTerms}",
294 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
295 "type": "SEARCH_ENGINE_BING",
296 "id": 3
297 },
298
299 "bing_en_ID": {
300 "name": "Bing",
301 "keyword": "bing.com",
302 "favicon_url": "http://www.bing.com/s/wlflag.ico",
303 "search_url": "http://www.bing.com/search?setmkt=en-ID&q={searchTerms}",
304 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
305 "type": "SEARCH_ENGINE_BING",
306 "id": 3
307 },
308
309 "bing_en_IE": {
310 "name": "Bing",
311 "keyword": "bing.com",
312 "favicon_url": "http://www.bing.com/s/wlflag.ico",
313 "search_url": "http://www.bing.com/search?setmkt=en-IE&q={searchTerms}",
314 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
315 "type": "SEARCH_ENGINE_BING",
316 "id": 3
317 },
318
319 "bing_en_IN": {
320 "name": "Bing",
321 "keyword": "bing.com",
322 "favicon_url": "http://www.bing.com/s/wlflag.ico",
323 "search_url": "http://www.bing.com/search?setmkt=en-IN&q={searchTerms}",
324 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
325 "type": "SEARCH_ENGINE_BING",
326 "id": 3
327 },
328
329 "bing_en_MY": {
330 "name": "Bing",
331 "keyword": "bing.com",
332 "favicon_url": "http://www.bing.com/s/wlflag.ico",
333 "search_url": "http://www.bing.com/search?setmkt=en-MY&q={searchTerms}",
334 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
335 "type": "SEARCH_ENGINE_BING",
336 "id": 3
337 },
338
339 "bing_en_NZ": {
340 "name": "Bing",
341 "keyword": "bing.com",
342 "favicon_url": "http://www.bing.com/s/wlflag.ico",
343 "search_url": "http://www.bing.com/search?setmkt=en-NZ&q={searchTerms}",
344 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
345 "type": "SEARCH_ENGINE_BING",
346 "id": 3
347 },
348
349 "bing_en_PH": {
350 "name": "Bing",
351 "keyword": "bing.com",
352 "favicon_url": "http://www.bing.com/s/wlflag.ico",
353 "search_url": "http://www.bing.com/search?setmkt=en-PH&q={searchTerms}",
354 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
355 "type": "SEARCH_ENGINE_BING",
356 "id": 3
357 },
358
359 "bing_en_SG": {
360 "name": "Bing",
361 "keyword": "bing.com",
362 "favicon_url": "http://www.bing.com/s/wlflag.ico",
363 "search_url": "http://www.bing.com/search?setmkt=en-SG&q={searchTerms}",
364 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
365 "type": "SEARCH_ENGINE_BING",
366 "id": 3
367 },
368
369 "bing_en_US": {
370 "name": "Bing",
371 "keyword": "bing.com",
372 "favicon_url": "http://www.bing.com/s/wlflag.ico",
373 "search_url": "http://www.bing.com/search?setmkt=en-US&q={searchTerms}",
374 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
375 "type": "SEARCH_ENGINE_BING",
376 "id": 3
377 },
378
379 "bing_en_XA": {
380 "name": "Bing",
381 "keyword": "bing.com",
382 "favicon_url": "http://www.bing.com/s/wlflag.ico",
383 "search_url": "http://www.bing.com/search?setmkt=en-XA&q={searchTerms}",
384 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
385 "type": "SEARCH_ENGINE_BING",
386 "id": 3
387 },
388
389 "bing_en_ZA": {
390 "name": "Bing",
391 "keyword": "bing.com",
392 "favicon_url": "http://www.bing.com/s/wlflag.ico",
393 "search_url": "http://www.bing.com/search?setmkt=en-ZA&q={searchTerms}",
394 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
395 "type": "SEARCH_ENGINE_BING",
396 "id": 3
397 },
398
399 "bing_es_AR": {
400 "name": "Bing",
401 "keyword": "bing.com",
402 "favicon_url": "http://www.bing.com/s/wlflag.ico",
403 "search_url": "http://www.bing.com/search?setmkt=es-AR&q={searchTerms}",
404 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
405 "type": "SEARCH_ENGINE_BING",
406 "id": 3
407 },
408
409 "bing_es_CL": {
410 "name": "Bing",
411 "keyword": "bing.com",
412 "favicon_url": "http://www.bing.com/s/wlflag.ico",
413 "search_url": "http://www.bing.com/search?setmkt=es-CL&q={searchTerms}",
414 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
415 "type": "SEARCH_ENGINE_BING",
416 "id": 3
417 },
418
419 "bing_es_ES": {
420 "name": "Bing",
421 "keyword": "bing.com",
422 "favicon_url": "http://www.bing.com/s/wlflag.ico",
423 "search_url": "http://www.bing.com/search?setmkt=es-ES&q={searchTerms}",
424 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
425 "type": "SEARCH_ENGINE_BING",
426 "id": 3
427 },
428
429 "bing_es_MX": {
430 "name": "Bing",
431 "keyword": "bing.com",
432 "favicon_url": "http://www.bing.com/s/wlflag.ico",
433 "search_url": "http://www.bing.com/search?setmkt=es-MX&q={searchTerms}",
434 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
435 "type": "SEARCH_ENGINE_BING",
436 "id": 3
437 },
438
439 "bing_es_XL": {
440 "name": "Bing",
441 "keyword": "bing.com",
442 "favicon_url": "http://www.bing.com/s/wlflag.ico",
443 "search_url": "http://www.bing.com/search?setmkt=es-XL&q={searchTerms}",
444 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
445 "type": "SEARCH_ENGINE_BING",
446 "id": 3
447 },
448
449 "bing_et_EE": {
450 "name": "Bing",
451 "keyword": "bing.com",
452 "favicon_url": "http://www.bing.com/s/wlflag.ico",
453 "search_url": "http://www.bing.com/search?setmkt=et-EE&q={searchTerms}",
454 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
455 "type": "SEARCH_ENGINE_BING",
456 "id": 3
457 },
458
459 "bing_fi_FI": {
460 "name": "Bing",
461 "keyword": "bing.com",
462 "favicon_url": "http://www.bing.com/s/wlflag.ico",
463 "search_url": "http://www.bing.com/search?setmkt=fi-FI&q={searchTerms}",
464 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
465 "type": "SEARCH_ENGINE_BING",
466 "id": 3
467 },
468
469 "bing_fr_BE": {
470 "name": "Bing",
471 "keyword": "bing.com_", // bing.com is taken by bing_nl_BE.
472 "favicon_url": "http://www.bing.com/s/wlflag.ico",
473 "search_url": "http://www.bing.com/search?setmkt=fr-BE&q={searchTerms}",
474 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
475 "type": "SEARCH_ENGINE_BING",
476 "id": 7
477 },
478
479 "bing_fr_CA": {
480 "name": "Bing",
481 "keyword": "bing.com_", // bing.com is taken by bing_en_CA.
482 "favicon_url": "http://www.bing.com/s/wlflag.ico",
483 "search_url": "http://www.bing.com/search?setmkt=fr-CA&q={searchTerms}",
484 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
485 "type": "SEARCH_ENGINE_BING",
486 "id": 7
487 },
488
489 "bing_fr_CH": {
490 "name": "Bing",
491 "keyword": "bing.com_", // bing.com is taken by bing_de_CH.
492 "favicon_url": "http://www.bing.com/s/wlflag.ico",
493 "search_url": "http://www.bing.com/search?setmkt=fr-CH&q={searchTerms}",
494 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
495 "type": "SEARCH_ENGINE_BING",
496 "id": 7
497 },
498
499 "bing_fr_FR": {
500 "name": "Bing",
501 "keyword": "bing.com",
502 "favicon_url": "http://www.bing.com/s/wlflag.ico",
503 "search_url": "http://www.bing.com/search?setmkt=fr-FR&q={searchTerms}",
504 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
505 "type": "SEARCH_ENGINE_BING",
506 "id": 3
507 },
508
509 "bing_he_IL": {
510 "name": "Bing",
511 "keyword": "bing.com",
512 "favicon_url": "http://www.bing.com/s/wlflag.ico",
513 "search_url": "http://www.bing.com/search?setmkt=he-IL&q={searchTerms}",
514 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
515 "type": "SEARCH_ENGINE_BING",
516 "id": 3
517 },
518
519 "bing_hr_HR": {
520 "name": "Bing",
521 "keyword": "bing.com",
522 "favicon_url": "http://www.bing.com/s/wlflag.ico",
523 "search_url": "http://www.bing.com/search?setmkt=hr-HR&q={searchTerms}",
524 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
525 "type": "SEARCH_ENGINE_BING",
526 "id": 3
527 },
528
529 "bing_hu_HU": {
530 "name": "Bing",
531 "keyword": "bing.com",
532 "favicon_url": "http://www.bing.com/s/wlflag.ico",
533 "search_url": "http://www.bing.com/search?setmkt=hu-HU&q={searchTerms}",
534 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
535 "type": "SEARCH_ENGINE_BING",
536 "id": 3
537 },
538
539 "bing_it_IT": {
540 "name": "Bing",
541 "keyword": "bing.com",
542 "favicon_url": "http://www.bing.com/s/wlflag.ico",
543 "search_url": "http://www.bing.com/search?setmkt=it-IT&q={searchTerms}",
544 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
545 "type": "SEARCH_ENGINE_BING",
546 "id": 3
547 },
548
549 "bing_ja_JP": {
550 "name": "Bing",
551 "keyword": "bing.com",
552 "favicon_url": "http://www.bing.com/s/wlflag.ico",
553 "search_url": "http://www.bing.com/search?setmkt=ja-JP&q={searchTerms}",
554 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
555 "type": "SEARCH_ENGINE_BING",
556 "id": 3
557 },
558
559 "bing_ko_KR": {
560 "name": "Bing",
561 "keyword": "bing.com",
562 "favicon_url": "http://www.bing.com/s/wlflag.ico",
563 "search_url": "http://www.bing.com/search?setmkt=ko-KR&q={searchTerms}",
564 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
565 "type": "SEARCH_ENGINE_BING",
566 "id": 3
567 },
568
569 "bing_lt_LT": {
570 "name": "Bing",
571 "keyword": "bing.com",
572 "favicon_url": "http://www.bing.com/s/wlflag.ico",
573 "search_url": "http://www.bing.com/search?setmkt=lt-LT&q={searchTerms}",
574 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
575 "type": "SEARCH_ENGINE_BING",
576 "id": 3
577 },
578
579 "bing_lv_LV": {
580 "name": "Bing",
581 "keyword": "bing.com",
582 "favicon_url": "http://www.bing.com/s/wlflag.ico",
583 "search_url": "http://www.bing.com/search?setmkt=lv-LV&q={searchTerms}",
584 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
585 "type": "SEARCH_ENGINE_BING",
586 "id": 3
587 },
588
589 "bing_nb_NO": {
590 "name": "Bing",
591 "keyword": "bing.com",
592 "favicon_url": "http://www.bing.com/s/wlflag.ico",
593 "search_url": "http://www.bing.com/search?setmkt=nb-NO&q={searchTerms}",
594 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
595 "type": "SEARCH_ENGINE_BING",
596 "id": 3
597 },
598
599 "bing_nl_BE": {
600 "name": "Bing",
601 "keyword": "bing.com",
602 "favicon_url": "http://www.bing.com/s/wlflag.ico",
603 "search_url": "http://www.bing.com/search?setmkt=nl-BE&q={searchTerms}",
604 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
605 "type": "SEARCH_ENGINE_BING",
606 "id": 3
607 },
608
609 "bing_nl_NL": {
610 "name": "Bing",
611 "keyword": "bing.com",
612 "favicon_url": "http://www.bing.com/s/wlflag.ico",
613 "search_url": "http://www.bing.com/search?setmkt=nl-NL&q={searchTerms}",
614 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
615 "type": "SEARCH_ENGINE_BING",
616 "id": 3
617 },
618
619 "bing_pl_PL": {
620 "name": "Bing",
621 "keyword": "bing.com",
622 "favicon_url": "http://www.bing.com/s/wlflag.ico",
623 "search_url": "http://www.bing.com/search?setmkt=pl-PL&q={searchTerms}",
624 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
625 "type": "SEARCH_ENGINE_BING",
626 "id": 3
627 },
628
629 "bing_pt_BR": {
630 "name": "Bing",
631 "keyword": "bing.com",
632 "favicon_url": "http://www.bing.com/s/wlflag.ico",
633 "search_url": "http://www.bing.com/search?setmkt=pt-BR&q={searchTerms}",
634 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
635 "type": "SEARCH_ENGINE_BING",
636 "id": 3
637 },
638
639 "bing_pt_PT": {
640 "name": "Bing",
641 "keyword": "bing.com",
642 "favicon_url": "http://www.bing.com/s/wlflag.ico",
643 "search_url": "http://www.bing.com/search?setmkt=pt-PT&q={searchTerms}",
644 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
645 "type": "SEARCH_ENGINE_BING",
646 "id": 3
647 },
648
649 "bing_ro_RO": {
650 "name": "Bing",
651 "keyword": "bing.com",
652 "favicon_url": "http://www.bing.com/s/wlflag.ico",
653 "search_url": "http://www.bing.com/search?setmkt=ro-RO&q={searchTerms}",
654 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
655 "type": "SEARCH_ENGINE_BING",
656 "id": 3
657 },
658
659 "bing_ru_RU": {
660 "name": "Bing",
661 "keyword": "bing.com",
662 "favicon_url": "http://www.bing.com/s/wlflag.ico",
663 "search_url": "http://www.bing.com/search?setmkt=ru-RU&q={searchTerms}",
664 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
665 "type": "SEARCH_ENGINE_BING",
666 "id": 3
667 },
668
669 "bing_sl_SI": {
670 "name": "Bing",
671 "keyword": "bing.com",
672 "favicon_url": "http://www.bing.com/s/wlflag.ico",
673 "search_url": "http://www.bing.com/search?setmkt=sl-SI&q={searchTerms}",
674 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
675 "type": "SEARCH_ENGINE_BING",
676 "id": 3
677 },
678
679 "bing_sk_SK": {
680 "name": "Bing",
681 "keyword": "bing.com",
682 "favicon_url": "http://www.bing.com/s/wlflag.ico",
683 "search_url": "http://www.bing.com/search?setmkt=sk-SK&q={searchTerms}",
684 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
685 "type": "SEARCH_ENGINE_BING",
686 "id": 3
687 },
688
689 "bing_sv_SE": {
690 "name": "Bing",
691 "keyword": "bing.com",
692 "favicon_url": "http://www.bing.com/s/wlflag.ico",
693 "search_url": "http://www.bing.com/search?setmkt=sv-SE&q={searchTerms}",
694 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
695 "type": "SEARCH_ENGINE_BING",
696 "id": 3
697 },
698
699 "bing_th_TH": {
700 "name": "Bing",
701 "keyword": "bing.com",
702 "favicon_url": "http://www.bing.com/s/wlflag.ico",
703 "search_url": "http://www.bing.com/search?setmkt=th-TH&q={searchTerms}",
704 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
705 "type": "SEARCH_ENGINE_BING",
706 "id": 3
707 },
708
709 "bing_tr_TR": {
710 "name": "Bing",
711 "keyword": "bing.com",
712 "favicon_url": "http://www.bing.com/s/wlflag.ico",
713 "search_url": "http://www.bing.com/search?setmkt=tr-TR&q={searchTerms}",
714 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
715 "type": "SEARCH_ENGINE_BING",
716 "id": 3
717 },
718
719 "bing_uk_UA": {
720 "name": "Bing",
721 "keyword": "bing.com",
722 "favicon_url": "http://www.bing.com/s/wlflag.ico",
723 "search_url": "http://www.bing.com/search?setmkt=uk-UA&q={searchTerms}",
724 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
725 "type": "SEARCH_ENGINE_BING",
726 "id": 3
727 },
728
729 "bing_zh_CN": {
730 "name": "Bing",
731 "keyword": "bing.com",
732 "favicon_url": "http://www.bing.com/s/wlflag.ico",
733 "search_url": "http://www.bing.com/search?setmkt=zh-CN&q={searchTerms}",
734 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
735 "type": "SEARCH_ENGINE_BING",
736 "id": 3
737 },
738
739 "bing_zh_HK": {
740 "name": "Bing",
741 "keyword": "bing.com",
742 "favicon_url": "http://www.bing.com/s/wlflag.ico",
743 "search_url": "http://www.bing.com/search?setmkt=zh-HK&q={searchTerms}",
744 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
745 "type": "SEARCH_ENGINE_BING",
746 "id": 3
747 },
748
749 "bing_zh_TW": {
750 "name": "Bing",
751 "keyword": "bing.com",
752 "favicon_url": "http://www.bing.com/s/wlflag.ico",
753 "search_url": "http://www.bing.com/search?setmkt=zh-TW&q={searchTerms}",
754 "suggest_url": "http://api.bing.com/osjson.aspx?query={searchTerms}&langua ge={language}",
755 "type": "SEARCH_ENGINE_BING",
756 "id": 3
757 },
758
759 "centrum_cz": {
760 "name": "Centrum.cz",
761 "keyword": "centrum.cz",
762 "favicon_url": "http://img.centrum.cz/6/vy2/o/favicon.ico",
763 "search_url": "http://search.centrum.cz/index.php?charset={inputEncoding}& q={searchTerms}",
764 "type": "SEARCH_ENGINE_CENTRUM",
765 "id": 26
766 },
767
768 "centrum_sk": {
769 "name": "Centrum.sk",
770 "keyword": "centrum.sk",
771 "favicon_url": "http://img.centrum.sk/4/favicon.ico",
772 "search_url": "http://search.centrum.sk/index.php?charset={inputEncoding}& q={searchTerms}",
773 "type": "SEARCH_ENGINE_CENTRUM",
774 "id": 26
775 },
776
777 "daum": {
778 "name": "Daum",
779 "keyword": "daum.net",
780 "favicon_url": "http://icon.daum-img.net/favicon.ico",
781 "search_url": "http://search.daum.net/search?q={searchTerms}",
782 "suggest_url": "http://sug.search.daum.net/search_nsuggest?mod=fxjson&code =utf_in_out&q={searchTerms}",
783 "type": "SEARCH_ENGINE_DAUM",
784 "id": 68
785 },
786
787 "delfi_lt": {
788 "name": "DELFI",
789 "keyword": "delfi.lt",
790 "favicon_url": "http://search.delfi.lt/img/favicon.png",
791 "search_url": "http://search.delfi.lt/search.php?q={searchTerms}",
792 "type": "SEARCH_ENGINE_DELFI",
793 "id": 45
794 },
795
796 "delfi_lv": {
797 "name": "DELFI",
798 "keyword": "delfi.lv",
799 "favicon_url": "http://smart.delfi.lv/img/smart_search.png",
800 "search_url": "http://smart.delfi.lv/i.php?enc={inputEncoding}&q={searchTe rms}",
801 "type": "SEARCH_ENGINE_DELFI",
802 "id": 45
803 },
804
805 "diri": {
806 "name": "diri",
807 "keyword": "diri.bg",
808 "favicon_url": "http://i.dir.bg/diri/images/favicon.ico",
809 "search_url": "http://diri.bg/search.php?textfield={searchTerms}",
810 "encoding": "windows-1251",
811 "type": "SEARCH_ENGINE_DIRI",
812 "id": 32
813 },
814
815 "eniro_fi": {
816 "name": "Eniro",
817 "keyword": "eniro.fi",
818 "favicon_url": "http://eniro.fi/favicon.ico",
819 "search_url": "http://eniro.fi/query?search_word={searchTerms}&what=web_lo cal",
820 "encoding": "ISO-8859-1",
821 "id": 29
822 },
823
824 "eniro_se": {
825 "name": "Eniro",
826 "keyword": "eniro.se",
827 "favicon_url": "http://eniro.se/favicon.ico",
828 "search_url": "http://eniro.se/query?search_word={searchTerms}&what=web_lo cal",
829 "encoding": "ISO-8859-1",
830 "id": 29
831 },
832
833 "fonecta_02_fi": {
834 "name": "Fonecta 02.fi",
835 "keyword": "www.fi",
836 "favicon_url": "http://www.02.fi/img/favicon.ico",
837 "search_url": "http://www.02.fi/haku/{searchTerms}",
838 "id": 46
839 },
840
841 "goo": {
842 "name": "goo",
843 "keyword": "search.goo.ne.jp",
844 "favicon_url": "http://goo.ne.jp/favicon.ico",
845 "search_url": "http://search.goo.ne.jp/web.jsp?MT={searchTerms}&IE={inputE ncoding}",
846 "type": "SEARCH_ENGINE_GOO",
847 "id": 23
848 },
849
850 "google": {
851 "name": "Google",
852 "keyword": "google.com",
853 "favicon_url": "http://www.google.com/favicon.ico",
854 "search_url": "{google:baseURL}search?q={searchTerms}&{google:RLZ}{google: acceptedSuggestion}{google:originalQueryForSuggestion}{google:assistedQueryStats }{google:searchFieldtrialParameter}sourceid=chrome&ie={inputEncoding}",
855 "suggest_url": "{google:baseSuggestURL}search?{google:searchFieldtrialPara meter}client=chrome&hl={language}&q={searchTerms}&sugkey={google:suggestAPIKeyPa rameter}",
856 "instant_url": "{google:baseURL}webhp?sourceid=chrome-instant&{google:RLZ} {google:instantEnabledParameter}ie={inputEncoding}",
857 "alternate_urls": [
858 "{google:baseURL}#q={searchTerms}",
Peter Kasting 2012/11/12 22:46:36 Nit: This uses 4-space indent, you use 2-space els
beaudoin 2012/11/13 18:44:26 Wow! You have bionic eyes. Nice catch. :) Done.
859 "{google:baseURL}search#q={searchTerms}",
860 "{google:baseURL}webhp#q={searchTerms}"
861 ],
862 "type": "SEARCH_ENGINE_GOOGLE",
863 "id": 1
864 },
865
866 "guruji": {
867 "name": "guruji",
868 "keyword": "guruji.com",
869 "favicon_url": "http://guruji.com/favicon.ico",
870 "search_url": "http://guruji.com/search?q={searchTerms}",
871 "id": 38
872 },
873
874 "hispavista": {
875 "name": "hispavista",
876 "keyword": "hispavista.com",
877 "favicon_url": "http://buscar.hispavista.com/favicon.ico",
878 "search_url": "http://buscar.hispavista.com/?cadena={searchTerms}",
879 "encoding": "iso-8859-1",
880 "id": 18
881 },
882
883 "in": {
884 "name": "in.gr",
885 "keyword": "in.gr",
886 "favicon_url": "http://www.in.gr/favicon.ico",
887 "search_url": "http://find.in.gr/?qs={searchTerms}",
888 "encoding": "ISO-8859-7",
889 "type": "SEARCH_ENGINE_IN",
890 "id": 54
891 },
892
893 "jabse": {
894 "name": "Jabse",
895 "keyword": "jabse.com",
896 "favicon_url": "http://www.jabse.com/favicon.ico",
897 "search_url": "http://www.jabse.com/searchmachine.php?query={searchTerms}" ,
898 "id": 19
899 },
900
901 "jubii": {
902 "name": "Jubii",
903 "keyword": "jubii.dk",
904 "favicon_url": "http://search.jubii.dk/favicon_jubii.ico",
905 "search_url": "http://search.jubii.dk/cgi-bin/pursuit?query={searchTerms}" ,
906 "encoding": "ISO-8859-1",
907 "id": 28
908 },
909
910 "kvasir": {
911 "name": "Kvasir",
912 "keyword": "kvasir.no",
913 "favicon_url": "http://www.kvasir.no/img/favicon.ico",
914 "search_url": "http://www.kvasir.no/nettsok/searchResult.html?searchExpr={ searchTerms}",
915 "encoding": "ISO-8859-1",
916 "id": 73
917 },
918
919 "latne": {
920 "name": "LATNE",
921 "keyword": "latne.lv",
922 "favicon_url": "http://latne.lv/favicon.ico",
923 "search_url": "http://latne.lv/siets.php?q={searchTerms}",
924 "id": 71
925 },
926
927 "leit": {
928 "name": "leit.is",
929 "keyword": "leit.is",
930 "favicon_url": "http://leit.is/leit.ico",
931 "search_url": "http://leit.is/query.aspx?qt={searchTerms}",
932 "encoding": "ISO-8859-1",
933 "id": 59
934 },
935
936 "libero": {
937 "name": "Libero",
938 "keyword": "libero.it",
939 "favicon_url": "http://arianna.libero.it/favicon.ico",
940 "search_url": "http://arianna.libero.it/search/abin/integrata.cgi?query={s earchTerms}",
941 "encoding": "ISO-8859-1",
942 "id": 63
943 },
944
945 "mail_ru": {
946 "name": "@MAIL.RU",
947 "keyword": "mail.ru",
948 "favicon_url": "http://img.go.mail.ru/favicon.ico",
949 "search_url": "http://go.mail.ru/search?q={searchTerms}",
950 "encoding": "windows-1251",
951 "suggest_url": "http://suggests.go.mail.ru/chrome?q={searchTerms}",
952 "type": "SEARCH_ENGINE_MAILRU",
953 "id": 83
954 },
955
956 "maktoob": {
957 "name": "\u0645\u0643\u062a\u0648\u0628",
958 "keyword": "maktoob.com",
959 "favicon_url": "http://www.maktoob.com/favicon.ico",
960 "search_url": "http://www.maktoob.com/searchResult.php?q={searchTerms}",
961 "id": 13
962 },
963
964 "masrawy": {
965 "name": "\u0645\u0635\u0631\u0627\u0648\u064a",
966 "keyword": "masrawy.com",
967 "favicon_url": "http://www.masrawy.com/new/images/masrawy.ico",
968 "search_url": "http://masrawy.com/new/search.aspx?sr={searchTerms}",
969 "encoding": "windows-1256",
970 "id": 14
971 },
972
973 "mynet": {
974 "name": "MYNET",
975 "keyword": "mynet.com",
976 "favicon_url": "http://img.mynet.com/mynetfavori.ico",
977 "search_url": "http://arama.mynet.com/search.aspx?q={searchTerms}&pg=q",
978 "encoding": "windows-1254",
979 "id": 101
980 },
981
982 "najdi": {
983 "name": "Najdi.si",
984 "keyword": "najdi.si",
985 "favicon_url": "http://www.najdi.si/master/favicon.ico",
986 "search_url": "http://www.najdi.si/search.jsp?q={searchTerms}",
987 "type": "SEARCH_ENGINE_NAJDI",
988 "id": 87
989 },
990
991 "nate": {
992 "name": "\ub124\uc774\ud2b8\ub2f7\ucef4",
993 "keyword": "nate.com",
994 "favicon_url": "http://nate.search.empas.com/favicon.ico",
995 "search_url": "http://nate.search.empas.com/search/all.html?q={searchTerms }",
996 "encoding": "EUC-KR",
997 "id": 69
998 },
999
1000 "naver": {
1001 "name": "\ub124\uc774\ubc84",
1002 "keyword": "naver.com",
1003 "favicon_url": "http://search.naver.com/favicon.ico",
1004 "search_url": "http://search.naver.com/search.naver?ie={inputEncoding}&que ry={searchTerms}",
1005 "suggest_url": "http://ac.search.naver.com/autocompl?m=s&ie={inputEncoding }&oe=utf-8&q={searchTerms}",
1006 "type": "SEARCH_ENGINE_NAVER",
1007 "id": 67
1008 },
1009
1010 "neti": {
1011 "name": "NETI",
1012 "keyword": "neti.ee",
1013 "favicon_url": "http://www.neti.ee/favicon.ico",
1014 "search_url": "http://www.neti.ee/cgi-bin/otsing?query={searchTerms}",
1015 "encoding": "ISO-8859-1",
1016 "type": "SEARCH_ENGINE_NETI",
1017 "id": 44
1018 },
1019
1020 "netsprint": {
1021 "name": "NetSprint",
1022 "keyword": "netsprint.pl",
1023 "favicon_url": "http://netsprint.pl/favicon.ico",
1024 "search_url": "http://www.netsprint.pl/serwis/search?q={searchTerms}",
1025 "type": "SEARCH_ENGINE_NETSPRINT",
1026 "id": 30
1027 },
1028
1029 "nur_kz": {
1030 "name": "NUR.KZ",
1031 "keyword": "nur.kz",
1032 "favicon_url": "http://www.nur.kz/favicon_kz.ico",
1033 "search_url": "http://search.nur.kz/?encoding={inputEncoding}&query={searc hTerms}",
1034 "id": 20
1035 },
1036
1037 "ok": {
1038 "name": "OK.hu",
1039 "keyword": "ok.hu",
1040 "favicon_url": "http://ok.hu/gfx/favicon.ico",
1041 "search_url": "http://ok.hu/katalogus?q={searchTerms}",
1042 "encoding": "ISO-8859-2",
1043 "type": "SEARCH_ENGINE_OK",
1044 "id": 6
1045 },
1046
1047 "onet": {
1048 "name": "Onet.pl",
1049 "keyword": "onet.pl",
1050 "favicon_url": "http://szukaj.onet.pl/favicon.ico",
1051 "search_url": "http://szukaj.onet.pl/query.html?qt={searchTerms}",
1052 "encoding": "ISO-8859-2",
1053 "id": 75
1054 },
1055
1056 "pogodak_rs": {
1057 "name": "Pogodak!",
1058 "keyword": "pogodak.rs",
1059 "favicon_url": "http://www.pogodak.rs/favicon.ico",
1060 "search_url": "http://www.pogodak.rs/search.jsp?q={searchTerms}",
1061 "type": "SEARCH_ENGINE_POGODAK",
1062 "id": 24
1063 },
1064
1065 "rambler": {
1066 "name": "Rambler",
1067 "keyword": "rambler.ru",
1068 "favicon_url": "http://www.rambler.ru/favicon.ico",
1069 "search_url": "http://www.rambler.ru/srch?words={searchTerms}",
1070 "encoding": "windows-1251",
1071 "type": "SEARCH_ENGINE_RAMBLER",
1072 "id": 16
1073 },
1074
1075 "rediff": {
1076 "name": "Rediff",
1077 "keyword": "rediff.com",
1078 "favicon_url": "http://search1.rediff.com/favicon.ico",
1079 "search_url": "http://search1.rediff.com/dirsrch/default.asp?MT={searchTer ms}",
1080 "id": 37
1081 },
1082
1083 "rednano": {
1084 "name": "Rednano",
1085 "keyword": "rednano.sg",
1086 "favicon_url": "http://rednano.sg/favicon.ico",
1087 "search_url": "http://rednano.sg/sfe/lwi.action?querystring={searchTerms}" ,
1088 "id": 41
1089 },
1090
1091 "sanook": {
1092 "name": "\u0e2a\u0e19\u0e38\u0e01!",
1093 "keyword": "sanook.com",
1094 "favicon_url": "http://search.sanook.com/favicon.ico",
1095 "search_url": "http://search.sanook.com/search.php?q={searchTerms}",
1096 "type": "SEARCH_ENGINE_SANOOK",
1097 "id": 100
1098 },
1099
1100 "sapo": {
1101 "name": "SAPO",
1102 "keyword": "sapo.pt",
1103 "favicon_url": "http://imgs.sapo.pt/images/sapo.ico",
1104 "search_url": "http://pesquisa.sapo.pt/?q={searchTerms}",
1105 "suggest_url": "http://pesquisa.sapo.pt/livesapo?q={searchTerms}",
1106 "type": "SEARCH_ENGINE_SAPO",
1107 "id": 77
1108 },
1109
1110 "search_de_CH": {
1111 "name": "search.ch",
1112 "keyword": "search.ch",
1113 "favicon_url": "http://www.search.ch/favicon.ico",
1114 "search_url": "http://www.search.ch/index.de.html?q={searchTerms}",
1115 "encoding": "ISO-8859-1",
1116 "id": 51
1117 },
1118
1119 "search_fr_CH": {
1120 "name": "search.ch",
1121 "keyword": "search.ch_", // search.ch is taken by search_de_CH.
1122 "favicon_url": "http://www.search.ch/favicon.ico",
1123 "search_url": "http://www.search.ch/index.fr.html?q={searchTerms}",
1124 "id": 22
1125 },
1126
1127 "seznam": {
1128 "name": "Seznam",
1129 "keyword": "seznam.cz",
1130 "favicon_url": "http://1.im.cz/szn/img/favicon.ico",
1131 "search_url": "http://search.seznam.cz/?q={searchTerms}",
1132 "suggest_url": "http:///suggest.fulltext.seznam.cz/?dict=fulltext_ff&phras e={searchTerms}&encoding={inputEncoding}&response_encoding=utf-8",
1133 "type": "SEARCH_ENGINE_SEZNAM",
1134 "id": 25
1135 },
1136
1137 "terra_ar": {
1138 "name": "Terra Argentina",
1139 "keyword": "terra.com.ar",
1140 "favicon_url": "http://buscar.terra.com.ar/favicon.ico",
1141 "search_url": "http://buscar.terra.com.ar/Default.aspx?query={searchTerms} &source=Search",
1142 "encoding": "ISO-8859-1",
1143 "id": 90
1144 },
1145
1146 "terra_es": {
1147 "name": "Terra",
1148 "keyword": "terra.es",
1149 "favicon_url": "http://buscador.terra.es/favicon.ico",
1150 "search_url": "http://buscador.terra.es/Default.aspx?query={searchTerms}&s ource=Search",
1151 "encoding": "ISO-8859-1",
1152 "id": 90
1153 },
1154
1155 "tut": {
1156 "name": "TUT.BY",
1157 "keyword": "tut.by",
1158 "favicon_url": "http://www.tut.by/favicon.ico",
1159 "search_url": "http://search.tut.by/?query={searchTerms}",
1160 "encoding": "windows-1251",
1161 "type": "SEARCH_ENGINE_TUT",
1162 "id": 17
1163 },
1164
1165 "uol": {
1166 "name": "UOL Busca",
1167 "keyword": "busca.uol.com.br",
1168 "favicon_url": "http://busca.uol.com.br/favicon.ico",
1169 "search_url": "http://busca.uol.com.br/www/index.html?q={searchTerms}",
1170 "encoding": "ISO-8859-1",
1171 "id": 82
1172 },
1173
1174 "virgilio": {
1175 "name": "Virgilio",
1176 "keyword": "virgilio.it",
1177 "favicon_url": "http://ricerca.alice.it/favicon.ico",
1178 "search_url": "http://ricerca.alice.it/ricerca?qs={searchTerms}",
1179 "encoding": "ISO-8859-1",
1180 "type": "SEARCH_ENGINE_VIRGILIO",
1181 "id": 62
1182 },
1183
1184 "walla": {
1185 "name": "\u05d5\u05d5\u05d0\u05dc\u05d4!",
1186 "keyword": "walla.co.il",
1187 "favicon_url": "http://www.walla.co.il/favicon.ico",
1188 "search_url": "http://search.walla.co.il/?e=hew&q={searchTerms}",
1189 "encoding": "windows-1255",
1190 "type": "SEARCH_ENGINE_WALLA",
1191 "id": 55
1192 },
1193
1194 "wp": {
1195 "name": "Wirtualna Polska",
1196 "keyword": "wp.pl",
1197 "favicon_url": "http://szukaj.wp.pl/favicon.ico",
1198 "search_url": "http://szukaj.wp.pl/szukaj.html?szukaj={searchTerms}",
1199 "encoding": "ISO-8859-2",
1200 "id": 76
1201 },
1202
1203 "yahoo": {
1204 "name": "Yahoo!",
1205 "keyword": "yahoo.com",
1206 "favicon_url": "http://search.yahoo.com/favicon.ico",
1207 "search_url": "http://search.yahoo.com/search?ei={inputEncoding}&fr=crmas& p={searchTerms}",
1208 "suggest_url": "http://ff.search.yahoo.com/gossip?output=fxjson&command={s earchTerms}",
1209 "type": "SEARCH_ENGINE_YAHOO",
1210 "id": 2
1211 },
1212
1213 // For regional Yahoo variants without region-specific suggestion service,
1214 // suggestion is disabled. For some of them, we might consider
1215 // using a fallback (e.g. de for at/ch, ca or fr for qc, en for nl, no, hk).
1216 "yahoo_ar": {
1217 "name": "Yahoo! Argentina",
1218 "keyword": "ar.yahoo.com",
1219 "favicon_url": "http://ar.search.yahoo.com/favicon.ico",
1220 "search_url": "http://ar.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1221 "suggest_url": "http://ar-sayt.ff.search.yahoo.com/gossip-ar-sayt?output=f xjson&command={searchTerms}",
1222 "type": "SEARCH_ENGINE_YAHOO",
1223 "id": 2
1224 },
1225
1226 "yahoo_at": {
1227 "name": "Yahoo! Suche",
1228 "keyword": "at.yahoo.com",
1229 "favicon_url": "http://at.search.yahoo.com/favicon.ico",
1230 "search_url": "http://at.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1231 "type": "SEARCH_ENGINE_YAHOO",
1232 "id": 2
1233 },
1234
1235 "yahoo_au": {
1236 "name": "Yahoo!7",
1237 "keyword": "au.yahoo.com",
1238 "favicon_url": "http://au.search.yahoo.com/favicon.ico",
1239 "search_url": "http://au.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1240 "suggest_url": "http://aue-sayt.ff.search.yahoo.com/gossip-au-sayt?output= fxjson&command={searchTerms}",
1241 "type": "SEARCH_ENGINE_YAHOO",
1242 "id": 2
1243 },
1244
1245 "yahoo_br": {
1246 "name": "Yahoo! Brasil",
1247 "keyword": "br.yahoo.com",
1248 "favicon_url": "http://br.search.yahoo.com/favicon.ico",
1249 "search_url": "http://br.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1250 "suggest_url": "http://br-sayt.ff.search.yahoo.com/gossip-br-sayt?output=f xjson&command={searchTerms}",
1251 "type": "SEARCH_ENGINE_YAHOO",
1252 "id": 2
1253 },
1254
1255 "yahoo_ca": {
1256 "name": "Yahoo! Canada",
1257 "keyword": "ca.yahoo.com",
1258 "favicon_url": "http://ca.search.yahoo.com/favicon.ico",
1259 "search_url": "http://ca.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1260 "suggest_url": "http://gossip.ca.yahoo.com/gossip-ca-sayt?output=fxjsonp&c ommand={searchTerms}",
1261 "type": "SEARCH_ENGINE_YAHOO",
1262 "id": 2
1263 },
1264
1265 "yahoo_ch": {
1266 "name": "Yahoo! Suche",
1267 "keyword": "ch.yahoo.com",
1268 "favicon_url": "http://ch.search.yahoo.com/favicon.ico",
1269 "search_url": "http://ch.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1270 "type": "SEARCH_ENGINE_YAHOO",
1271 "id": 2
1272 },
1273
1274 "yahoo_cl": {
1275 "name": "Yahoo! Chile",
1276 "keyword": "cl.yahoo.com",
1277 "favicon_url": "http://cl.search.yahoo.com/favicon.ico",
1278 "search_url": "http://cl.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1279 "suggest_url": "http://gossip.telemundo.yahoo.com/gossip-e1-sayt?output=fx json&command={searchTerms}",
1280 "type": "SEARCH_ENGINE_YAHOO",
1281 "id": 2
1282 },
1283
1284 "yahoo_cn": {
1285 "name": "\u4e2d\u56fd\u96c5\u864e",
1286 "keyword": "cn.yahoo.com",
1287 "favicon_url": "http://search.cn.yahoo.com/favicon.ico",
1288 "search_url": "http://search.cn.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1289 "encoding": "GB2312",
1290 "type": "SEARCH_ENGINE_YAHOO",
1291 "id": 2
1292 },
1293
1294 "yahoo_co": {
1295 "name": "Yahoo! Colombia",
1296 "keyword": "co.yahoo.com",
1297 "favicon_url": "http://co.search.yahoo.com/favicon.ico",
1298 "search_url": "http://co.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1299 "suggest_url": "http://gossip.telemundo.yahoo.com/gossip-e1-sayt?output=fx json&command={searchTerms}",
1300 "type": "SEARCH_ENGINE_YAHOO",
1301 "id": 2
1302 },
1303
1304 "yahoo_de": {
1305 "name": "Yahoo! Deutschland",
1306 "keyword": "de.yahoo.com",
1307 "favicon_url": "http://de.search.yahoo.com/favicon.ico",
1308 "search_url": "http://de.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1309 "suggest_url": "http://de-sayt.ff.search.yahoo.com/gossip-de-sayt?output=f xjson&command={searchTerms}",
1310 "type": "SEARCH_ENGINE_YAHOO",
1311 "id": 2
1312 },
1313
1314 "yahoo_dk": {
1315 "name": "Yahoo! Danmark",
1316 "keyword": "dk.yahoo.com",
1317 "favicon_url": "http://dk.search.yahoo.com/favicon.ico",
1318 "search_url": "http://dk.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1319 "type": "SEARCH_ENGINE_YAHOO",
1320 "id": 2
1321 },
1322
1323 "yahoo_es": {
1324 "name": "Yahoo! Espa\u00f1a",
1325 "keyword": "es.yahoo.com",
1326 "favicon_url": "http://es.search.yahoo.com/favicon.ico",
1327 "search_url": "http://es.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1328 "suggest_url": "http://es-sayt.ff.search.yahoo.com/gossip-es-sayt?output=f xjson&command={searchTerms}",
1329 "type": "SEARCH_ENGINE_YAHOO",
1330 "id": 2
1331 },
1332
1333 "yahoo_fi": {
1334 "name": "Yahoo!-haku",
1335 "keyword": "fi.yahoo.com",
1336 "favicon_url": "http://fi.search.yahoo.com/favicon.ico",
1337 "search_url": "http://fi.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1338 "type": "SEARCH_ENGINE_YAHOO",
1339 "id": 2
1340 },
1341
1342 "yahoo_fr": {
1343 "name": "Yahoo! France",
1344 "keyword": "fr.yahoo.com",
1345 "favicon_url": "http://fr.search.yahoo.com/favicon.ico",
1346 "search_url": "http://fr.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1347 "suggest_url": "http://fr-sayt.ff.search.yahoo.com/gossip-fr-sayt?output=f xjson&command={searchTerms}",
1348 "type": "SEARCH_ENGINE_YAHOO",
1349 "id": 2
1350 },
1351
1352 "yahoo_hk": {
1353 "name": "Yahoo! Hong Kong",
1354 "keyword": "hk.yahoo.com",
1355 "favicon_url": "http://hk.search.yahoo.com/favicon.ico",
1356 "search_url": "http://hk.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1357 "type": "SEARCH_ENGINE_YAHOO",
1358 "id": 2
1359 },
1360
1361 "yahoo_id": {
1362 "name": "Yahoo! Indonesia",
1363 "keyword": "id.yahoo.com",
1364 "favicon_url": "http://id.search.yahoo.com/favicon.ico",
1365 "search_url": "http://id.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1366 "suggest_url": "http://id-sayt.ff.search.yahoo.com/gossip-id-sayt?output=f xjson&command={searchTerms}",
1367 "type": "SEARCH_ENGINE_YAHOO",
1368 "id": 2
1369 },
1370
1371 "yahoo_in": {
1372 "name": "Yahoo! India",
1373 "keyword": "in.yahoo.com",
1374 "favicon_url": "http://in.search.yahoo.com/favicon.ico",
1375 "search_url": "http://in.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1376 "suggest_url": "http://in-sayt.ff.search.yahoo.com/gossip-in-sayt?output=f xjson&command={searchTerms}",
1377 "type": "SEARCH_ENGINE_YAHOO",
1378 "id": 2
1379 },
1380
1381 "yahoo_it": {
1382 "name": "Yahoo! Italia",
1383 "keyword": "it.yahoo.com",
1384 "favicon_url": "http://it.search.yahoo.com/favicon.ico",
1385 "search_url": "http://it.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1386 "suggest_url": "http://it-sayt.ff.search.yahoo.com/gossip-it-sayt?output=f xjson&command={searchTerms}",
1387 "type": "SEARCH_ENGINE_YAHOO",
1388 "id": 2
1389 },
1390
1391 "yahoo_jp": {
1392 "name": "Yahoo! JAPAN",
1393 "keyword": "yahoo.co.jp",
1394 "favicon_url": "http://search.yahoo.co.jp/favicon.ico",
1395 "search_url": "http://search.yahoo.co.jp/search?ei={inputEncoding}&fr=crma s&p={searchTerms}",
1396 "type": "SEARCH_ENGINE_YAHOOJP",
1397 "id": 2
1398 },
1399
1400 "yahoo_kr": {
1401 "name": "\uc57c\ud6c4! \ucf54\ub9ac\uc544",
1402 "keyword": "kr.yahoo.com",
1403 "favicon_url": "http://kr.search.yahoo.com/favicon.ico",
1404 "search_url": "http://kr.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1405 "suggest_url": "http://kr.atc.search.yahoo.com/atcx.php?property=main&ot=f xjson&ei=utf8&eo=utf8&command={searchTerms}",
1406 "type": "SEARCH_ENGINE_YAHOO",
1407 "id": 2
1408 },
1409
1410 "yahoo_malaysia": {
1411 "name": "Yahoo! Malaysia",
1412 "keyword": "malaysia.yahoo.com",
1413 "favicon_url": "http://malaysia.search.yahoo.com/favicon.ico",
1414 "search_url": "http://malaysia.search.yahoo.com/search?ei={inputEncoding}& fr=crmas&p={searchTerms}",
1415 "suggest_url": "http://my-sayt.ff.search.yahoo.com/gossip-my-sayt?output=f xjson&command={searchTerms}",
1416 "type": "SEARCH_ENGINE_YAHOO",
1417 "id": 2
1418 },
1419
1420 "yahoo_mx": {
1421 "name": "Yahoo! M\u00e9xico",
1422 "keyword": "mx.yahoo.com",
1423 "favicon_url": "http://mx.search.yahoo.com/favicon.ico",
1424 "search_url": "http://mx.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1425 "suggest_url": "http://gossip.mx.yahoo.com/gossip-mx-sayt?output=fxjsonp&c ommand={searchTerms}",
1426 "type": "SEARCH_ENGINE_YAHOO",
1427 "id": 2
1428 },
1429
1430 "yahoo_nl": {
1431 "name": "Yahoo! Nederland",
1432 "keyword": "nl.yahoo.com",
1433 "favicon_url": "http://nl.search.yahoo.com/favicon.ico",
1434 "search_url": "http://nl.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1435 "type": "SEARCH_ENGINE_YAHOO",
1436 "id": 2
1437 },
1438
1439 "yahoo_no": {
1440 "name": "Yahoo! Norge",
1441 "keyword": "no.yahoo.com",
1442 "favicon_url": "http://no.search.yahoo.com/favicon.ico",
1443 "search_url": "http://no.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1444 "type": "SEARCH_ENGINE_YAHOO",
1445 "id": 2
1446 },
1447
1448 "yahoo_nz": {
1449 "name": "Yahoo!Xtra",
1450 "keyword": "nz.yahoo.com",
1451 "favicon_url": "http://nz.search.yahoo.com/favicon.ico",
1452 "search_url": "http://nz.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1453 "suggest_url": "http://aue-sayt.ff.search.yahoo.com/gossip-nz-sayt?output= fxjson&command={searchTerms}",
1454 "type": "SEARCH_ENGINE_YAHOO",
1455 "id": 2
1456 },
1457
1458 "yahoo_pe": {
1459 "name": "Yahoo! Per\u00fa",
1460 "keyword": "pe.yahoo.com",
1461 "favicon_url": "http://pe.search.yahoo.com/favicon.ico",
1462 "search_url": "http://pe.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1463 "suggest_url": "http://gossip.telemundo.yahoo.com/gossip-e1-sayt?output=fx json&command={searchTerms}",
1464 "type": "SEARCH_ENGINE_YAHOO",
1465 "id": 2
1466 },
1467
1468 "yahoo_ph": {
1469 "name": "Yahoo! Philippines",
1470 "keyword": "ph.yahoo.com",
1471 "favicon_url": "http://ph.search.yahoo.com/favicon.ico",
1472 "search_url": "http://ph.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1473 "suggest_url": "http://ph-sayt.ff.search.yahoo.com/gossip-ph-sayt?output=f xjson&command={searchTerms}",
1474 "type": "SEARCH_ENGINE_YAHOO",
1475 "id": 2
1476 },
1477
1478 "yahoo_qc": {
1479 "name": "Yahoo! Qu\u00e9bec",
1480 "keyword": "qc.yahoo.com",
1481 "favicon_url": "http://qc.search.yahoo.com/favicon.ico",
1482 "search_url": "http://qc.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1483 "type": "SEARCH_ENGINE_YAHOOQC",
1484 "id": 5 // Can't be 2 as this has to appear in the Canada list alongside
1485 // yahoo_ca.
1486 },
1487
1488 "yahoo_ru": {
1489 "name": "Yahoo! \u043f\u043e-\u0440\u0443\u0441\u0441\u043a\u0438",
1490 "keyword": "ru.yahoo.com",
1491 "favicon_url": "http://ru.search.yahoo.com/favicon.ico",
1492 "search_url": "http://ru.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1493 "type": "SEARCH_ENGINE_YAHOO",
1494 "id": 2
1495 },
1496
1497 "yahoo_se": {
1498 "name": "Yahoo! Sverige",
1499 "keyword": "se.yahoo.com",
1500 "favicon_url": "http://se.search.yahoo.com/favicon.ico",
1501 "search_url": "http://se.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1502 "type": "SEARCH_ENGINE_YAHOO",
1503 "id": 2
1504 },
1505
1506 "yahoo_sg": {
1507 "name": "Yahoo! Singapore",
1508 "keyword": "sg.yahoo.com",
1509 "favicon_url": "http://sg.search.yahoo.com/favicon.ico",
1510 "search_url": "http://sg.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1511 "suggest_url": "http://sg-sayt.ff.search.yahoo.com/gossip-sg-sayt?output=f xjson&command={searchTerms}",
1512 "type": "SEARCH_ENGINE_YAHOO",
1513 "id": 2
1514 },
1515
1516 "yahoo_th": {
1517 "name": "Yahoo! \u0e1b\u0e23\u0e30\u0e40\u0e17\u0e28\u0e44\u0e17\u0e22",
1518 "keyword": "th.yahoo.com",
1519 "favicon_url": "http://th.search.yahoo.com/favicon.ico",
1520 "search_url": "http://th.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1521 "suggest_url": "http://th-sayt.ff.search.yahoo.com/gossip-th-sayt?output=f xjson&command={searchTerms}",
1522 "type": "SEARCH_ENGINE_YAHOO",
1523 "id": 2
1524 },
1525
1526 "yahoo_tw": {
1527 "name": "Yahoo!\u5947\u6469",
1528 "keyword": "tw.yahoo.com",
1529 "favicon_url": "http://tw.search.yahoo.com/favicon.ico",
1530 "search_url": "http://tw.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1531 "type": "SEARCH_ENGINE_YAHOO",
1532 "id": 2
1533 },
1534
1535 "yahoo_uk": {
1536 "name": "Yahoo! UK & Ireland",
1537 "keyword": "uk.yahoo.com",
1538 "favicon_url": "http://uk.search.yahoo.com/favicon.ico",
1539 "search_url": "http://uk.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1540 "suggest_url": "http://uk-sayt.ff.search.yahoo.com/gossip-uk-sayt?output=f xjson&command={searchTerms}",
1541 "type": "SEARCH_ENGINE_YAHOO",
1542 "id": 2
1543 },
1544
1545 "yahoo_ve": {
1546 "name": "Yahoo! Venezuela",
1547 "keyword": "ve.yahoo.com",
1548 "favicon_url": "http://ve.search.yahoo.com/favicon.ico",
1549 "search_url": "http://ve.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1550 "suggest_url": "http://gossip.telemundo.yahoo.com/gossip-e1-sayt?output=fx json&command={searchTerms}",
1551 "type": "SEARCH_ENGINE_YAHOO",
1552 "id": 2
1553 },
1554
1555 "yahoo_vn": {
1556 "name": "Yahoo! Vi\u1ec7t Nam",
1557 "keyword": "vn.yahoo.com",
1558 "favicon_url": "http://vn.search.yahoo.com/favicon.ico",
1559 "search_url": "http://vn.search.yahoo.com/search?ei={inputEncoding}&fr=crm as&p={searchTerms}",
1560 "suggest_url": "http://vn-sayt.ff.search.yahoo.com/gossip-vn-sayt?output=f xjson&command={searchTerms}",
1561 "type": "SEARCH_ENGINE_YAHOO",
1562 "id": 2
1563 },
1564
1565 "yamli": {
1566 "name": "Yamli",
1567 "keyword": "yamli.com",
1568 "favicon_url": "http://www.yamli.com/favicon.ico",
1569 "search_url": "http://www.yamli.com/#q={searchTerms}",
1570 "id": 11
1571 },
1572
1573 "yandex_ru": {
1574 "name": "\u042f\u043d\u0434\u0435\u043a\u0441",
1575 "keyword": "yandex.ru",
1576 "favicon_url": "http://yandex.ru/favicon.ico",
1577 "search_url": "http://yandex.ru/yandsearch?text={searchTerms}",
1578 "suggest_url": "http://suggest.yandex.net/suggest-ff.cgi?part={searchTerms }",
1579 "type": "SEARCH_ENGINE_YANDEX",
1580 "id": 15
1581 },
1582
1583 "yandex_ua": {
1584 "name": "\u042f\u043d\u0434\u0435\u043a\u0441",
1585 "keyword": "yandex.ua",
1586 "favicon_url": "http://yandex.ua/favicon.ico",
1587 "search_url": "http://yandex.ua/yandsearch?text={searchTerms}",
1588 "suggest_url": "http://suggest.yandex.net/suggest-ff.cgi?part={searchTerms }",
1589 "type": "SEARCH_ENGINE_YANDEX",
1590 "id": 15
1591 },
1592
1593 "zoznam": {
1594 "name": "Zoznam",
1595 "keyword": "zoznam.sk",
1596 "favicon_url": "http://zoznam.sk/favicon.ico",
1597 "search_url": "http://zoznam.sk/hladaj.fcgi?s={searchTerms}",
1598 "encoding": "windows-1250",
1599 "type": "SEARCH_ENGINE_ZOZNAM",
1600 "id": 85
1601 },
1602
1603
1604 // UMA-only engines //////////////////////////////////////////////////////// ////
1605
1606 // The following engines are not included in any of the country lists. They
1607 // are listed in |kAllEngines|, however, so that GetEngineType can find them
1608 // for UMA reporting purposes.
1609
1610 "all_by": {
1611 "name": "ALL.BY",
1612 "keyword": "all.by",
1613 "search_url": "http://www.all.by/cgi-bin/search.cgi?mode=by&query={searchT erms}",
1614 "type": "SEARCH_ENGINE_ALL_BY",
1615 "id": 33
1616 },
1617
1618 "aport": {
1619 "name": "Aport",
1620 "keyword": "aport.ru",
1621 "search_url": "http://www.aport.ru/search/?r={searchTerms}",
1622 "type": "SEARCH_ENGINE_APORT",
1623 "id": 34
1624 },
1625
1626 "avg": {
1627 "name": "AVG Secure Search",
1628 "keyword": "search.avg.com",
1629 "search_url": "http://search.avg.com/route/?q={searchTerms}&lng={language} ",
1630 "type": "SEARCH_ENGINE_AVG",
1631 "id": 50
1632 },
1633
1634 "avg_i": {
1635 "name": "AVG Secure Search",
1636 "keyword": "isearch.avg.com",
1637 "search_url": "http://isearch.avg.com/search?q={searchTerms}&lng={language }",
1638 "type": "SEARCH_ENGINE_AVG",
1639 "id": 52
1640 },
1641
1642 "conduit": {
1643 "name": "Conduit",
1644 "keyword": "conduit.com",
1645 "search_url": "http://search.conduit.com/Results.aspx?q={searchTerms}",
1646 "type": "SEARCH_ENGINE_CONDUIT",
1647 "id": 36
1648 },
1649
1650 "icq": {
1651 "name": "ICQ",
1652 "keyword": "icq.com",
1653 "search_url": "http://search.icq.com/search/results.php?q={searchTerms}",
1654 "type": "SEARCH_ENGINE_ICQ",
1655 "id": 39
1656 },
1657
1658 "meta_ua": {
1659 "name": "Meta-Ukraine",
1660 "keyword": "meta.ua",
1661 "search_url": "http://meta.ua/search.asp?q={searchTerms}",
1662 "type": "SEARCH_ENGINE_META_UA",
1663 "id": 40
1664 },
1665
1666 "metabot_ru": {
1667 "name": "Metabot",
1668 "keyword": "metabot.ru",
1669 "search_url": "http://results.metabot.ru/?st={searchTerms}",
1670 "type": "SEARCH_ENGINE_METABOT_RU",
1671 "id": 42
1672 },
1673
1674 "nigma": {
1675 "name": "Nigma",
1676 "keyword": "nigma.ru",
1677 "search_url": "http://www.nigma.ru/?s={searchTerms}",
1678 "type": "SEARCH_ENGINE_NIGMA",
1679 "id": 43
1680 },
1681
1682 "qip": {
1683 "name": "QIP",
1684 "keyword": "qip.ru",
1685 "search_url": "http://search.qip.ru/?query={searchTerms}",
1686 "type": "SEARCH_ENGINE_QIP",
1687 "id": 47
1688 },
1689
1690 "ukr_net": {
1691 "name": "Ukr.net",
1692 "keyword": "ukr.net",
1693 "search_url": "http://search.ukr.net/google/search.php?q={searchTerms}",
1694 "type": "SEARCH_ENGINE_UKR_NET",
1695 "id": 48
1696 },
1697
1698 "webalta": {
1699 "name": "Webalta",
1700 "keyword": "webalta.ru",
1701 "search_url": "http://webalta.ru/search?q={searchTerms}",
1702 "type": "SEARCH_ENGINE_WEBALTA",
1703 "id": 49
1704 },
1705
1706 "yandex_tr": {
1707 "name": "Yandex",
1708 "keyword": "yandex.com.tr",
1709 "favicon_url": "http://yandex.com.tr/favicon.ico",
1710 "search_url": "http://yandex.com.tr/yandsearch?text={searchTerms}",
1711 "suggest_url": "http://suggest.yandex.net/suggest-ff.cgi?part={searchTerms }",
1712 "type": "SEARCH_ENGINE_YANDEX",
1713 "id": 15
1714 }
1715 }
1716 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698