diff options
author | Jon Trowbridge <trow@ximian.com> | 2001-05-18 15:10:04 +0800 |
---|---|---|
committer | Jon Trowbridge <trow@src.gnome.org> | 2001-05-18 15:10:04 +0800 |
commit | 3ca3f79dbe4641478582cd0b78a6e377c3430b19 (patch) | |
tree | 2693ebef04b05fff098f38f00233e676caf6229e /help/devel | |
parent | c8476fc1ff4887bde985382de708f248067ac7ba (diff) | |
download | gsoc2013-evolution-3ca3f79dbe4641478582cd0b78a6e377c3430b19.tar.gz gsoc2013-evolution-3ca3f79dbe4641478582cd0b78a6e377c3430b19.tar.zst gsoc2013-evolution-3ca3f79dbe4641478582cd0b78a6e377c3430b19.zip |
Return the serialized EDestinations (rather than just a string w/ e-mail
2001-05-18 Jon Trowbridge <trow@ximian.com>
* gui/component/select-names/e-select-names-bonobo.c
(entry_get_property_fn): Return the serialized EDestinations
(rather than just a string w/ e-mail addresses) through the bonobo
component's property bag.
* gui/component/select-names/e-select-names-model.c
(e_select_names_model_export_destinationv): Added. A convenience routine
for serializing the model's EDestinations into a string.
* gui/component/select-names/e-select-names-popup.c
(add_html_mail): Added. Puts in a check menu item for whether or
not the recipient wants HTML mail.
(popup_menu_card): Add menu item for HTML mail. Enable edit
contact info item.
(popup_menu_nocard): Add menu item for HTML mail. Enable edit
contact info item.
* backend/ebook/e-book-util.c (e_book_use_local_address_book):
Added. Fetches the local addressbook and caches it on the first
call. This is meant to be an easy and efficient way to get at the
local addressbook with the minimum of code.
(e_book_query_address_locally): Added. Convenience code that
does an e-mail only e_book_name_and_email_query against the
local address book.
* backend/ebook/e-destination.c
(e_destination_set_html_mail_pref): Added. Allows the intended
recipient's HTML mail preference to be manipulated.
(e_destination_get_email_verbose): Added. Cleaned up to use
e_destination_get_name.
(e_destination_get_html_mail_pref): Added. Read the recipient's HTML mail
preference. If the destination is linked to a card, the
preference is taken from the card (unless it has been explicitly
overridden by a called to e_destination_set_html_mail_pref).
(e_destination_get_address_textv): Added. Form a unified address string
from a NULL-terminated vector of EDestinations.
(e_destination_export): Added. Serialize an EDestination to a string.
(e_destination_import): Added. Unserialize a string to build an
EDestination.
(e_destination_exportv): Added. Serialize a NULL-terminated vector of
EDestinations to a string.
(e_destination_importv): Added. Unserialize a string to build a
NULL-terminated vector of EDestinations.
* gui/component/select-names/e-select-names-completion.c:
Implemented local versions of g_strcasecmp and g_strncasecmp
(which should really be in glib, I think...) for utf8, and used
them to make this code utf8-safe.
2001-05-18 Jon Trowbridge <trow@ximian.com>
* Makefile.am (evolution_mail_LDADD): Added libebook.la (which is
now required by the composer.)
2001-05-18 Jon Trowbridge <trow@ximian.com>
* e-msg-composer-hdrs.c (set_recipients): Properly unserialize the
string returned by the "text" property of the bonobo control,
convert it into EDestinations, and use them to get the e-mail
addresses of our recipients.
22001-05-18 Jon Trowbridge <trow@ximian.com>
* Makefile.am (SUBDIRS): Changed build order. Now addressbook
gets built before mail.
svn path=/trunk/; revision=9878
Diffstat (limited to 'help/devel')
4 files changed, 52 insertions, 54 deletions
diff --git a/help/devel/calendar/cal-client/tmpl/cal-client.sgml b/help/devel/calendar/cal-client/tmpl/cal-client.sgml index 06195ca454..e29fd8811f 100644 --- a/help/devel/calendar/cal-client/tmpl/cal-client.sgml +++ b/help/devel/calendar/cal-client/tmpl/cal-client.sgml @@ -255,49 +255,3 @@ GTK+ object for communication with personal calendar server. @Returns: -<!-- ##### SIGNAL CalClient::cal-opened ##### --> -<para> - -</para> - -@calclient: the object which received the signal. -@arg1: - -<!-- ##### SIGNAL CalClient::obj-updated ##### --> - <para> - This signal is emitted when the calendar clients receives - notification of a calendar component's data being changed in the - personal calendar server. Graphical clients may want to get the - new version of the object and update their display, for example. - </para> - -@calclient: the object which received the signal. -@arg1: -<!-- # Unused Parameters # --> -@client: Calendar client which received the notification. -@uid: Unique identifier of the calendar component that changed in the - personal calendar server's storage. - -<!-- ##### SIGNAL CalClient::obj-removed ##### --> - <para> - This signal is emitted when the calendar client receives - notification for a calendar component being removed from the - storage in the personal calendar server. Graphical clients may - want to delete the corresponding object from their display, for - example. - </para> - -@calclient: the object which received the signal. -@arg1: -<!-- # Unused Parameters # --> -@client: Calendar client which received the notification. -@uid: Unique identifier of the calendar component that was removed - from the personal calendar server's storage. - -<!-- -Local variables: -mode: sgml -sgml-parent-document: ("../../../evolution-devel-guide.sgml" "book" "refsect2" "") -End: ---> - diff --git a/help/devel/calendar/cal-client/tmpl/evolution-cal-client-unused.sgml b/help/devel/calendar/cal-client/tmpl/evolution-cal-client-unused.sgml index f8f1f1408e..3d050e171b 100644 --- a/help/devel/calendar/cal-client/tmpl/evolution-cal-client-unused.sgml +++ b/help/devel/calendar/cal-client/tmpl/evolution-cal-client-unused.sgml @@ -16,6 +16,14 @@ @str_uri: @Returns: +<!-- ##### SIGNAL CalClient::cal-opened ##### --> +<para> + +</para> + +@calclient: the object which received the signal. +@arg1: + <!-- ##### FUNCTION cal_client_get_events_in_range ##### --> <para> @@ -49,6 +57,20 @@ @client: @Returns: +<!-- ##### SIGNAL CalClient::obj-updated ##### --> + <para> + This signal is emitted when the calendar clients receives + notification of a calendar component's data being changed in the + personal calendar server. Graphical clients may want to get the + new version of the object and update their display, for example. + </para> + +@calclient: the object which received the signal. +@arg1: +@client: Calendar client which received the notification. +@uid: Unique identifier of the calendar component that changed in the + personal calendar server's storage. + <!-- ##### FUNCTION cal_client_update_pilot_id ##### --> <para> @@ -82,3 +104,25 @@ @uid: @Returns: +<!-- ##### SIGNAL CalClient::obj-removed ##### --> + <para> + This signal is emitted when the calendar client receives + notification for a calendar component being removed from the + storage in the personal calendar server. Graphical clients may + want to delete the corresponding object from their display, for + example. + </para> + +@calclient: the object which received the signal. +@arg1: +@client: Calendar client which received the notification. +@uid: Unique identifier of the calendar component that was removed + from the personal calendar server's storage. + +<!-- +Local variables: +mode: sgml +sgml-parent-document: ("../../../evolution-devel-guide.sgml" "book" "refsect2" "") +End: +--> + diff --git a/help/devel/executive-summary/tmpl/evolution-services-unused.sgml b/help/devel/executive-summary/tmpl/evolution-services-unused.sgml index e69de29bb2..9f8096db6a 100644 --- a/help/devel/executive-summary/tmpl/evolution-services-unused.sgml +++ b/help/devel/executive-summary/tmpl/evolution-services-unused.sgml @@ -0,0 +1,8 @@ +<!-- ##### SIGNAL ExecutiveSummaryHtmlView::handle-uri ##### --> +<para> + +</para> + +@executivesummaryhtmlview: the object which received the signal. +@arg1: + diff --git a/help/devel/executive-summary/tmpl/executive-summary-html-view.sgml b/help/devel/executive-summary/tmpl/executive-summary-html-view.sgml index 6ff2709e15..2fb66a2035 100644 --- a/help/devel/executive-summary/tmpl/executive-summary-html-view.sgml +++ b/help/devel/executive-summary/tmpl/executive-summary-html-view.sgml @@ -73,11 +73,3 @@ This is the event that is emitted on the BonoboEventSource when the HTML is chan @Returns: -<!-- ##### SIGNAL ExecutiveSummaryHtmlView::handle-uri ##### --> -<para> - -</para> - -@executivesummaryhtmlview: the object which received the signal. -@arg1: - |