/* * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) version 3. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with the program; if not, see * * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com) * */ #ifdef HAVE_CONFIG_H #include #endif #include #include #include #include #include #include #include #include "addressbook/gui/merging/eab-contact-merging.h" #include "addressbook/gui/widgets/eab-contact-display.h" #include "addressbook/util/eab-book-util.h" #include "mail/em-format-hook.h" #include "mail/em-format-html.h" #define d(x) typedef struct _VCardInlinePObject VCardInlinePObject; struct _VCardInlinePObject { EMFormatHTMLPObject object; GSList *contact_list; ESourceList *source_list; GtkWidget *contact_display; GtkWidget *message_label; }; static gint org_gnome_vcard_inline_classid; /* Forward Declarations */ void org_gnome_vcard_inline_format (gpointer ep, EMFormatHookTarget *target); gint e_plugin_lib_enable (EPlugin *ep, gint enable); gint e_plugin_lib_enable (EPlugin *ep, gint enable) { return 0; } static void org_gnome_vcard_inline_pobject_free (EMFormatHTMLPObject *object) { VCardInlinePObject *vcard_object; vcard_object = (VCardInlinePObject *) object; e_client_util_free_object_slist (vcard_object->contact_list); vcard_object->contact_list = NULL; if (vcard_object->source_list != NULL) { g_object_unref (vcard_object->source_list); vcard_object->source_list = NULL; } if (vcard_object->contact_display != NULL) { g_object_unref (vcard_object->contact_display); vcard_object->contact_display = NULL; } if (vcard_object->message_label != NULL) { g_object_unref (vcard_object->message_label); vcard_object->message_label = NULL; } } static void org_gnome_vcard_inline_decode (VCardInlinePObject *vcard_object, CamelMimePart *mime_part) { CamelDataWrapper *data_wrapper; CamelMedium *medium; CamelStream *stream; GSList *contact_list; GByteArray *array; const gchar *string; const guint8 padding[2] = {0}; array = g_byte_array_new (); medium = CAMEL_MEDIUM (mime_part); /* Stream takes ownership of the byte array. */ stream = camel_stream_mem_new_with_byte_array (array); data_wrapper = camel_medium_get_content (medium); camel_data_wrapper_decode_to_stream_sync ( data_wrapper, stream, NULL, NULL); /* because the result is not NULL-terminated */ g_byte_array_append (array, padding, 2); string = (gchar *) array->data; contact_list = eab_contact_list_from_string (string); vcard_object->contact_list = contact_list; g_object_unref (mime_part); g_object_unref (stream); } static void org_gnome_vcard_inline_client_loaded_cb (ESource *source, GAsyncResult *result, GSList *contact_list) { EClient *client = NULL; EBookClient *book_client; GSList *iter; GError *error = NULL; e_client_utils_open_new_finish (source, result, &client, &error); if (error != NULL) { g_warn_if_fail (client == NULL); g_warning ( "%s: Failed to open book client: %s", G_STRFUNC, error->message); g_error_free (error); goto exit; } g_return_if_fail (E_IS_BOOK_CLIENT (client)); book_client = E_BOOK_CLIENT (client); for (iter = contact_list; iter != NULL; iter = iter->next) { EContact *contact; contact = E_CONTACT (iter->data); eab_merging_book_add_contact (book_client, contact, NULL, NULL); } g_object_unref (client); exit: e_client_util_free_object_slist (contact_list); } static void org_gnome_vcard_inline_save_cb (VCardInlinePObject *vcard_object) { ESource *source; GSList *contact_list; GtkWidget *dialog; g_return_if_fail (vcard_object->source_list != NULL); dialog = e_source_selector_dialog_new (NULL, vcard_object->source_list); e_source_selector_dialog_select_default_source ( E_SOURCE_SELECTOR_DIALOG (dialog)); if (gtk_dialog_run (GTK_DIALOG (dialog)) != GTK_RESPONSE_OK) { gtk_widget_destroy (dialog); return; } source = e_source_selector_dialog_peek_primary_selection ( E_SOURCE_SELECTOR_DIALOG (dialog)); gtk_widget_destroy (dialog); g_return_if_fail (source != NULL); contact_list = e_client_util_copy_object_slist (NULL, vcard_object->contact_list); e_client_utils_open_new ( source, E_CLIENT_SOURCE_TYPE_CONTACTS, FALSE, NULL, e_client_utils_authenticate_handler, NULL, (GAsyncReadyCallback) org_gnome_vcard_inline_client_loaded_cb, contact_list); } static void org_gnome_vcard_inline_toggle_cb (VCardInlinePObject *vcard_object, GtkButton *button) { EABContactDisplay *contact_display; EABContactDisplayMode mode; const gchar *label; contact_display = EAB_CONTACT_DISPLAY (vcard_object->contact_display); mode = eab_contact_display_get_mode (contact_display); /* Toggle between "full" and "compact" modes. */ if (mode == EAB_CONTACT_DISPLAY_RENDER_NORMAL) { mode = EAB_CONTACT_DISPLAY_RENDER_COMPACT; label = _("Show Full vCard"); } else { mode = EAB_CONTACT_DISPLAY_RENDER_NORMAL; label = _("Show Compact vCard"); } eab_contact_display_set_mode (contact_display, mode); gtk_button_set_label (button, label); } static gboolean org_gnome_vcard_inline_embed (EMFormatHTML *format, GtkHTMLEmbedded *embedded, EMFormatHTMLPObject *object) { VCardInlinePObject *vcard_object; GtkWidget *button_box; GtkWidget *container; GtkWidget *widget; EContact *contact; guint length; vcard_object = (VCardInlinePObject *) object; length = g_slist_length (vcard_object->contact_list); if (vcard_object->contact_list != NULL) contact = E_CONTACT (vcard_object->contact_list->data); else contact = NULL; container = GTK_WIDGET (embedded); widget = gtk_vbox_new (FALSE, 0); gtk_container_add (GTK_CONTAINER (container), widget); gtk_widget_show (widget); container = widget; widget = gtk_hbutton_box_new (); gtk_button_box_set_layout ( GTK_BUTTON_BOX (widget), GTK_BUTTONBOX_START); gtk_box_set_spacing (GTK_BOX (widget), 12); gtk_box_pack_start (GTK_BOX (container), widget, FALSE, TRUE, 0); gtk_widget_show (widget); button_box = widget; widget = eab_contact_display_new (); eab_contact_display_set_contact ( EAB_CONTACT_DISPLAY (widget), contact); eab_contact_display_set_mode ( EAB_CONTACT_DISPLAY (widget), EAB_CONTACT_DISPLAY_RENDER_COMPACT); gtk_box_pack_start (GTK_BOX (container), widget, TRUE, TRUE, 0); vcard_object->contact_display = g_object_ref (widget); gtk_widget_show (widget); widget = gtk_label_new (NULL); gtk_box_pack_start (GTK_BOX (container), widget, TRUE, TRUE, 0); vcard_object->message_label = g_object_ref (widget); if (length == 2) { const gchar *text; text = _("There is one other contact."); gtk_label_set_text (GTK_LABEL (widget), text); gtk_widget_show (widget); } else if (length > 2) { gchar *text; /* Translators: This will always be two or more. */ text = g_strdup_printf (ngettext ( "There is %d other contact.", "There are %d other contacts.", length - 1), length - 1); gtk_label_set_text (GTK_LABEL (widget), text); gtk_widget_show (widget); g_free (text); } else gtk_widget_hide (widget); container = button_box; widget = gtk_button_new_with_label (_("Show Full vCard")); gtk_box_pack_start (GTK_BOX (container), widget, FALSE, FALSE, 0); gtk_widget_show (widget); g_signal_connect_swapped ( widget, "clicked", G_CALLBACK (org_gnome_vcard_inline_toggle_cb), vcard_object); widget = gtk_button_new_with_label (_("Save in Address Book")); gtk_box_pack_start (GTK_BOX (container), widget, FALSE, FALSE, 0); /* This depends on having a source list. */ if (vcard_object->source_list != NULL) gtk_widget_show (widget); else gtk_widget_hide (widget); g_signal_connect_swapped ( widget, "clicked", G_CALLBACK (org_gnome_vcard_inline_save_cb), vcard_object); return TRUE; } void org_gnome_vcard_inline_format (gpointer ep, EMFormatHookTarget *target) { VCardInlinePObject *vcard_object; gchar *classid; gchar *content; classid = g_strdup_printf ( "org-gnome-vcard-inline-display-%d", org_gnome_vcard_inline_classid++); vcard_object = (VCardInlinePObject *) em_format_html_add_pobject ( EM_FORMAT_HTML (target->format), sizeof (VCardInlinePObject), classid, target->part, org_gnome_vcard_inline_embed); g_object_ref (target->part); vcard_object->object.free = org_gnome_vcard_inline_pobject_free; org_gnome_vcard_inline_decode (vcard_object, target->part); e_book_client_get_sources (&vcard_object->source_list, NULL); content = g_strdup_printf ("", classid); camel_stream_write_string (target->stream, content, NULL, NULL); g_free (content); g_free (classid); } class='insertions'>+155 * Use RUBY_MOD*.knu2002-10-072-8/+8 * cant be fetched for a long time, only evaluation-version availableijliao2002-09-177-221/+0 * texas chainsaw kde2 massacrealane2002-09-111-1/+0 * kde2 massacre.alane2002-09-105-72/+0 * Add USE_GNOMENGpat2002-09-081-1/+2 * USE_REINPLACE rather than a somewhat convoluted perl expression.hoek2002-09-061-2/+5 * The configure script was trying to modify CFLAGS to preventhoek2002-09-051-0/+20 * "libuu" -> "uulib"hoek2002-09-021-1/+1 * Update to xdeview 0.5.18.hoek2002-09-027-88/+22 * Updated uudeview version doesn't need to be patchedhoek2002-09-021-23/+0 * Update to uudeview 0.5.18.hoek2002-09-029-39/+37 * Upgrade to uulib 0.5.18. This adds support for yEnc.hoek2002-09-028-25/+23 * Use safe temp files. I'll try to cook-up a different version ofhoek2002-09-022-0/+45 * Update webpage URL. List yEnc as a supported encoding method (whichhoek2002-09-011-5/+3 * Better control filenames validity, ctype fixesache2002-08-293-16/+72 * Wrong version of patch was committed, fix it.ache2002-08-282-15/+16 * Add missing .pyo files to each pkg-plistperky2002-08-231-0/+1 * change my email address to leeym@FreeBSD.orgleeym2002-08-191-1/+1 * Minor port cleanupsskv2002-08-162-7/+11 * Add --without-libintl-prefix as a CONFIGURE_ARG so to eliminate amarcus2002-08-041-1/+3 * Chase shlib rev of devel/gettextade2002-08-021-1/+1 * Update to 0.213.tobez2002-07-282-2/+2 * Change master site to MASTER_SITE_LOCALperky2002-07-021-3/+2 * Update to 1.04pat2002-06-282-2/+2 * add p5-Unicode-IMAPUtf7 1.02ijliao2002-06-266-0/+44 * add p5-String-Multibyte 0.07ijliao2002-06-266-0/+46 * add p5-Unicode-MapUTF8 1.09ijliao2002-06-256-0/+46 * add p5-Unicode-Map 0.112ijliao2002-06-256-0/+157 * Updating my email address.perky2002-06-251-1/+1 * Update to 1.8, and retain shared lib version of 3.marcus2002-06-176-25/+30 * Add a few other distfile mirrors.marcus2002-06-161-2/+5 * Update to 0.10.4.tobez2002-06-133-2/+3 * Fix build on -current.petef2002-06-081-0/+13 * Unbreak on -current by catching up to *.mk changeskris2002-06-041-4/+6 * Update to 1.0.13pat2002-06-012-2/+2 * Speed up fetching.obrien2002-05-301-2/+2 * Update to 0.212.tobez2002-05-282-2/+2 * Update to 1.27.tobez2002-05-282-2/+2 * Update to 1.7.0.1.obrien2002-05-282-3/+3 * Correct the path to gperf.marcus2002-05-271-1/+1 * * Add support for Korean real-world localesmarcus2002-05-232-5/+33 * Fix PLIST and update to 0.17 while I'm here.sobomax2002-05-223-18/+4 * Update as a satellite port of `converters/mule-ucs'.okazaki2002-05-175-212/+5 * Stop installing a backup file created by `patch'.okazaki2002-05-172-6/+11 * Connect mule-ucs.okazaki2002-05-161-0/+1 * Update to support Emacs 21.okazaki2002-05-165-22/+53 * Allow libiconv to be built by a non-root user.marcus2002-05-152-0/+22 * Update to 0.5.knu2002-05-122-3/+2 * Fix invalid distfilesdwcjr2002-05-095-11/+63 * Give maintainershipdwcjr2002-05-081-2/+3 * Correct BUILD_DEPENDS on p5-Crypt-DES_EDE3kris2002-05-051-1/+1 * Use USE_LIBTOOL.sobomax2002-04-305-57/+28 * Actually add the new patches from the last commit....marcus2002-04-302-0/+139 * Fix a few problems in libiconv.marcus2002-04-302-6/+15 * use USE_PYDISTUTILSijliao2002-04-291-8/+1 * Put back ru.po, it was deleted by mistake.demon2002-04-292-1/+576 * As it was advertised more than a month ago complete giconv -> iconvsobomax2002-04-242-11/+1 * add fribidi 0.10.3ijliao2002-04-206-0/+64 * Say goodbye to Qt 1.x and all of its dependents. The one port I foundwill2002-04-1912-168/+0 * Use devel/gettext port;demon2002-04-173-587/+5 * gettext upgrade uber-patch (stage 3)ade2002-04-131-4/+8 * Remove iconv->giconv hack.sobomax2002-04-081-9/+0 * more clean pkg-plistnork2002-04-072-1/+5 * Replace characters illegal in the specified encoding of the Greeknaddy2002-04-031-0/+66 * Fixed port build error.hosokawa2002-03-291-0/+28 * Fix another few places where giconv used instead of iconv.sobomax2002-03-191-1/+1 * Change MAINTAINER to portsache2002-03-191-1/+1 * Add a patch to fix a bug where iconv() did not return -1 properly onknu2002-03-182-1/+56 * Bump PORTREVISION to reflect the (lib)iconv upgrade.knu2002-03-184-0/+4 * Iconv cleanup, stage 1b: correct {BUILD,LIB,RUN}_DEPENDS of all ports that needsobomax2002-03-184-4/+4 * Iconv cleanup, stage 1a: remove `g' prefix from binaries, headers, libraries andsobomax2002-03-1822-191/+308 * Upgrade to 0.15jesper2002-03-172-2/+2 * Stage 1 of gettext update.ade2002-03-161-1/+1 * Add extra dependency of ports/security/p5-Crypt-DES_EDE3jesper2002-03-151-0/+1 * Upgrade to 0.06jesper2002-03-142-2/+2 * Update to 0.8.3.sobomax2002-02-233-3/+3 * Delete a nonexistent port entry: "gb2jis".knu2002-02-141-1/+0 * Update maintainer email addresspat2002-01-291-1/+1 * Update to 1.25.tobez2002-01-232-2/+2 * - Add NOPORTDOCS support to pkg-plistpat2002-01-172-8/+7 * - Add NOPORTDOCS support (pkg-plist)pat2002-01-172-10/+8 * Remove tcs.kuriyama2002-01-081-1/+0 * Bell-labs is not distributing Plan-9 (and tcs) from anonymous ftp as did before.kuriyama2002-01-085-43/+0 * Remove converter/gb2jis,which is in chinese/ now, by MAINTAINER's request.clive2002-01-086-46/+0 * Update to version 1.0kevlo2001-12-226-8/+34 * Backout previous change - it seems that new revision of the patch doesn'tsobomax2001-12-201-17/+8 * Don't filter libc_r on 5-CURRENT.sobomax2001-12-201-8/+17