summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-08-31Remove WebSearchProvider package from tree.HEADandroid-sdk-tools_r2android-sdk-1.6_r2android-sdk-1.6_r1android-sdk-1.6-docs_r1android-1.6_r2android-1.6_r1.5android-1.6_r1.4android-1.6_r1.3android-1.6_r1.2android-1.6_r1.1android-1.6_r1mastermaindonut-release2donut-releasedonutAnonymous Coward
2009-08-26Translations for bug 2067035. DO NOT MERGEEric Fischer
Change-Id: I39acc3a013ebbcb7f1c1c5a1ba1091d1120856d4
2009-08-20Import revised translations. DO NOT MERGEEric Fischer
2009-08-03Import revised translations. DO NOT MERGEEric Fischer
2009-07-31Add MODULE_LICENSE_APACHE2 to WebSearchProvider to allow it to beMike LeBeau
open-sourced.
2009-07-31Add a few more explanatory comments to WebSearchProvider so it's clearerMike LeBeau
in the open source what this package is for.
2009-07-28Pass along our package name as the app id if one is not passed in forMike LeBeau
web search intents. Fixes http://b/2020191
2009-07-28Pass through the browser's application id extra if one is provided, so that ↵Mike LeBeau
the browser can figure out which window to put a new search into.
2009-07-27Handle ACTION_SEARCH in WebSearchProviderBjorn Bringert
Fixes http://b/issue?id=2014515 for WebSearchProvider
2009-07-24Added settings to WebSearchProviderBjorn Bringert
WebSearchProvider now has its own settings UI, with a "Show web suggestions" preference. This is disabled if we do not support suggestions for the selected search engine. This is the WebSearchProvider part of http://b/issue?id=1996992
2009-07-13Import new translationsEric Fischer
2009-07-09Rename "no" locale search_engines.xml file to "nb" locale for consistency.Eric Fischer
2009-07-08Turn on autoUrlDetect in search dialog for search engines.Satish Sampath
2009-06-25Added ACCESS_NETWORK_STATE perm to WebSeachProviderBjorn Bringert
2009-06-24Fail fast if there is no network connection.Bjorn Bringert
Fixes http://b/issue?id=1920886 for WebSearchProvider.
2009-06-17Merge change 4419 into donutAndroid (Google) Code Review
* changes: Make name of Web Search provider localizable.
2009-06-16Make name of Web Search provider localizable.Eric Fischer
2009-06-16Revert to using ACTION_VIEW & add location via extra field.Satish Sampath
2009-06-11Use ACTION_SEARCH to launch search URLs.Satish Sampath
This was done so that the browser can identify them as search requests and add location information to the request if enabled.
2009-06-11Add queryAfterZeroResults flag to all web search providersSatish Sampath
2009-06-11Update WebSearchProvider .mk file's target file name.Satish Sampath
We are using the WebSearchProvider name now in core.mk and other mk files and due to this mistake in naming here this was not getting built/included by default.
2009-06-10Adds icon to represent third party web search engines.Satish Sampath
2009-06-05Remove the onboot handler which has moved to Searchables.Satish Sampath
This is a rollback of change 2908. The Searchables module of SearchManager now takes care of setting the preferred web search activity when required on boot, on package add/remove/update and other such events, so this is no longer needed.
2009-06-03Fix errors in the web search metadata checked in earlier.Satish Sampath
We had a copy of en-US strings checked into the values-en-rUS directory but it should have been under values directory. Reinstating the '@' symbol in 2 search engine names by escaping them with a backslash. The script used to generate these files will be submitted in a separate review.
2009-06-03Merge change 3029 into donutAndroid (Google) Code Review
* changes: Remove c++ comments and fix faulty regex.
2009-06-03Remove c++ comments and fix faulty regex.Satish Sampath
- The regex to search for the pattern ' name =' or ' name=' was broken and fixed in this change. - Also added ability to look for c++ style // comments in each line and if present remove them before parsing the rest of the data. - Also added ability to detect '@' and '?' at the beginning of a string and inject a backslash before them, so that the aapt tool compiles them properly without thinking that they are references to other resources.
2009-06-03Fix build break due to invalid XML format.Satish Sampath
2009-06-03Merge change 3027 into donutAndroid (Google) Code Review
* changes: Add web search metadata for all supported locales.
2009-06-03Add web search metadata for all supported locales.Satish Sampath
The list of locales was obtained using the command find . -name "*.mk" -exec grep -H PRODUCT_LOCALES {} \; and for each locale we ran tools/get_search_engines.py <locale>
2009-06-03Use a magnifying glass icon for third party web suggestionsSatish Sampath
2009-06-03Sets up default web search intent action handler on boot.Satish Sampath
On boot, typically there will be multiple activities registered to handle intent action WEB_SEARCH. We make the WebSearchProvider receive the boot completed broadcast message and in that event check our list of known web search providers ordered by priority and set the highest priority one found as the preferred activity.
2009-05-29Adds tools for generating web search provider metadata.Satish Sampath
The tools consist of a python script and a resource file template. The script downloads a specific source file from the public Chrome source code repository and parses it to retrieve the search engine provider data for the specified locale. It then writes out any new search engine metadata to an existing file under values/all_search_engines.xml and creates locale specific list of search engines in the file res/<values-lang-rRegion>/search_engines.xml (based on the template in this patch).
2009-05-27Removes a log message printing out the suggest URI.Satish Sampath
This was being done on each keystroke/query which was unnecessary, and it was also causing a crash when a search engine in the list only supported searches and not suggest.
2009-05-25Adds third party web search & suggest providers.Satish Sampath
The XML files under res/ will be automatically generated with a script in a subsequent change. The design is documented in the 'Design' section of https://docs.google.com/a/google.com/Doc?docid=0AUpt8mrQCqRkZGdnOGtmZzJfNWRwbXJndDc1
2009-05-21Branching SuggestionProvider.java from package GoogleSearchSatish Sampath
We'll be using this as the base for adding web search suggestions from third party search engines which implement the OpenSearch standard.
2009-05-20new project, first commitThe Android Open Source Project