History log of /packages/apps/Browser/res/xml/bookmarks_searchable.xml
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
725365fe1021e63a784e9e1f0b71ba78eba6c164 19-Jul-2012 Jean-Christophe PINCE <jean-christophe.pince@intel.com> Fix the issue the SQL request built by QuickSearchBox is not handled properly by Sqlite3.

SELECT history._id AS _id, history.url AS url,
CASE WHEN bookmarks.title IS NOT NULL THEN bookmarks.title ELSE
history.title END AS title,
CASE WHEN bookmarks.url IS NOT NULL THEN "2130837532" ELSE
"2130837548" END,
history.date AS date FROM history
LEFT OUTER JOIN bookmarks ON history.url = bookmarks.url
WHERE (url LIKE ?) AND (deleted=0 AND folder=0) ORDER BY
history.date DESC

has to be replaced with:
SELECT history._id AS _id, history.url AS url,
CASE WHEN bookmarks.title IS NOT NULL THEN bookmarks.title ELSE
history.title END AS title,
CASE WHEN bookmarks.url IS NOT NULL THEN "2130837532" ELSE
"2130837548" END,
history.date AS date FROM history
LEFT OUTER JOIN bookmarks ON history.url = bookmarks.url
WHERE (bookmarks.url LIKE ?) AND (deleted=0 AND folder=0) ORDER BY
history.date DESC

Change-Id: Ib9fc03c2e102cca83c09168f75f2911a191af5ae
Author: Jean-Christophe PINCE <jean-christophe.pince@intel.com>
Signed-off-by: Xiaokang Qin <xiaokang.qin@intel.com>
Signed-off-by: Bruce Beare <bruce.j.beare@intel.com>
Signed-off-by: Jack Ren <jack.ren@intel.com>
Author-tracking-BZ: 43188
/packages/apps/Browser/res/xml/bookmarks_searchable.xml
1e8f0583fb74658666dc4105bf15788f2585a6a2 13-Jul-2009 Bjorn Bringert <bringert@android.com> Move Browser search description to bookmarks search.

Before, android:searchSettingsDescription was set in searchable.xml,
but not in bookmarks_searchable.xml, which is the one that
is used from global search.

Fixes http://b/issue?id=1971319
"Description string for Browser source not showing in settings"
/packages/apps/Browser/res/xml/bookmarks_searchable.xml
9c7a356d95f0c9bf84b0cf5dd4215a6d77fc0149 05-May-2009 Bjorn Bringert <bringert@android.com> Add includeInGlobalSearch to Browser bookmarks search.

This will allow bookmarks+history suggestions to show
up in global search without having it hard-coded
in GlobalSearch.SuggestionSources.
/packages/apps/Browser/res/xml/bookmarks_searchable.xml
e90ede446d39dfbee45bcaef6a5ae876a5c92752 29-Apr-2009 Bjorn Bringert <bringert@android.com> Add bookmarks search activity to browser.

This activity is never started from the browser. Its purpose
is to provide bookmark suggestions to global search (through
its searchable meta-data), and to handle the intents produced
by clicking such suggestions.
/packages/apps/Browser/res/xml/bookmarks_searchable.xml