From d50001dc6f26b31e39689a20a6540ad4f2e525ba Mon Sep 17 00:00:00 2001 From: Manuel QuiƱones Date: Fri, 06 Jan 2012 14:22:48 +0000 Subject: Global history for URL autocompletion in URL entry The sqlite backend to store the global history is maintained. There are two fields in the database that are left unused: bookmark and gecko_flags. Signed-off-by: Manuel QuiƱones Acked-by: Simon Schampijer --- (limited to 'places.py') diff --git a/places.py b/places.py index 90956fe..8b98c79 100644 --- a/places.py +++ b/places.py @@ -46,6 +46,9 @@ class SqliteStore(object): cursor.execute('select * from sqlite_master where name == "places"') if cursor.fetchone() == None: + # Create table to store the visited places. Note that + # bookmark and gecko_flags fields aren't used anymore in + # WebKit port, but are kept for backwards compatibility. cursor.execute("""create table places ( uri text, title text, -- cgit v0.9.1