aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Camp <dave@ximian.com>2001-06-21 02:29:03 +0800
committerDave Camp <campd@src.gnome.org>2001-06-21 02:29:03 +0800
commit90aba2dbfde59bd7b48d127a463e545a05301e76 (patch)
treea433fb2fef7cf0c21b11c03c64e586d5ccfc8637
parent51ba0332fcb3b2d82c37d3dda73267e4d0769a30 (diff)
downloadgsoc2013-evolution-90aba2dbfde59bd7b48d127a463e545a05301e76.tar
gsoc2013-evolution-90aba2dbfde59bd7b48d127a463e545a05301e76.tar.gz
gsoc2013-evolution-90aba2dbfde59bd7b48d127a463e545a05301e76.tar.bz2
gsoc2013-evolution-90aba2dbfde59bd7b48d127a463e545a05301e76.tar.lz
gsoc2013-evolution-90aba2dbfde59bd7b48d127a463e545a05301e76.tar.xz
gsoc2013-evolution-90aba2dbfde59bd7b48d127a463e545a05301e76.tar.zst
gsoc2013-evolution-90aba2dbfde59bd7b48d127a463e545a05301e76.zip
Changed attachData to accept a sequence of chars rather than a string.
2001-06-20 Dave Camp <dave@ximian.com> * Evolution-Composer.idl: Changed attachData to accept a sequence of chars rather than a string. * evolution-composer.c (impl_Composer_attach_data): Changed the 'data' argument to a GNOME_Evolution_Composer_AttachmentData, and pass data->_buffer and data->_length to camel_mime_part_set_content(). 2001-06-20 Dave Camp <dave@ximian.com> * gui/itip-utils.c (itip_send_comp): Changed attach_data to be a GNOME_Evolution_Composer_AttachmentData rather than a CORBA_char*. 2001-06-20 Dave Camp <dave@ximian.com> * backend/ebook/e-card.c (e_card_list_send): Changed attach_data to be a GNOME_Evolution_Composer_AttachmentData rather than a CORBA_char*. svn path=/trunk/; revision=10343
-rw-r--r--addressbook/ChangeLog6
-rw-r--r--addressbook/backend/ebook/e-card.c10
-rw-r--r--calendar/ChangeLog7
-rw-r--r--calendar/gui/itip-utils.c8
-rw-r--r--composer/ChangeLog9
-rw-r--r--composer/Evolution-Composer.idl4
-rw-r--r--composer/evolution-composer.c4
7 files changed, 40 insertions, 8 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 17118de011..37c8c7fdd8 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,9 @@
+2001-06-20 Dave Camp <dave@ximian.com>
+
+ * backend/ebook/e-card.c (e_card_list_send): Changed attach_data
+ to be a GNOME_Evolution_Composer_AttachmentData rather than a
+ CORBA_char*.
+
2001-06-19 Chris Toshok <toshok@ximian.com>
* gui/widgets/e-addressbook-view.c (table_double_click): track
diff --git a/addressbook/backend/ebook/e-card.c b/addressbook/backend/ebook/e-card.c
index 50dc348059..211c22b33c 100644
--- a/addressbook/backend/ebook/e-card.c
+++ b/addressbook/backend/ebook/e-card.c
@@ -3744,10 +3744,11 @@ e_card_list_send (GList *cards, ECardDisposition disposition)
}
if (disposition == E_CARD_DISPOSITION_AS_ATTACHMENT) {
- CORBA_char *content_type, *filename, *description, *attach_data;
+ CORBA_char *content_type, *filename, *description;
+ GNOME_Evolution_Composer_AttachmentData *attach_data;
CORBA_boolean show_inline;
char *tempstr;
-
+
content_type = CORBA_string_dup ("text/x-vcard");
filename = CORBA_string_dup ("");
@@ -3768,7 +3769,10 @@ e_card_list_send (GList *cards, ECardDisposition disposition)
show_inline = FALSE;
tempstr = e_card_list_get_vcard (cards);
- attach_data = CORBA_string_dup (tempstr);
+ attach_data = GNOME_Evolution_Composer_AttachmentData__alloc();
+ attach_data->_maximum = attach_data->_length = strlen (tempstr);
+ attach_data->_buffer = CORBA_sequence_CORBA_char_allocbuf (attach_data->_length);
+ strcpy (attach_data->_buffer, tempstr);
g_free (tempstr);
GNOME_Evolution_Composer_attachData (composer_server,
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 4eacedf2b2..ded9f6d2d7 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,9 @@
+2001-06-20 Dave Camp <dave@ximian.com>
+
+ * gui/itip-utils.c (itip_send_comp): Changed attach_data
+ to be a GNOME_Evolution_Composer_AttachmentData rather than a
+ CORBA_char*.
+
2001-06-20 JP Rosevear <jpr@ximian.com>
* gui/dialogs/comp-editor.c (print_cmd): print menu command
@@ -22,6 +28,7 @@
* gui/dialogs/send-comp.c (send_component_dialog): remove useless
assignment
+>>>>>>> 1.910
2001-06-20 Rodrigo Moya <rodrigo@ximian.com>
* idl/evolution-calendar.idl: added getFreeBusy method
diff --git a/calendar/gui/itip-utils.c b/calendar/gui/itip-utils.c
index 797d375821..b407f38693 100644
--- a/calendar/gui/itip-utils.c
+++ b/calendar/gui/itip-utils.c
@@ -114,7 +114,8 @@ itip_send_comp (CalComponentItipMethod method, CalComponent *comp)
gint len;
CalComponentText caltext;
CalComponentOrganizer organizer;
- CORBA_char *content_type, *filename, *description, *attach_data;
+ CORBA_char *content_type, *filename, *description;
+ GNOME_Evolution_Composer_AttachmentData *attach_data;
CORBA_boolean show_inline;
CORBA_char tempstr[200];
@@ -232,7 +233,10 @@ itip_send_comp (CalComponentItipMethod method, CalComponent *comp)
icalcomponent_add_component (icomp, clone);
ical_string = icalcomponent_as_ical_string (icomp);
- attach_data = CORBA_string_dup (ical_string);
+ attach_data = GNOME_Evolution_Composer_AttachmentData__alloc ();
+ attach_data->_maximum = attach_data->_length = strlen (ical_string);
+ attach_data->_buffer = CORBA_sequence_CORBA_char_allocbuf (attach_data->_length);
+ strcpy (attach_data->_buffer, ical_string);
icalcomponent_free (icomp);
}
diff --git a/composer/ChangeLog b/composer/ChangeLog
index c3ee1af30c..d51f1e14b2 100644
--- a/composer/ChangeLog
+++ b/composer/ChangeLog
@@ -1,3 +1,12 @@
+2001-06-20 Dave Camp <dave@ximian.com>
+
+ * Evolution-Composer.idl: Changed attachData to accept a sequence of
+ chars rather than a string.
+
+ * evolution-composer.c (impl_Composer_attach_data): Changed the 'data'
+ argument to a GNOME_Evolution_Composer_AttachmentData, and pass
+ data->_buffer and data->_length to camel_mime_part_set_content().
+
2001-06-19 JP Rosevear <jpr@ximian.com>
* evolution-composer.c (impl_Composer_send): send the message
diff --git a/composer/Evolution-Composer.idl b/composer/Evolution-Composer.idl
index 3e18c5b5e3..067ad2fa23 100644
--- a/composer/Evolution-Composer.idl
+++ b/composer/Evolution-Composer.idl
@@ -20,6 +20,8 @@ module Evolution {
};
typedef sequence<Recipient> RecipientList;
+ typedef sequence<char> AttachmentData;
+
/**
* setHeaders:
* @to: the "To" recipients
@@ -81,7 +83,7 @@ module Evolution {
in string filename,
in string description,
in boolean show_inline,
- in string data);
+ in AttachmentData data);
/**
* show:
diff --git a/composer/evolution-composer.c b/composer/evolution-composer.c
index ad4efd6b7d..ce251f2f9e 100644
--- a/composer/evolution-composer.c
+++ b/composer/evolution-composer.c
@@ -158,7 +158,7 @@ impl_Composer_attach_data (PortableServer_Servant servant,
const CORBA_char *filename,
const CORBA_char *description,
const CORBA_boolean show_inline,
- const CORBA_char *data,
+ const GNOME_Evolution_Composer_AttachmentData *data,
CORBA_Environment *ev)
{
BonoboObject *bonobo_object;
@@ -169,7 +169,7 @@ impl_Composer_attach_data (PortableServer_Servant servant,
composer = EVOLUTION_COMPOSER (bonobo_object);
attachment = camel_mime_part_new ();
- camel_mime_part_set_content (attachment, data, strlen (data),
+ camel_mime_part_set_content (attachment, data->_buffer, data->_length,
content_type);
if (*filename)