diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-07-31 14:19:07 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-07-31 14:19:07 +0800 |
commit | 00dbc974c6830aa29243964d82836ecd0d48560a (patch) | |
tree | 09e37558712f03b05b71ec0ba2e451b1567dd6c2 /plugins | |
parent | 20f0d06bf32e4fb4a52c41c269426c769a5840db (diff) | |
download | gsoc2013-evolution-00dbc974c6830aa29243964d82836ecd0d48560a.tar gsoc2013-evolution-00dbc974c6830aa29243964d82836ecd0d48560a.tar.gz gsoc2013-evolution-00dbc974c6830aa29243964d82836ecd0d48560a.tar.bz2 gsoc2013-evolution-00dbc974c6830aa29243964d82836ecd0d48560a.tar.lz gsoc2013-evolution-00dbc974c6830aa29243964d82836ecd0d48560a.tar.xz gsoc2013-evolution-00dbc974c6830aa29243964d82836ecd0d48560a.tar.zst gsoc2013-evolution-00dbc974c6830aa29243964d82836ecd0d48560a.zip |
Fixes #347973
svn path=/trunk/; revision=32438
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/publish-calendar/ChangeLog | 6 | ||||
-rw-r--r-- | plugins/publish-calendar/url-editor-dialog.c | 53 |
2 files changed, 21 insertions, 38 deletions
diff --git a/plugins/publish-calendar/ChangeLog b/plugins/publish-calendar/ChangeLog index a61c729da6..c4b9b86fc9 100644 --- a/plugins/publish-calendar/ChangeLog +++ b/plugins/publish-calendar/ChangeLog @@ -1,3 +1,9 @@ +2006-07-31 Chenthill Palanisamy <pchenthill@novell.com> + + Fixes #347973 + * url-editor-dialog.c: (set_from_uri): Parse the uri + using EUri. + 2006-02-09 Rajeev ramanathan <rajeevramanathan_2004@yahoo.co.in> Fixes #328389 diff --git a/plugins/publish-calendar/url-editor-dialog.c b/plugins/publish-calendar/url-editor-dialog.c index b17ad26558..7eed7f796e 100644 --- a/plugins/publish-calendar/url-editor-dialog.c +++ b/plugins/publish-calendar/url-editor-dialog.c @@ -22,6 +22,7 @@ #include "url-editor-dialog.h" #include <libedataserverui/e-passwords.h> +#include <libedataserver/e-url.h> #include <libgnomevfs/gnome-vfs-utils.h> #include <string.h> #include <e-util/e-util-private.h> @@ -252,14 +253,14 @@ static void set_from_uri (UrlEditorDialog *dialog) { EPublishUri *uri; - char *method, *username, *server, *port; - char *tmp1, *tmp2, *tmp3; + char *method; + EUri *euri = NULL; uri = dialog->uri; + euri = e_uri_new (uri->location); /* determine our method */ - tmp1 = strchr (uri->location, ':'); - method = g_strndup (uri->location, tmp1 - uri->location); + method = euri->protocol; if (strcmp (method, "smb") == 0) uri->service_type = TYPE_SMB; else if (strcmp (method, "sftp") == 0) @@ -274,46 +275,22 @@ set_from_uri (UrlEditorDialog *dialog) uri->service_type = TYPE_DAVS; else uri->service_type = TYPE_URI; - g_free (method); - - /* We've eliminated the protocol field. Now we need - * to figure out whether we've got a username */ - tmp2 = tmp1 + 3; - tmp1 = strchr (tmp2, '@'); - tmp3 = strchr (tmp2, '/'); - if (tmp1) { - if (tmp1 < tmp3) { - /* We've got an @, and it's inside the hostname - * field. Extract and set the username */ - username = g_strndup (tmp2, tmp1 - tmp2); - gtk_entry_set_text (GTK_ENTRY (dialog->username_entry), username); - g_free (username); - /* Move tmp2 up to the server field */ - tmp2 = tmp1 + 1; - } - } + if (euri->user) + gtk_entry_set_text (GTK_ENTRY (dialog->username_entry), euri->user); - /* Do we have a port? */ - tmp1 = strchr (tmp2, ':'); - if (tmp1 && (tmp1 < tmp3)) { - server = g_strndup (tmp2, tmp1 - tmp2); - gtk_entry_set_text (GTK_ENTRY (dialog->server_entry), server); - g_free (server); + if (euri->host) + gtk_entry_set_text (GTK_ENTRY (dialog->server_entry), euri->host); - tmp1++; - port = g_strndup (tmp1, tmp3 - tmp1); - gtk_entry_set_text (GTK_ENTRY (dialog->port_entry), port); - g_free (port); - } else { - server = g_strndup (tmp2, tmp3 - tmp2); - gtk_entry_set_text (GTK_ENTRY (dialog->server_entry), server); - g_free (server); - } + if (euri->port) + gtk_entry_set_text (GTK_ENTRY (dialog->port_entry), euri->port); - gtk_entry_set_text (GTK_ENTRY (dialog->file_entry), tmp3); + if (euri->path) + gtk_entry_set_text (GTK_ENTRY (dialog->file_entry), euri->path); gtk_combo_box_set_active (GTK_COMBO_BOX (dialog->publish_service), uri->service_type); + + e_uri_free (euri); } static gboolean |