History log of /packages/apps/Browser/res/xml/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/searchable.xml
5ff5c8b88968fa794eab4b7a263cae25f05bd4d3 03-May-2012 Michael Kolb <kolby@google.com> Remove voice search handling

Bug: 6439925

Change-Id: I1b7161a67fa0c20d87f147d6ed19c02e53093054
/packages/apps/Browser/res/xml/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/searchable.xml
d45fb4d8b2d9c1d67fb1dd0454636ec468371dae 01-Jul-2009 Mike LeBeau <mlebeau@android.com> Add new searchSettingsDescription attribute for Browser's searchable.
This will be shown under the individual searchable item in system search settings.
/packages/apps/Browser/res/xml/searchable.xml
0c90888c75eed12f6e2e14a9044faf50bd4af8ed 04-Mar-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //depot/cupcake/@135843
/packages/apps/Browser/res/xml/searchable.xml
8611831e36b71c844a14788998728f3cd625b833 04-Mar-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //depot/cupcake/@135843
/packages/apps/Browser/res/xml/searchable.xml
1658a9bc00a3bd692908dcd5b9eb550a49f8f5ec 03-Mar-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //depot/cupcake/@132589
/packages/apps/Browser/res/xml/searchable.xml
aec52de1c66b9ec52b126705ea1a63c2db6e12e5 03-Mar-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //depot/cupcake/@137055
/packages/apps/Browser/res/xml/searchable.xml
b7775e1e46a6c8ce0f07747d44c1b1792bb0ce1c 11-Feb-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //branches/cupcake/...@130745
/packages/apps/Browser/res/xml/searchable.xml
765e7c99c2b0b503f6ca6005897224b9d616d49b 10-Jan-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //branches/cupcake/...@125939
/packages/apps/Browser/res/xml/searchable.xml
ba6d7b853c32ad6c3be26c443daa61f322bcfdc2 21-Oct-2008 The Android Open Source Project <initial-contribution@android.com> Initial Contribution
/packages/apps/Browser/res/xml/searchable.xml