diff options
author | Sarfraaz Ahmed <asarfraaz@novell.com> | 2005-09-28 22:30:54 +0800 |
---|---|---|
committer | Ahmed Sarfraaz <sarfraaz@src.gnome.org> | 2005-09-28 22:30:54 +0800 |
commit | 5c7e94906345581fdd99c461f0c23cab3b8ebf4b (patch) | |
tree | b70b1d5bc8b8d9b966cc84ec2d4d840640c6cbbd /plugins/exchange-operations/exchange-contacts.c | |
parent | ebef4e5ed565ae236aed1e644bd62fb475e928f8 (diff) | |
download | gsoc2013-evolution-5c7e94906345581fdd99c461f0c23cab3b8ebf4b.tar.gz gsoc2013-evolution-5c7e94906345581fdd99c461f0c23cab3b8ebf4b.tar.zst gsoc2013-evolution-5c7e94906345581fdd99c461f0c23cab3b8ebf4b.zip |
Propogate the authentication mechanism to the backend. exchange-calendar.c
2005-09-28 Sarfraaz Ahmed <asarfraaz@novell.com>
* exchange-account-setup.c (owa_authenticate_user) : Propogate the
authentication mechanism to the backend.
* exchange-calendar.c
* exchange-contacts.c
* exchange-folder.c : Parse the new account uri.
svn path=/trunk/; revision=30413
Diffstat (limited to 'plugins/exchange-operations/exchange-contacts.c')
-rw-r--r-- | plugins/exchange-operations/exchange-contacts.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/exchange-operations/exchange-contacts.c b/plugins/exchange-operations/exchange-contacts.c index dc1859cee2..ae99fc5566 100644 --- a/plugins/exchange-operations/exchange-contacts.c +++ b/plugins/exchange-operations/exchange-contacts.c @@ -70,7 +70,7 @@ e_exchange_contacts_get_contacts (void) account = exchange_operations_get_exchange_account (); - uri_prefix = g_strconcat ("exchange://", account->account_filename, "/", NULL); + uri_prefix = g_strconcat ("exchange://", account->account_filename, "/;", NULL); prefix_len = strlen (uri_prefix); contacts_list = g_ptr_array_new (); @@ -110,7 +110,7 @@ e_exchange_contacts_pcontacts_on_change (GtkTreeView *treeview, ESource *source) gchar *ruri; gtk_tree_model_get (model, &iter, CONTACTSRURI_COL, &ruri, -1); - es_ruri = g_strconcat (account->account_filename, "/", ruri, NULL); + es_ruri = g_strconcat (account->account_filename, "/;", ruri, NULL); e_source_set_relative_uri (source, es_ruri); g_free (ruri); @@ -250,7 +250,7 @@ e_exchange_contacts_pcontacts (EPlugin *epl, EConfigHookItemFactoryData *data) GtkTreeSelection *selection; tmpruri = (gchar*) rel_uri; - uri_prefix = g_strconcat (account->account_filename, "/", NULL); + uri_prefix = g_strconcat (account->account_filename, "/;", NULL); prefix_len = strlen (uri_prefix); if (g_str_has_prefix (tmpruri, uri_prefix)) { @@ -326,7 +326,7 @@ e_exchange_contacts_commit (EPlugin *epl, EConfigTarget *target) return; account = exchange_operations_get_exchange_account (); - path_prefix = g_strconcat (account->account_filename, "/", NULL); + path_prefix = g_strconcat (account->account_filename, "/;", NULL); prefix_len = strlen (path_prefix); g_free (path_prefix); |