evolution-data-server r8747 - trunk/camel
- From: psankar svn gnome org
- To: svn-commits-list gnome org
- Subject: evolution-data-server r8747 - trunk/camel
- Date: Tue, 6 May 2008 12:13:30 +0100 (BST)
Author: psankar
Date: Tue May 6 11:13:30 2008
New Revision: 8747
URL: http://svn.gnome.org/viewvc/evolution-data-server?rev=8747&view=rev
Log:
Changed the Macro name.
Modified:
trunk/camel/camel-db.h
trunk/camel/camel-store.c
Modified: trunk/camel/camel-db.h
==============================================================================
--- trunk/camel/camel-db.h (original)
+++ trunk/camel/camel-db.h Tue May 6 11:13:30 2008
@@ -6,7 +6,8 @@
#include <sqlite3.h>
#include <glib.h>
-#define CAMEL_DB_FILE "folders.db"
+#define CAMEL_SUMMARY_EXTENSION ".ev-summary"
+#define CAMEL_STORE_SUMMARY_FILE_NAME "folders.ev-summary"
struct _CamelDB {
sqlite3 *db;
Modified: trunk/camel/camel-store.c
==============================================================================
--- trunk/camel/camel-store.c (original)
+++ trunk/camel/camel-store.c Tue May 6 11:13:30 2008
@@ -220,22 +220,25 @@
service_path = camel_service_get_path (service);
summary_path = g_strsplit (service_path, "/", 2);
- path = g_strdup_printf ("%s/%s", summary_path[1], CAMEL_DB_FILE);
+ path = g_strdup_printf ("/%s/%s", summary_path[1], CAMEL_STORE_SUMMARY_FILE_NAME);
- d(printf ("\n\aDatabase path to be opened is : [%s] \n\a", path));
+ d(printf ("Database path to be opened is : [%s] \n", path));
store->cdb = camel_db_open (path);
if (store->cdb) {
d(printf ("Store's database opened \n"));
- /* If the tables aren't already there create atleast the store's table*/
+ /* If the tables aren't already there, create atleast the store's table*/
if (!camel_db_command (store->cdb, "select folder from folders")) {
if (!camel_db_command (store->cdb, CREATE_STORE_TABLE_QRY))
g_warning ("Unable to create store structing db");
- else
+ else {
+ printf ("README: All these changes needs to be logged \n");
d(printf ("folders table created in the store's database.\n"));
+ }
}
} else {
d(printf ("Store's database cannot be opened \n"));
+ printf ("FIXME: This has to be passed via a CamelException \n");
}
g_free (service_path);
g_free (path);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]