OLD | NEW |
(Empty) | |
| 1 The search.sqlite contains a table named |engine_data| which holds information |
| 2 about search engines. The table's data has been modified for the sake of |
| 3 testing. The original content of |engine_data| looked as follows: |
| 4 |
| 5 id engineid name value |
| 6 -- ------------------------- ----- ----- |
| 7 10 [app]/google.xml order 1 |
| 8 11 [app]/yahoo.xml order 2 |
| 9 12 [app]/amazondotcom.xml order 3 |
| 10 13 [app]/answers.xml order 4 |
| 11 14 [app]/creativecommons.xml order 5 |
| 12 15 [app]/eBay.xml order 6 |
| 13 16 [profile]/flickr-tags.xml order 7 |
| 14 17 [profile]/imdb.xml order 8 |
| 15 18 [profile]/webster.xml order 9 |
| 16 19 [app]/wikipedia.xml order 10 |
| 17 |
| 18 The |engineid| contains [app]/<name>.xml or [profile]/<name>.xml where |
| 19 the [app] and [profile] need to be replaced with the actual app or profile |
| 20 path. The actual app or profile path varies with operating system. To make |
| 21 the browser test independant of machine's environment, [app] and [profile] |
| 22 is replaced with relative path as follows: |
| 23 |
| 24 [app] => ./chrome/test/data/firefox3_profile/searchplugins/default |
| 25 [profile] => ./chrome/test/data/firefox3_profile/searchplugins/installed |
| 26 |
| 27 To respect the relative path in test data, all default and installed search |
| 28 engines XMLs are placed in searchplugins/default and searchplugins/installed |
| 29 directory respectively. |
OLD | NEW |