diff options
author | Claudio Saavedra <csaavedra@igalia.com> | 2012-03-03 03:15:50 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-03-07 04:49:46 +0800 |
commit | 03ec152d954d554ac6cca8d26616dfa55acda460 (patch) | |
tree | e03dcdb8e8a46f2af17073918a355f32d8e17b5f /lib/history/ephy-history-service-urls-table.c | |
parent | f73a9d9a5ba6a3f7613fc566af24c75d022a27ec (diff) | |
download | gsoc2013-epiphany-03ec152d954d554ac6cca8d26616dfa55acda460.tar gsoc2013-epiphany-03ec152d954d554ac6cca8d26616dfa55acda460.tar.gz gsoc2013-epiphany-03ec152d954d554ac6cca8d26616dfa55acda460.tar.bz2 gsoc2013-epiphany-03ec152d954d554ac6cca8d26616dfa55acda460.tar.lz gsoc2013-epiphany-03ec152d954d554ac6cca8d26616dfa55acda460.tar.xz gsoc2013-epiphany-03ec152d954d554ac6cca8d26616dfa55acda460.tar.zst gsoc2013-epiphany-03ec152d954d554ac6cca8d26616dfa55acda460.zip |
Allow the visits and urls queries to be host-specific
Diffstat (limited to 'lib/history/ephy-history-service-urls-table.c')
-rw-r--r-- | lib/history/ephy-history-service-urls-table.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/history/ephy-history-service-urls-table.c b/lib/history/ephy-history-service-urls-table.c index 5473894d5..75d98ea0c 100644 --- a/lib/history/ephy-history-service-urls-table.c +++ b/lib/history/ephy-history-service-urls-table.c @@ -252,6 +252,9 @@ ephy_history_service_find_url_rows (EphyHistoryService *self, EphyHistoryQuery * statement_str = g_string_append (statement_str, "WHERE "); } + if (query->host > 0) + statement_str = g_string_append (statement_str, "urls.host = ? AND "); + for (substring = query->substring_list; substring != NULL; substring = substring->next) statement_str = g_string_append (statement_str, "(urls.url LIKE ? OR urls.title LIKE ?) AND "); @@ -298,6 +301,14 @@ ephy_history_service_find_url_rows (EphyHistoryService *self, EphyHistoryQuery * return NULL; } } + if (query->host > 0) { + if (ephy_sqlite_statement_bind_int (statement, i++, (int)query->host, &error) == FALSE) { + g_error ("Could not build urls table query statement: %s", error->message); + g_error_free (error); + g_object_unref (statement); + return NULL; + } + } for (substring = query->substring_list; substring != NULL; substring = substring->next) { char *string = g_strdup_printf ("%%%s%%", (char*)substring->data); if (ephy_sqlite_statement_bind_string (statement, i++, string, &error) == FALSE) { |