aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@helixcode.com>2000-12-01 08:39:11 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-12-01 08:39:11 +0800
commitb715bf7b833335b8df6ce0f3783d15eec09106b1 (patch)
treebe9a4792d3ec2edcb9b677aa6c7819d5d6e44253
parentc1d2ec0123694a3b52e9c58de97c60994f5db587 (diff)
downloadgsoc2013-evolution-b715bf7b833335b8df6ce0f3783d15eec09106b1.tar.gz
gsoc2013-evolution-b715bf7b833335b8df6ce0f3783d15eec09106b1.tar.zst
gsoc2013-evolution-b715bf7b833335b8df6ce0f3783d15eec09106b1.zip
Use camel_message_info_free() instead of freeing everything by hand - is
2000-11-30 Jeffrey Stedfast <fejj@helixcode.com> * filter-driver.c (filter_driver_filter_message): Use camel_message_info_free() instead of freeing everything by hand - is this a new function? I don't ever recall seeing this before. Also use my new function, camel_message_info_new_from_header - ahhh... this code is now so beatiful. Okay, I'm done. svn path=/trunk/; revision=6750
-rw-r--r--filter/ChangeLog9
-rw-r--r--filter/filter-driver.c35
2 files changed, 12 insertions, 32 deletions
diff --git a/filter/ChangeLog b/filter/ChangeLog
index 63071ff250..3429264415 100644
--- a/filter/ChangeLog
+++ b/filter/ChangeLog
@@ -1,5 +1,14 @@
2000-11-30 Jeffrey Stedfast <fejj@helixcode.com>
+ * filter-driver.c (filter_driver_filter_message): Use
+ camel_message_info_free() instead of freeing everything by hand -
+ is this a new function? I don't ever recall seeing this
+ before. Also use my new function,
+ camel_message_info_new_from_header - ahhh... this code is now so
+ beatiful. Okay, I'm done.
+
+2000-11-30 Jeffrey Stedfast <fejj@helixcode.com>
+
* filter-driver.c (filter_driver_filter_message): Update to use
EStrv in appropriate places (wrapped with #ifdef DOESTRV for the
moment).
diff --git a/filter/filter-driver.c b/filter/filter-driver.c
index 1b8038062a..bfb437bb38 100644
--- a/filter/filter-driver.c
+++ b/filter/filter-driver.c
@@ -738,27 +738,9 @@ filter_driver_filter_message (FilterDriver *driver, CamelMimeMessage *message, C
if (info == NULL) {
struct _header_raw *h = CAMEL_MIME_PART (message)->headers;
- char *subject, *from, *to, *cc;
- info = g_new0 (CamelMessageInfo, 1);
+ info = camel_message_info_new_from_header (h);
freeinfo = TRUE;
-
- /* FIXME: do we even *need* to set these? Are they even used? -- fejj */
- subject = camel_folder_summary_format_string (h, "subject");
- from = camel_folder_summary_format_address (h, "from");
- to = camel_folder_summary_format_address (h, "to");
- cc = camel_folder_summary_format_address (h, "cc");
-#ifdef DOESTRV
- camel_message_info_set_subject (info, subject);
- camel_message_info_set_from (info, from);
- camel_message_info_set_to (info, to);
- camel_message_info_set_cc (info, cc);
-#else
- info->subject = subject;
- info->from = from;
- info->to = to;
- info->cc = cc;
-#endif /* DOESTRV */
} else {
if (info->flags & CAMEL_MESSAGE_DELETED)
return;
@@ -822,19 +804,8 @@ filter_driver_filter_message (FilterDriver *driver, CamelMimeMessage *message, C
if (p->deleted)
info->flags = info->flags | CAMEL_MESSAGE_DELETED;
- if (freeinfo) {
- camel_flag_list_free (&info->user_flags);
- camel_tag_list_free (&info->user_tags);
-#ifdef DOESTRV
- e_strv_destroy (info->strings);
-#else
- g_free (info->subject);
- g_free (info->from);
- g_free (info->to);
- g_free (info->cc);
-#endif /* DOESTRV */
- g_free (info);
- }
+ if (freeinfo)
+ camel_message_info_free (info);
if (filtered)
filter_driver_log (driver, FILTER_LOG_END, NULL);
an class='column1'>| 2004-04-06 Jeffrey Stedfast <fejj@ximian.com> * providers/imap4/camel-imap4-folder.c: Added mutex locking where appropriate. svn path=/trunk/; revision=25348 * Added Icelandic translation by Helgi Þormar ÞorbjörnssonSamúel Jón Gunnarsson2004-04-074-1/+17728 | | | | | | | | | 2004-04-07 Samúel Jón Gunnarsson <sammi@techattack.nu> * is.po: Added Icelandic translation by Helgi Þormar Þorbjörnsson <helgi@trance.is> svn path=/trunk/; revision=25347 * Added mutex locking where appropriate.Jeffrey Stedfast2004-04-072-11/+57 | | | | | | | | | 2004-04-06 Jeffrey Stedfast <fejj@ximian.com> * providers/imap4/camel-imap4-store.c: Added mutex locking where appropriate. svn path=/trunk/; revision=25346 * Defined.Jeffrey Stedfast2004-04-078-8/+26 | | | | | | | | | | | | | | | | 2004-04-06 Jeffrey Stedfast <fejj@ximian.com> * camel-folder-summary.h (CAMEL_FOLDER_SUMMARY_TYPE): Defined. * camel-object.h (CAMEL_OBJECT_TYPE): Fixed. * providers/imap4/camel-imap4-folder.c (camel_imap4_folder_utf7_name): Implemented. * providers/imap4/camel-imap4-store.c (imap4_build_folder_info): Use camel_folder_info_build() to build the folder-info tree. svn path=/trunk/; revision=25345 * Changed to save the settings in the signal callbacks.Jeffrey Stedfast2004-04-075-705/+483 | | | | | | | | | | | | | | | 2004-04-06 Jeffrey Stedfast <fejj@ximian.com> * em-mailer-prefs.c (em_mailer_prefs_construct): Changed to save the settings in the signal callbacks. (em_mailer_prefs_apply): Don't save the settings here. * em-composer-prefs.c (em_composer_prefs_apply): Don't save the settings here. (em_composer_prefs_construct): Changed to save the settings in the signal callbacks. svn path=/trunk/; revision=25344 * ops, saved it this timeRadek Doulik2004-04-071-3/+3 | | | | svn path=/trunk/; revision=25341 * (set_editor_text): added pad_signature parameter to tell if weRadek Doulik2004-04-072-6/+10 | | | | | | | want to pad signature with <BR> (used when creating new mail, in other cases we don't want to pad the signature) svn path=/trunk/; revision=25340 * added empty hbox so that we have 12pxs between account setting andRadek Doulik2004-04-072-1/+11 | | | | | | | | | | | 2004-04-06 Radek Doulik <rodo@ximian.com> * e-msg-composer.c (prepare_signatures_menu): added empty hbox so that we have 12pxs between account setting and signature setting Fixes #42866 svn path=/trunk/; revision=25339 * svn path=/trunk/; revision=25338Fixed any wrong translations. T.Aihana2004-04-061-14/+14 | | | | | | 2004-04-07 Fixed any wrong translations. T.Aihana <aihana@gnome.gr.jp> svn path=/trunk/; revision=25338 * svn path=/trunk/; revision=25337Updated ja.po. T.Aihana2004-04-062-673/+396 | | | | | | 2004-04-06 Updated ja.po. T.Aihana <aihana@gnome.gr.jp> svn path=/trunk/; revision=25337 * old name, new trimmed down implementation. This will be replacingChris Toshok2004-04-063-0/+1401 | | | | | | | | | 2004-04-06 Chris Toshok <toshok@ximian.com> * util/e-destination.[ch]: old name, new trimmed down implementation. This will be replacing eab-destination.[ch]. svn path=/trunk/; revision=25336 * revert unapproved patchChris Toshok2004-04-062-28/+1 | | | | svn path=/trunk/; revision=25335 * #if 0 out the sys/debugreg stuff.Not Zed2004-04-062-1/+3 | | | | | | | | 2004-04-06 Not Zed <NotZed@Ximian.com> * camel-debug.c: #if 0 out the sys/debugreg stuff. svn path=/trunk/; revision=25334 * ** See bug #56110.Not Zed2004-04-063-12/+69 | | | | | | | | | | | | | | | | | | | | | 2004-04-06 Not Zed <NotZed@Ximian.com> ** See bug #56110. * providers/imap/camel-imap-folder.c (get_content): more debug! (get_content): if we have no content-type header set on a sub-part of a multipart/digest, then we need to set it to message/rfc822 as in the multipart/digest rfc (2046 or so?). * camel-folder.c (camel_folder_get_message): output this stuff as folder debug. * providers/imap/camel-imap-folder.c (imap_get_message): add some imap:folder debug. (get_content): get xx.TEXT rather than xx if we're from a message parent part. svn path=/trunk/; revision=25333 * : implement keyboard navigation(TAB/shift+TAB) (activaite_editor) : add aHao Sheng2004-04-063-25/+126 | | | | | | | | | | | | | | | | | | 2004-04-06 Hao Sheng <hao.sheng@sun.com> * gui/widgets/e-minicard.c : (e_minicard_event) : implement keyboard navigation(TAB/shift+TAB) (activaite_editor) : add a new function to activiate contact editor for support "Enter" key * gui/widgets/e-minicard-view-widget.c : (e_minicard_view_widget_class_init) : set the default focus at initialization (e_minicard_view_widget_real_focus_in_event) : set the first item be focused as default Fixes #55056 svn path=/trunk/; revision=25332 * ** See bug #56464.Not Zed2004-04-065-16/+59 | | | | | | | | | | | | | | | | | | | | | | | | | 2004-04-06 Not Zed <NotZed@Ximian.com> ** See bug #56464. * camel-folder.c (camel_folder_transfer_messages_to): do not lock the source here. (transfer_message_to): call the main entry point for get message and append message. ** See bug #56050. * camel-vee-store.c (vee_delete_folder): delete the state file if it exists. * camel-object.c (camel_object_state_write): create the parent dir if we need to. Also spit a warning if we fail in the end. * camel-vee-folder.c (camel_vee_folder_new): set the persistent state file location. (vee_sync): write the state file when we sync. svn path=/trunk/; revision=25331 * ref the emfoldertree in our thread message. (em_folder_tree_set_selected):Not Zed2004-04-064-2/+18 | | | | | | | | | | | | | | | | | 2004-04-06 Not Zed <NotZed@Ximian.com> * em-folder-tree.c (emft_tree_row_expanded): ref the emfoldertree in our thread message. (em_folder_tree_set_selected): same. (emft_get_folder_info__free): unref it. * mail-folder-cache.c (ping_store): use thread_queued_slow not thread_queued - we dont care when it runs. * em-folder-view.c (emfv_set_folder_uri): use thread_new for getting the folder, we do elsewhere, and it aids interactivity. svn path=/trunk/; revision=25330 * moved goto stuff to the view menu.Not Zed2004-04-062-13/+17 | | | | | | | | 2004-04-06 Not Zed <NotZed@Ximian.com> * evolution-mail-message.xml: moved goto stuff to the view menu. svn path=/trunk/; revision=25329 * wrap this with the correct #ifdef.Chris Toshok2004-04-062-2/+6 | | | | | | | | 2004-04-05 Chris Toshok <toshok@ximian.com> * util/eab-destination.h: wrap this with the correct #ifdef. svn path=/trunk/; revision=25328 * use the correct glade filename.Chris Toshok2004-04-062-1/+6 | | | | | | | | | 2004-04-05 Chris Toshok <toshok@ximian.com> * gui/merging/eab-contact-merging.c (match_query_callback): use the correct glade filename. svn path=/trunk/; revision=25327 * don't issue the display view signal a second time, connect_view does thisJP Rosevear2004-04-061-1/+0 | | | | | | | | | | 2004-04-05 JP Rosevear <jpr@ximian.com> * gal-view-instance.c (gal_view_instance_set_current_view_id): don't issue the display view signal a second time, connect_view does this for us svn path=/trunk/; revision=25324 * Updated Basque translation.Iñaki Larrañaga2004-04-061-0/+1 | | | | | | | | 2004-04-05: Iñaki Larrañaga <dooteo@euskalgnu.org> * eu.po: Updated Basque translation. svn path=/trunk/; revision=25323 * Updated Basque translation.Iñaki Larrañaga2004-04-062-5566/+2740 | | | | | | | | 2004-04-05 Iñaki Larrañaga <dooteo@euskalgnu.org> * eu.po: Updated Basque translation. svn path=/trunk/; revision=25322 * only select one dayJP Rosevear2004-04-062-2/+6 | | | | | | | | 2004-04-05 JP Rosevear <jpr@ximian.com> * gui/e-week-view.c (time_range_changed_cb): only select one day svn path=/trunk/; revision=25321 * fixedJeffrey Stedfast2004-04-061-4/+4 | | | | svn path=/trunk/; revision=25320 * Fixed to not ignore signatures without uids (e.g. signatures that wereJeffrey Stedfast2004-04-062-18/+25 | | | | | | | | | | 2004-04-05 Jeffrey Stedfast <fejj@ximian.com> * e-signature-list.c (gconf_signatures_changed): Fixed to not ignore signatures without uids (e.g. signatures that were from prior versions). svn path=/trunk/; revision=25319 * Migrate the thread_list setting. Fixes bug #56297.Jeffrey Stedfast2004-04-062-51/+111 | | | | | | | | | 2004-04-05 Jeffrey Stedfast <fejj@ximian.com> * em-migrate.c (em_migrate_dir): Migrate the thread_list setting. Fixes bug #56297. svn path=/trunk/; revision=25318 * Update Czech translationMiloslav Trmac2004-04-052-919/+959 | | | | svn path=/trunk/; revision=25317 * removed commented code.Rodrigo Moya2004-04-052-34/+2 | | | | | | | | 2004-04-05 Rodrigo Moya <rodrigo@ximian.com> * gui/alarm-notify/alarm-queue.c: removed commented code. svn path=/trunk/; revision=25316 * removed useless call to set the POA after construction.Rodrigo Moya2004-04-052-1/+5 | | | | | | | | | 2004-04-05 Rodrigo Moya <rodrigo@ximian.com> * gui/alarm-notify/notify-main.c (main): removed useless call to set the POA after construction. svn path=/trunk/; revision=25315 * Fixes #56316Rodrigo Moya2004-04-057-1/+153 | | | | | | | | | | | | | | | | | | | | | | | | | 2004-04-05 Rodrigo Moya <rodrigo@ximian.com> Fixes #56316 * gui/dialogs/comp-editor-page.[ch]: added "fill_timezones" virtual method to CompEditorPage class. (comp_editor_page_fill_timezones): new function. (comp_editor_page_class_init): initialize new virtual method. * gui/dialogs/event-page.c (event_page_fill_timezones, event_page_class_init): * gui/dialogs/task-page.c (task_page_fill_timezones, task_page_class_init): * gui/dialogs/task-details-page.c (task_details_page_fill_timezones, task_details_page_class_init): implemented new virtual method for pages dealing with timezones. * gui/dialogs/comp-editor.c (save_comp): call the "fill_timezones" method on all pages, and call... (send_timezone): ...this function for each hash table item. svn path=/trunk/; revision=25314 * if we have no sign status, use signed-nokey, rather than no icon.Not Zed2004-04-052-3/+37 | | | | | | | | | | | | | | | | | | 2004-04-05 Not Zed <NotZed@Ximian.com> * em-format-html-display.c (efhd_xpkcs7mime_button): if we have no sign status, use signed-nokey, rather than no icon. (efhd_xpkcs7mime_viewcert_clicked): show the certificate viewer since certificate_viewer_show doesn't show it. (efhd_xpkcs7mime_viewcert_foad): foad foad foad. The api changed and we need to foad it ourselves. ** See bug #52822. * em-format-html-display.c (efhd_xpkcs7mime_add_cert_table): if we can't find the cert, then desensitise the cert button. svn path=/trunk/; revision=25313 * ** See bug # 56402.Not Zed2004-04-053-4/+12 | | | | | | | | | | | | | | 2004-04-05 Not Zed <NotZed@Ximian.com> ** See bug # 56402. * mail-folder-cache.c (update_folders): if we're cancelled, noop. (mail_note_store_remove): mark the update data cancelled. * mail-ops.c (get_folderinfo_got): Removed the meaningless comment here. svn path=/trunk/; revision=25312 * removed, this is done in camel now. (fix_unmatched_info): renamed fromNot Zed2004-04-052-68/+9 | | | | | | | | | | 2004-04-05 Not Zed <NotZed@Ximian.com> * mail-ops.c (add_special_info): removed, this is done in camel now. (fix_unmatched_info): renamed from add_unmatched_info. svn path=/trunk/; revision=25311 * dont add folders to folders_out here, only in get_folders_add_folders.Not Zed2004-04-053-13/+21 | | | | | | | | | | | | | | | | | | 2004-04-05 Not Zed <NotZed@Ximian.com> * providers/imap/camel-imap-store.c (get_folders): dont add folders to folders_out here, only in get_folders_add_folders. * camel-store.c (camel_folder_info_build): simplify 'list append' since we have next pointer at the head of the struct. * providers/imap/camel-imap-store.c (create_folder): fixed "containes" spelling count. (get_folder_online): " (get_folders_add_folders): duh, add the folder info to the folders_out array. svn path=/trunk/; revision=25310 * Translation updated by Daniel van Eeden.Vincent van Adrighem2004-04-042-1023/+1052 | | | | | | | | 2004-04-04 Vincent van Adrighem <adrighem@gnome.org> * nl.po: Translation updated by Daniel van Eeden. svn path=/trunk/; revision=25309 * Revert my "fix" from yesterday. We can't necessarily show progressJeffrey Stedfast2004-04-032-2/+5 | | | | | | | | | | 2004-04-02 Jeffrey Stedfast <fejj@ximian.com> * em-migrate.c (cp_r): Revert my "fix" from yesterday. We can't necessarily show progress (progress window may have been destroyed already). svn path=/trunk/; revision=25307 * Fixes bug #53851Jeffrey Stedfast2004-04-033-8/+26 | | | | | | | | | | | | | | | | 2004-04-02 Jeffrey Stedfast <fejj@ximian.com> Fixes bug #53851 * em-folder-view.c (emfv_popup_move_cb): Save the uri as the default for copy/move. (emfv_popup_move): Use the default copy/move uri. (emfv_popup_copy): Same. * em-folder-selection.c (em_select_folder): Select the uri *after* the dialog gets shown. svn path=/trunk/; revision=25306 * Fixes bug #37416Jeffrey Stedfast2004-04-033-5/+32 | | | | | | | | | | | | | | | | 2004-04-02 Jeffrey Stedfast <fejj@ximian.com> Fixes bug #37416 * mail-folder-cache.c (update_1folder): Same as below. Also add vJunk fodlers to the list of folders that we display the total count for (as discussed on the mailing lists). * em-folder-tree-model.c (em_folder_tree_model_set_folder_info): Use 'total - deleted' as the count for Outbox rather than just the total count. svn path=/trunk/; revision=25305 * New function to get the deleted message count (used for Outbox count whichJeffrey Stedfast2004-04-033-5/+53 | | | | | | | | | | 2004-04-02 Jeffrey Stedfast <fejj@ximian.com> * camel-folder.c (camel_folder_get_deleted_message_count): New function to get the deleted message count (used for Outbox count which is total minus deleted). svn path=/trunk/; revision=25304 * Revert Radek's last change to fix bug #56381.Jeffrey Stedfast2004-04-032-1/+7 | | | | | | | | | 2004-04-02 Jeffrey Stedfast <fejj@ximian.com> * e-msg-composer.c (set_editor_text): Revert Radek's last change to fix bug #56381. svn path=/trunk/; revision=25303 * bump version, requirementsJP Rosevear2004-04-0350-92700/+108250 | | | | | | | | 2004-04-02 JP Rosevear <jpr@ximian.com> * configure.in: bump version, requirements svn path=/trunk/; revision=25301 * Make the button initially insensitive. Connect to the entry's "changed"Dan Winship2004-04-032-6/+30 | | | | | | | | | | | * e-url-entry.c (init): Make the button initially insensitive. Connect to the entry's "changed" signal. (entry_changed_cb): sensitize the button iff the entry is non-empty (button_clicked_cb): simplify a bit by using gtk_entry_get_text rather than gtk_editable_get_chars. svn path=/trunk/; revision=25300 * Always set a format prop so that 1.4 and older 1.5 versions won't strcmp()Jeffrey Stedfast2004-04-022-0/+8 | | | | | | | | | 2004-04-02 Jeffrey Stedfast <fejj@ximian.com> * e-signature.c (e_signature_to_xml): Always set a format prop so that 1.4 and older 1.5 versions won't strcmp() on a NULL value. svn path=/trunk/; revision=25299 * turn this on, this should always be on, it points to real bugs in theNot Zed2004-04-023-7/+33 | | | | | | | | | | | | | 2004-04-02 Not Zed <NotZed@Ximian.com> * camel-exception.c (w): turn this on, this should always be on, it points to real bugs in the code. * camel-folder-summary.c (summary_build_content_info): dont set attachments if its a signature block. (summary_build_content_info_message): same. svn path=/trunk/; revision=25298 * do a per-line validation of the uuencoded stuff, based on the length byte.Not Zed2004-04-022-0/+20 | | | | | | | | | 2004-04-02 Not Zed <NotZed@Ximian.com> * em-inline-filter.c: do a per-line validation of the uuencoded stuff, based on the length byte. svn path=/trunk/; revision=25297 * ** See bug #56338.Not Zed2004-04-022-6/+15 | | | | | | | | | | | | | 2004-04-02 Not Zed <NotZed@Ximian.com> ** See bug #56338. * em-format-html.c (emfh_gethttp): fix the fugly "load http if" that doesn't work to be a fugly "load http if" that does work. (efh_format_timeout): dont set load_http_now here, its only an override now. svn path=/trunk/; revision=25296 * [ fixes bug #51897 ]Chris Toshok2004-04-021-11/+19 | | | | | | | | | | | | | | 2004-04-01 Chris Toshok <toshok@ximian.com> [ fixes bug #51897 ] * gal/e-text/e-text.c (insert_preedit_text): only reset the layout attrs if there is some preedit text to insert. also, try getting text->layout's attributes before creating a new list. this will keep us from overwriting existing attributes and wiping out the underlining for objects. svn path=/trunk/; revision=25294 * Create a new class for "Western European, New" to fix a translation issue.Jeffrey Stedfast2004-04-022-2/+9 | | | | | | | | | 2004-04-01 Jeffrey Stedfast <fejj@ximian.com> * e-charset-picker.c (e_charset_picker_new): Create a new class for "Western European, New" to fix a translation issue. svn path=/trunk/; revision=25293 * dumb fixJeffrey Stedfast2004-04-021-3/+2 | | | | svn path=/trunk/; revision=25292 * Fixed some breakage I introduced in the changes below.Jeffrey Stedfast2004-04-022-2/+12 | | | | | | | | | 2004-04-01 Jeffrey Stedfast <fejj@ximian.com> * e-msg-composer.c (get_signature_html): Fixed some breakage I introduced in the changes below. svn path=/trunk/; revision=25291 * Report progress. "Fixes" bug #56355.Jeffrey Stedfast2004-04-022-3/+7 | | | | | | | | 2004-04-01 Jeffrey Stedfast <fejj@ximian.com> * em-migrate.c (cp_r): Report progress. "Fixes" bug #56355. svn path=/trunk/; revision=25290 * simplify menu_item_set_label()Jeffrey Stedfast2004-04-022-20/+10 | | | | svn path=/trunk/; revision=25289 * Wrap annoying exeption warnings with w().Jeffrey Stedfast2004-04-022-6/+12 | | | | | | | | 2004-04-01 Jeffrey Stedfast <fejj@ximian.com> * camel-exception.c (w): Wrap annoying exeption warnings with w(). svn path=/trunk/; revision=25288 * Updated to use the new signature APIs. (signature_added): _()ify theJeffrey Stedfast2004-04-022-4/+27 | | | | | | | | | 2004-04-01 Jeffrey Stedfast <fejj@ximian.com> * e-msg-composer.c: Updated to use the new signature APIs. (signature_added): _()ify the "Autogenerated" signature name. svn path=/trunk/; revision=25287 * Set the updated sig->name on the menu item.Jeffrey Stedfast2004-04-022-3/+23 | | | | | | | | | 2004-04-01 Jeffrey Stedfast <fejj@ximian.com> * mail-account-gui.c (signature_changed): Set the updated sig->name on the menu item. svn path=/trunk/; revision=25286 * add/remove viewsJP Rosevear2004-04-029-9/+45 | | | | | | | | | | | | | | | | | | | | | | 2004-04-01 JP Rosevear <jpr@ximian.com> * tasks/galview.xml: add/remove views * tasks/With_Status.galview: add a status view * tasks/With_DueDate.galview: add a due date view * tasks/Makefile.am (tasksviewsdir): dist/install new views and don't to an obsolete one * calendar/galview.xml: list the new list view * calendar/List_View.galview: default view for Lists * calendar/Makefile.am (calendarviewsdir): dist and install the list view svn path=/trunk/; revision=25285 * Updated to use the new signature APIs.Jeffrey Stedfast2004-04-023-149/+176 | | | | | | | | 2004-04-01 Jeffrey Stedfast <fejj@ximian.com> * e-msg-composer.c: Updated to use the new signature APIs. svn path=/trunk/; revision=25284 * Reference signatures by their UID rather than by an integer id. AlsoJeffrey Stedfast2004-04-023-17/+16 | | | | | | | | | | 2004-04-01 Jeffrey Stedfast <fejj@ximian.com> * e-account.c: Reference signatures by their UID rather than by an integer id. Also removed the need to have 2 signature settings (no need for the "auto" signature boolean anymore). svn path=/trunk/; revision=25283 * Updated for signature API changes.Jeffrey Stedfast2004-04-0212-699/+443