aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* ** Fixes part of bug #526152, plus some tangential code cleanup.Matthew Barnes2008-04-051-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2008-04-05 Matthew Barnes <mbarnes@redhat.com> ** Fixes part of bug #526152, plus some tangential code cleanup. * mail/Makefile.am: Remove all the IDL crud for GnomeSpell. * mail/em-composer-prefs.c: * mail/evolution-mail.schemas.in: * mail/mail-config.c: Define our own GConf keys for active spell checking languages and the underline color for misspelled words, instead of relying on GnomeSpell's GConf keys. The new keys are: /apps/evolution/mail/composer/spell_color (string) /apps/evolution/mail/composer/spell_languages (list of strings) * mail/em-composer-prefs.c: * mail/em-composer-prefs.h: Cleanup the logic a bit to improve readability. * mail/mail-config.c: Cleanup the GConf notification logic: - We don't need the notification IDs for GConf keys we're watching. - Minimize the repetition of GConf keys to reduce the risk of typos. - Reduce the number of notification callback functions. * mail/Spell.idl: Remove this file; we don't use GnomeSpell anymore. * composer/e-msg-composer.c: * composer/e-composer-private.h: Initialize a new composer's spell checking language menu via our new "spell_languages" GConf key. * tools/killev.c (main): No need to continue killing the GnomeSpell Bonobo server. svn path=/trunk/; revision=35322
* ** Merge the mbarnes-composer branchMatthew Barnes2008-04-031-0/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2008-04-02 Matthew Barnes <mbarnes@redhat.com> ** Merge the mbarnes-composer branch * configure.in: Bump libgtkhtml requirement to 3.19.1. Add gtkhtml-editor dependency for addressbook, calendar and mail. Remove print-message plugin; new composer implements this natively. * tools/Makefile.am: Remove CORBA rules for the old composer. * addressbook/gui/widgets/Makefile.am: Remove CORBA rules for the old composer. * addressbook/gui/widgets/eab-gui-util.c (eab_send_to_contact_and_email_num_list), (eab_send_contact_list_as_attachment): Adapt to new Bonobo-less composer widget. * calendar/gui/Makefile.am: Remove CORBA rules for the old composer. * calendar/gui/itip-utils.c (comp_from), (comp_to_list), (comp_subject), (comp_content_type), (comp_filename), (comp_description), (append_cal_attachments), (itip_send_comp), (reply_to_calendar_comp): Adapt to new Bonobo-less composer widget. * composer/Makefile.am: Remove CORBA rules for the old composer. * composer/e-msg-composer.c: * composer/e-msg-composer.h: EMsgComposer is now a subclass of GtkhtmlEditor. Extensive refactoring and cleanup, too much to list in detail. * composer/e-composer-header.c: * composer/e-composer-header.h: Add "sensitive" property along with get/set functions. * composer/e-composer-from-header.c: * composer/e-composer-from-header.h: Propagate "refreshed" signal from EAccountComboBox. Add function e_composer_from_header_get_account_list(). * composer/e-composer-private.c: * composer/e-composer-private.h: New files manage composer's private data. Allows other composer files to manipulate private data. * composer/e-msg-composer-hdrs.c: * composer/e-msg-composer-hdrs.h: Remove these files; replaced by EComposerHeaderTable widget. * composer/evolution-composer.c: * composer/evolution-composer.h: Remove these files; composer is now a subclass of GtkhtmlEditor. * composer/e-msg-composer-select-file.c: * composer/e-msg-composer-select-file.h: Remove these files; logic moved to e-msg-composer.c. * composer/listener.c: * composer/listener.h: Remove these files; event handlers moved to e-msg-composer.c. * composer/Composer.idl: * composer/Evolution-Composer.idl: Remove these files; composer is no longer a Bonobo object. * mail/em-composer-prefs (sig_edit_cb), (em_composer_prefs_new_signature): Adapt to new Bonobo-less signature editor. * mail/mail-signature-editor.c: * mail/mail-signature-editor.h: Rewrite the signature editor as a subclass of GtkhtmlEditor. Eliminates Bonobo from the equation. * mail/em-composer-utils.c (composer_get_message), (em_utils_composer_send_cb), (save_draft_done), (em_utils_composer_save_draft_cb), (create_new_composer), (em_utils_compose_new_message), (em_utils_compose_new_message_with_mailto), (em_utils_post_to_folder), (em_utils_post_to_url), (edit_message), (forward_attached), (forward_non_attached), (reply_get_composer), (composer_set_body), (em_utils_reply_to_message), (post_reply_to_message): Adapt to new Bonobo-less composer. * mail/mail-component-factory.c: Composer is no longer needs a Bonobo factory. * mail/mail-config.c: Fix style pattern for EMsgComposer widgets. * plugins/groupwise/mail-send-options.c (org_gnome_composer_send_options): Adapt to streamlined EMsgComposer API. * plugins/exchange-operations/Makefile.am: Add EVOLUTION_MAIL_CFLAGS and EVOLUTION_MAIL_LIBS. * plugins/exchange-operations/exchange-mail-send-options.c (append_to_header), (org_gnome_exchange_send_options): Adapt to streamlined EMsgComposer API. * plugins/mailing-list-actions/mailing-list-actions.c (emla_list_action_do): Adapt to streamlined EMsgComposer API. * po/POTFILES.in: Update file list for new composer. * ui/evolution-composer-entries.xml: Remove this file; obsoleted by new composer. * widgets/misc/Makefile.am: Add EVOLUTION_MAIL_LIBS. * widgets/misc/e-account-combo-box.c: * widgets/misc/e-account-combo-box.h: New function e_account_combo_box_get_account_list(). Emit a "refreshed" signal when the EAccountList changes. Add an internal reverse-lookup index. * widgets/misc/e-charset-picker.c (e_charser_add_radio_actions): New function adds radio actions to an action group. Will eventually replace e_charset_picker_bonobo_ui_populate(). * widgets/misc/e-signature-combo-box.c: * widgets/misc/e-signature-combo-box.h: New function e_signature_combo_box_get_signature_list(). ... separate issue ... * configure.in: Bump eds_minimum_version to 2.23.1 for CAMEL_FOLDER_JUNKED_NOT_DELETED symbol. svn path=/trunk/; revision=35313
* Version bump for 2.23.1.Matthew Barnes2008-04-021-0/+4
| | | | | | | | | 2008-04-01 Matthew Barnes <mbarnes@redhat.com> * configure.in: Version bump for 2.23.1. svn path=/trunk/; revision=35303
* ** Fix for bug #524310Dan Williams2008-03-251-0/+6
| | | | | | | | | | | 2008-03-25 Dan Williams <dcbw@redhat.com> ** Fix for bug #524310 * mail/mail-session.c: don't double-free server messages svn path=/trunk/; revision=35244
* Patch from Paul Bolle <pebolle@tiscali.nl>: Fix for bug #519421 (Also allow ↵Suman Manjunath2008-03-171-0/+6
| | | | | | <libytnef/ytnef.h> header while compiling the TNEF attachment decoder plugin) svn path=/trunk/; revision=35206
* ** Fix for bug #512543Milan Crha2008-03-131-0/+6
| | | | | | | | | | | | | | | | | | | | | 2008-03-13 Milan Crha <mcrha@redhat.com> ** Fix for bug #512543 * configure.in: * widgets/misc/e-calendar-item.c: * calendar/gui/e-day-view.c: * calendar/gui/e-week-view-event-item.c: * calendar/gui/e-calendar-view.c: * calendar/gui/e-calendar-view.h: * calendar/gui/e-week-view-main-item.c: * calendar/gui/e-day-view-time-item.c: * calendar/gui/e-day-view-top-item.c: * calendar/gui/e-day-view-main-item.c: Get rid of --enable-cairo-calendar/ENABLE_CAIRO define. svn path=/trunk/; revision=35182
* Evolution 2.22.0 release.EVOLUTION_2_22_0Srinivasa Ragavan2008-03-101-0/+4
| | | | | | | | | | 2008-03-10 Srinivasa Ragavan <sragavan@novell.com> * NEWS, configure.in: Evolution 2.22.0 release. svn path=/trunk/; revision=35162
* etc/gconf/gconf.xml.defaults/apps/evolution was missing.Tor Lillqvist2008-03-051-0/+5
| | | | | | | | | | 2008-03-05 Tor Lillqvist <tml@novell.com> * evolution-zip.in: etc/gconf/gconf.xml.defaults/apps/evolution was missing. svn path=/trunk/; revision=35137
* Add share/icons/hicolor.Tor Lillqvist2008-03-041-1/+2
| | | | | | | | | 2008-03-03 Tor Lillqvist <tml@novell.com> * evolution-zip.in: Add share/icons/hicolor. svn path=/trunk/; revision=35129
* Misc simplification and cleanup.Tor Lillqvist2008-03-031-0/+4
| | | | | | | | | 2008-03-03 Tor Lillqvist <tml@novell.com> * evolution-zip.in: Misc simplification and cleanup. svn path=/trunk/; revision=35113
* Add mail/default/ko/Makefile to AC_OUTPUT.Changwoo Ryu2008-03-031-0/+4
| | | | | | | | | | | | | | 2008-03-03 Changwoo Ryu <cwryu@debian.org> * configure.in: Add mail/default/ko/Makefile to AC_OUTPUT. 2008-03-03 Changwoo Ryu <cwryu@debian.org> * default/Makefile.am: * default/ko/*: Add Korean welcome message translation. svn path=/trunk/; revision=35107
* Updates for 2.21.92Srinivasa Ragavan2008-03-031-0/+4
| | | | svn path=/trunk/; revision=35105
* set HANDLE_LIBICAL_MEMORY to 1.Chenthill Palanisamy2008-02-251-0/+4
| | | | | | | | | 2008-02-25 Chenthill Palanisamy <pchenthill@novell.com> * configure.in: set HANDLE_LIBICAL_MEMORY to 1. svn path=/trunk/; revision=35085
* Use "pkill -x" to kill the process and use "$HOME" insteadJeff Cai2008-02-201-0/+7
| | | | | | | of "~". Fix for bug #516648 svn path=/trunk/; revision=35060
* Bump eds_minimum_version to 2.21.92 for camel_application_is_exiting.Matthew Barnes2008-02-191-0/+5
| | | | | | | | | | 2008-02-18 Matthew Barnes <mbarnes@redhat.com> * configure.in: Bump eds_minimum_version to 2.21.92 for camel_application_is_exiting. svn path=/trunk/; revision=35049
* Patch from Akhil Laddha <lakhil@novell.com>: Fix for bug #517129 (Fixed ↵Suman Manjunath2008-02-181-0/+6
| | | | | | build break due to updated Polish translation) svn path=/trunk/; revision=35042
* Evolution 2.21.92 version bump.Srinivasa Ragavan2008-02-131-0/+4
| | | | | | | | | | 2008-02-13 Srinivasa Ragavan <sragavan@novell.com> * configure.in: Evolution 2.21.92 version bump. svn path=/trunk/; revision=35001
* Evolution 2.21.91 release.EVOLUTION_2_21_91Srinivasa Ragavan2008-02-131-0/+4
| | | | | | | | | | 2008-02-11 Srinivasa Ragavan <sragavan@novell.com> * NEWS: Evolution 2.21.91 release. svn path=/trunk/; revision=34999
* Bump eds_minimum_version to 2.21.91 for CAMEL_MESSAGE_NOTJUNK.Matthew Barnes2008-02-121-0/+5
| | | | | | | | | | 2008-02-11 Matthew Barnes <mbarnes@redhat.com> * configure.in: Bump eds_minimum_version to 2.21.91 for CAMEL_MESSAGE_NOTJUNK. svn path=/trunk/; revision=34993
* Correct file names that have had the @BASE_VERSION@ dropped. Look forTor Lillqvist2008-02-061-0/+7
| | | | | | | | | | | | 2008-02-06 Tor Lillqvist <tml@novell.com> * evolution-zip.in: Correct file names that have had the @BASE_VERSION@ dropped. Look for message locales first from share/locale, as that is where they get stuffed when building against a properly built GNU gettext. svn path=/trunk/; revision=34966
* Evolution 2.21.91 version bump.Srinivasa Ragavan2008-01-291-0/+4
| | | | | | | | 2008-01-29 Srinivasa Ragavan <sragavan@novell.com> * configure.in: Evolution 2.21.91 version bump. svn path=/trunk/; revision=34929
* Evolution 2.21.90 release.EVOLUTION_2_21_90Srinivasa Ragavan2008-01-291-0/+4
| | | | | | | | 2008-01-29 Srinivasa Ragavan <sragavan@novell.com> * NEWS: Evolution 2.21.90 release. svn path=/trunk/; revision=34927
* Add two more entries for bootstrapping. TheTor Lillqvist2008-01-251-0/+7
| | | | | | | | | | | | 2008-01-25 Tor Lillqvist <tml@novell.com> * win32/libevolution-mail.def: Add two more entries for bootstrapping. The mail/importers/libevolution-mail-importers library depends on the libevolution-mail library which hasn't been built yet when libevolution-mail-importers is built. svn path=/trunk/; revision=34894
* Be more specific.Tor Lillqvist2008-01-251-1/+1
| | | | svn path=/trunk/; revision=34888
* Include camel in E_UTIL compile flags and libs, as at least libeutil usesTor Lillqvist2008-01-251-0/+5
| | | | | | | | | | 2008-01-24 Tor Lillqvist <tml@novell.com> * configure.in: Include camel in E_UTIL compile flags and libs, as at least libeutil uses a camel function now. svn path=/trunk/; revision=34887
* Bump eds_minimum_version to 2.21.90 for new Camel functions.Matthew Barnes2008-01-241-0/+5
| | | | | | | | | | 2008-01-24 Matthew Barnes <mbarnes@redhat.com> * configure.in: Bump eds_minimum_version to 2.21.90 for new Camel functions. svn path=/trunk/; revision=34882
* Add missing directory in configure.in Fixes build breakSankar P2008-01-211-0/+6
| | | | | | | | | | | | 2008-01-21 Sankar P <psankar@novell.com> * configure.in: Add missing directory in configure.in Fixes build break svn path=/trunk/; revision=34861
* Bump some additional package requirements for libsoup-2.4: libbonobo-2.0Matthew Barnes2008-01-191-0/+7
| | | | | | | | | | | | 2008-01-19 Matthew Barnes <mbarnes@redhat.com> * configure.in: Bump some additional package requirements for libsoup-2.4: libbonobo-2.0 >= 2.20.3 glib-2.0 >= 2.15.3 svn path=/trunk/; revision=34850
* Require libsoup-2.4. (Remove old "either 2.2 or 2.4" support, which onlyDan Winship2008-01-171-0/+7
| | | | | | | | | * configure.in: Require libsoup-2.4. (Remove old "either 2.2 or 2.4" support, which only ever worked because there was an old CVS version of libsoup that claimed to be 2.4 but still had the 2.2 API.) svn path=/trunk/; revision=34845
* Version bump to 2.21.90Srinivasa Ragavan2008-01-151-0/+4
| | | | svn path=/trunk/; revision=34827
* Evolution 2.21.5 releaseSrinivasa Ragavan2008-01-151-0/+4
| | | | | | | | 2008-01-14 Srinivasa Ragavan <sragavan@novell.com> * NEWS: Evolution 2.21.5 release svn path=/trunk/; revision=34824
* ** Fix for bug #492702Srinivasa Ragavan2008-01-091-0/+7
| | | | | | | | | | | | | 2008-01-09 Srinivasa Ragavan <sragavan@novell.com> ** Fix for bug #492702 * configure.in: Just disable the dbus message part of mail notification if dbus isn't there. Also remove new-mail-notify plugin. svn path=/trunk/; revision=34784
* Patch from Michael Monreal <michael.monreal@gmx.net>: Fix for bug #492188 ↵Suman Manjunath2008-01-071-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | (Use the new Tangoized icons instead of the deprecated ones from gnome-icon-theme) M addressbook/gui/component/addressbook-view.c M addressbook/ChangeLog AM data/icons/hicolor_actions_16x16_mail-move.png AM data/icons/hicolor_actions_16x16_mail-copy.png AM data/icons/hicolor_actions_16x16_folder-move.png M data/icons/Makefile.am AM data/icons/hicolor_actions_16x16_folder-copy.png M mail/em-folder-browser.c M mail/ChangeLog M mail/em-folder-tree.c M mail/em-folder-view.c M mail/message-list.c M composer/ChangeLog M composer/e-msg-composer.c M ChangeLog M calendar/gui/dialogs/comp-editor.c M calendar/ChangeLog svn path=/trunk/; revision=34769
* Submit bugs to the "BugBuddyBugs" Bugzilla component (#507311).Matthew Barnes2008-01-061-0/+5
| | | | | | | | | | 2008-01-05 Matthew Barnes <mbarnes@redhat.com> * data/evolution.desktop.in.in: Submit bugs to the "BugBuddyBugs" Bugzilla component (#507311). svn path=/trunk/; revision=34765
* Bump GtkHTML requirement to 3.17.5 for bug #317823.Matthew Barnes2008-01-021-0/+5
| | | | | | | | | | 2008-01-01 Matthew Barnes <mbarnes@redhat.com> * configure.in: Bump GtkHTML requirement to 3.17.5 for bug #317823. svn path=/trunk/; revision=34751
* Add --with[out]-help option to make it possible to skip building andMatthew Barnes2008-01-011-0/+6
| | | | | | | | | | | 2008-01-01 Matthew Barnes <mbarnes@redhat.com> * configure.in: Add --with[out]-help option to make it possible to skip building and installing user documentation. (#504541) svn path=/trunk/; revision=34743
* Version bump to 2.21.5Srinivasa Ragavan2007-12-181-3/+4
| | | | | | | | 2007-12-18 Srinivasa Ragavan <sragavan@novell.com> * configure.in: Version bump to 2.21.5 svn path=/trunk/; revision=34727
* ** Evolution 2.21.4 releaseEVOLUTION_2_21_4Srinivasa Ragavan2007-12-181-0/+7
| | | | svn path=/trunk/; revision=34725
* Bump eds_minimum_version to 2.21.4 for new Camel functions.Matthew Barnes2007-12-181-0/+5
| | | | | | | | | | 2007-12-17 Matthew Barnes <mbarnes@redhat.com> * configure.in: Bump eds_minimum_version to 2.21.4 for new Camel functions. svn path=/trunk/; revision=34723
* Just remove the mail-remote plugin altogether so we stop going back andMatthew Barnes2007-12-161-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-12-15 Matthew Barnes <mbarnes@redhat.com> * configure.in: * plugins/mail-remote: Just remove the mail-remote plugin altogether so we stop going back and forth over whether the translatable files should be added to POTFILES.in. We can always add it back once we get it working again. * po/POTFILES.in: Remove the mail-remote files for good this time. * mail/em-folder-tree-model.c (emft_model_unread_count_changed), (emfolder_tree_model_set_unread_count): Fix recently introduced compiler warnings. * plugins/mail-remote: Remove this plugin until it can be fixed. * ui/evolution.xml: Fix capitalization of "Download Messages..." (HIG 8.3.2). svn path=/trunk/; revision=34706
* ** Fixes bug 474651Tobias Mueller2007-12-141-0/+14
| | | | | | | | | | | | | | | | | | | 2007-12-13 Tobias Mueller <tobiasmue@svn.gnome.org> ** Fixes bug 474651 * calendar/gui/memos-component.c: * addressbook/gui/component/addressbook.c: * calendar/gui/tasks-control.c: * calendar/gui/tasks-component.c: * widgets/misc/e-dateedit.c: * calendar/gui/e-cal-model-tasks.c: * widgets/misc/e-cell-percent.c: * calendar/gui/e-itip-control.c: * calendar/gui/comp-editor-factory.c: Use format strings in gtk_message_dialog_new svn path=/trunk/; revision=34694
* ** Fixes bug 474651Tobias Mueller2007-12-101-0/+16
| | | | | | | | | | | | | | | | | | | | | 2007-12-10 Tobias Mueller <tobiasmue@svn.gnome.org> ** Fixes bug 474651 * addressbook/gui/contact-editor/eab-editor.c: * plugins/save-calendar/ical-format.c: * plugins/save-calendar/csv-format.c: * plugins/save-calendar/rdf-format.c: * plugins/ipod-sync/ical-format.c: * plugins/ipod-sync/ipod-sync.c: * plugins/ipod-sync/evolution-ipod-sync.c: * calendar/gui/dialogs/changed-comp.c: * calendar/gui/dialogs/copy-source-dialog.c: * calendar/gui/dialogs/delete-error.c: Use format strings in gtk_message_dialog_new svn path=/trunk/; revision=34680
* Bump libgtkhtml requirement to 3.17.3 due to bug #271551.Matthew Barnes2007-12-061-0/+5
| | | | | | | | | | 2007-12-05 Matthew Barnes <mbarnes@redhat.com> * configure.in: Bump libgtkhtml requirement to 3.17.3 due to bug #271551. svn path=/trunk/; revision=34656
* +2007-12-03 Srinivasa Ragavan <sragavan@novell.com>EVOLUTION_2_21_3Srinivasa Ragavan2007-12-041-1/+5
| | | | | | | | + + * NEWS, configure.in: evolution 2.21.3 release. svn path=/trunk/; revision=34636
* Evolution 2.21.2 release.EVOLUTION_2_21_2Srinivasa Ragavan2007-11-181-0/+4
| | | | | | | | | 2007-11-12 Srinivasa Ragavan <sragavan@novell.com> * NEWS, configure.in: Evolution 2.21.2 release. svn path=/trunk/; revision=34545
* ** Remove trailing whitespace from source code.Matthew Barnes2007-11-151-0/+4
| | | | | | | | | 2007-11-14 Matthew Barnes <mbarnes@redhat.com> ** Remove trailing whitespace from source code. svn path=/trunk/; revision=34537
* ** Fix for bug #209425Michael Monreal2007-11-101-0/+10
| | | | | | | | | | | | | | 2007-11-10 Michael Monreal <mmonreal@svn.gnome.org> ** Fix for bug #209425 * data/icons/Makefile.am: * data/icons/hicolor_actions_16x16_go-today.svg: * data/icons/hicolor_actions_22x22_go-today.svg: Don't use gtk-home for the go-today action. Add new icons to the build. svn path=/trunk/; revision=34518
* ** Remove dead files from source control. The dates below indicate whenMatthew Barnes2007-11-031-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-11-03 Matthew Barnes <mbarnes@redhat.com> ** Remove dead files from source control. The dates below indicate when the file was removed from Makefile.am. Fixes part of bug #478704. * addressbook/printing/e-contact-print-envelope.c (Apr 2007) * addressbook/printing/e-contact-print-envelope.h (Apr 2007) * addressbook/tools/evolution-addressbook-abuse.c (May 2004) * addressbook/tools/evolution-addressbook-import.c (no history) * calendar/gui/dialogs/calendar-setup.glade (Nov 2004) * calendar/gui/dialogs/meeting-page.etspec (Sep 2003) * calendar/gui/dialogs/new-calendar.glade (Jan 2003) * calendar/gui/dialogs/new-task-list.glade (Jan 2004) * calendar/gui/dialogs/url-editor-dialog.c (Dec 2005) * calendar/gui/dialogs/url-editor-dialog.glade (Dec 2005) * calendar/gui/dialogs/url-editor-dialog.h (Dec 2005) * calendar/gui/e-pub-utils.c (Dec 2005) * calendar/gui/e-pub-utils.h (Dec 2005) * calendar/gui/gnome-calendar-conduit.png (May 2000) * e-util/e-categories-master-list-wombat.c (Jun 2005) * e-util/e-categories-master-list-wombat.h (Jun 2005) * tools/evolution-launch-composer.c (Jun 2003) * configure.in: Remove plugins/mail-remote/Makefile from AC_OUTPUT. Fixes a distcheck error. * po/POTFILES.in: Remove files for mail-remote plugin. svn path=/trunk/; revision=34487
* Remove debugging output.Priit Laes2007-11-011-0/+4
| | | | | | | | | 2007-10-31 Priit Laes <plaes@svn.gnome.org> * addressbook/gui/widgets/eab-vcard-control.c: Remove debugging output. svn path=/trunk/; revision=34472
* Evolution 2.21.1 release.EVOLUTION_2_21_1Srinivasa Ragavan2007-10-311-0/+4
| | | | | | | | | 2007-10-29 Srinivasa Ragavan <sragavan@novell.com> * NEWS, configure.in: Evolution 2.21.1 release. svn path=/trunk/; revision=34461
* ** Fix for bug #486351Michael Monreal2007-10-311-0/+18
| | | | | | | | | | | | | | | | | | | | | | 2007-10-31 Michael Monreal <mmonreal@svn.gnome.org> ** Fix for bug #486351 * data/icons/Makefile.am: * data/icons/hicolor_actions_32x32_view-calendar-day.svg: * data/icons/hicolor_actions_32x32_view-calendar-list.svg: * data/icons/hicolor_actions_32x32_view-calendar-month.svg: * data/icons/hicolor_actions_32x32_view-calendar-week.svg: * data/icons/hicolor_actions_32x32_view-calendar-workweek.svg: * data/icons/hicolor_actions_scalable_view-calendar-day.svg: * data/icons/hicolor_actions_scalable_view-calendar-list.svg: * data/icons/hicolor_actions_scalable_view-calendar-month.svg: * data/icons/hicolor_actions_scalable_view-calendar-week.svg: * data/icons/hicolor_actions_scalable_view-calendar-workweek.svg: Add view-calendar-* icons in higher resolutions for use with a11y themes like LargePrint. svn path=/trunk/; revision=34460
* Disable the mail-remote plugin until it can be made to work or at leastMatthew Barnes2007-10-301-0/+6
| | | | | | | | | | | 2007-10-30 Matthew Barnes <mbarnes@redhat.com> * configure.in: Disable the mail-remote plugin until it can be made to work or at least compile again (#491386). svn path=/trunk/; revision=34455
* Added new plugins external-editor, which will make it possible to use anSankar P2007-10-251-0/+8
| | | | | | | | | | | | | | 2007-10-25 Sankar P <psankar@novell.com> * configure.in: * plugins/external-editor: Added new plugins external-editor, which will make it possible to use an external editor as the mail composer. svn path=/trunk/; revision=34423
* configure.in Initial commit for the Google Calendar Feature.Chenthill Palanisamy2007-10-231-0/+8
| | | | | | | | | | | | | 2007-10-23 Chenthill Palanisamy <pchenthill@novell.com> * configure.in * plugins/google-account-setup: Initial commit for the Google Calendar Feature. Committing on behalf of Ebby Wiselyn <ebbywiselyn@gmail.com> svn path=/trunk/; revision=34414
* ** Fixes bug #476389Diego Escalante Urrelo2007-10-191-0/+7
| | | | | | | | | | | | 2007-10-18 Diego Escalante Urrelo <diegoe@gnome.org> ** Fixes bug #476389 * ui/evolution-mail-message.xml: Reorder the Filter/VFolder menu entries to keep consistency between this and the main menu. svn path=/trunk/; revision=34396
* ** Migration of theme icons to data/icons/ (bug #479257)Michael Monreal2007-10-121-0/+6
| | | | | | | | | | | | | | | | | | | | | 2007-10-12 Michael Monreal <michael.monreal@gmail.com> ** Migration of theme icons to data/icons/ (bug #479257) * art/Makefile.am: Remove references to art/$size. * configure.in: Include new data/icons/ directory. * file e-util/e-icon-factory.c: Append a private icon directory to the search path. New inbox/outbox/sent icons. * mail/em-folder-tree.c, mail/mail-send-recv.c: Change icon references. New view-calendar icons. * calendar/gui/calendar-commands.c: Change icon references. svn path=/trunk/; revision=34383
* Miscellaneous changes related to bug #437579.Matthew Barnes2007-10-121-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | 2007-10-11 Matthew Barnes <mbarnes@redhat.com> Miscellaneous changes related to bug #437579. * configure.in: Put a blank line between the configuration summary and the final "now type make" message. * mail/em-format.c (em_format_add_puri): Use G_GSIZE_FORMAT when printing a gsize/size_t to make compilers on all arches happy. * plugins/mail-notification/mail-notification.c: Put the notification_callback() declaration inside a #ifdef HAVE_LIBNOTIFY block to avoid a potential compiler warning. * calendar/gui/alarm-notify/alarm-queue.c: Fix an implicit GTK+ function declaration on x86_64. svn path=/trunk/; revision=34378
* ** Fixes bug 360134Tobias Mueller2007-10-121-0/+12
| | | | | | | | | | | | | | | | 2007-10-11 Tobias Mueller <muelli@auftrags-killer.org> ** Fixes bug 360134 * widgets/table/e-table-header-item.c: * widgets/table/e-table-field-chooser-dialog.c: * widgets/table/e-table-field-chooser-item.c: * widgets/table/e-table-field-chooser.c: * widgets/misc/e-reflow.c: Don't g_strdup strings passed to g_value_set_string since it dups the strings itself. svn path=/trunk/; revision=34377
* ** Fixes bug #484814Matthew Barnes2007-10-111-0/+12
| | | | | | | | | | | | | | | | | 2007-10-11 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #484814 * data/evolution.desktop.in.in: Modernize the Name and Comment. Most other applications use the form "AppName GenericName" for the Name and "Verb Something" for the Comment. Ours will be: Name: Evolution Mail and Calendar Comment: Manage your email, contacts and schedule svn path=/trunk/; revision=34371
* ** Fixes bug #437579Matthew Barnes2007-10-101-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-10-09 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #437579 * addressbook/conduit/address-conduit.c: * addressbook/gui/component/addressbook-config.c: * addressbook/gui/contact-editor/e-contact-editor.c: * addressbook/gui/widgets/eab-gui-util.c: * calendar/conduits/calendar/calendar-conduit.c: * calendar/conduits/memo/memo-conduit.c: * calendar/conduits/todo/todo-conduit.c: * calendar/gui/dialogs/alarm-dialog.c: * calendar/gui/dialogs/event-page.c: * calendar/gui/dialogs/memo-page.c: * calendar/gui/dialogs/task-page.c: * calendar/gui/e-day-view-layout.c: * calendar/gui/e-day-view-layout.h: * calendar/gui/print.c: * e-util/e-pilot-map.c: * e-util/e-plugin.c: * e-util/e-profile-event.c: * e-util/e-signature.c: * filter/filter-file.c: * mail/e-searching-tokenizer.c: * mail/em-folder-browser.c: * mail/em-format-html.c: * mail/em-format-view.c: * mail/em-format.c: * mail/em-mailer-prefs.c: * mail/em-mailer-prefs.h: * mail/mail-session.c: * mail/mail-session.h: * mail/mail-vfolder.c: * mail/message-list.c: * plugins/bbdb/bbdb.c: * plugins/bbdb/gaimbuddies.c: * plugins/calendar-http/calendar-http.c: * plugins/exchange-operations/exchange-user-dialog.c: * plugins/face/face.c: * shell/e-shell-window.c: * shell/e-shell.c: * smime/lib/e-cert-db.c: * tools/killev.c: * widgets/misc/e-cursors.c: * widgets/misc/e-spinner.c: * widgets/misc/e-unicode.c: * widgets/table/e-table-field-chooser-item.c: * widgets/table/e-table-header-item.c: * widgets/table/e-table-header-item.h: * widgets/table/e-table-header-utils.c: * widgets/table/e-table.c: * widgets/text/e-text.c: Fix various compiler warnings. Patch from Milan Crha. svn path=/trunk/; revision=34368
* Remove an unused variable (#483301).Matthew Barnes2007-10-101-0/+4
| | | | | | | | | 2007-10-09 Matthew Barnes <mbarnes@redhat.com> * iconv-detect.c (main): Remove an unused variable (#483301). svn path=/trunk/; revision=34367
* Require libbonobo 2.16.0 or later (#483989).Matthew Barnes2007-10-091-0/+8
| | | | | | | | | | | | | 2007-10-08 Matthew Barnes <mbarnes@redhat.com> * configure.in: Require libbonobo 2.16.0 or later (#483989). This is to make sure we pick up the implementation of gnome_vfs_mime_get_all_components(), which now lives in libbonobo instead of gnome-vfs. svn path=/trunk/; revision=34362
* ** Fixes bug #481325Matthew Barnes2007-10-041-0/+4
| | | | | | | | | | | | | | 2007-10-03 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #481325 * configure.in: Require GTK+ 2.12 * shell/e-shell-window-commands.c (command_about): Fix capitalization of program name in About dialog. svn path=/trunk/; revision=34348
* ** Fixes bug #469657Matthew Barnes2007-10-021-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-10-02 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #469657 * addressbook/importers/evolution-ldif-importer.c: * calendar/gui/comp-editor-factory.c: * composer/e-msg-composer.c: * e-util/e-config-listener.c: * mail/em-composer-prefs.c: * mail/em-folder-tree-model.c: * mail/em-format.c: * mail/em-format-html.c: * mail/em-migrate.c: * mail/em-subscribe-editor.c: * mail/mail-component.c: * mail/mail-send-recv.c: * mail/message-list.c: * mail/importers/elm-importer.c: * plugins/exchange-operations/exchange-folder-size-display.c: * plugins/mono/mono-plugin.c: * shell/e-shell-settings-dialog.c: * tools/killev.c: * widgets/table/e-table-extras.c: * widgets/table/e-table-selection-model.c: Use destroy functions in GHashTables to simplify memory management. svn path=/trunk/; revision=34344
* ** Fixes part of bug #477045Matthew Barnes2007-09-281-0/+8
| | | | | | | | | | | | | 2007-09-27 Matthew Barnes <mbarnes@redhat.com> ** Fixes part of bug #477045 * configure.in: Bump minimum gnome-icon-theme version to 2.19.91 to ensure we get the new mail icons. svn path=/trunk/; revision=34323
* Remove the --enable-gtk-doc configure option since we don't ship anyMatthew Barnes2007-09-271-0/+6
| | | | | | | | | | | 2007-09-27 Matthew Barnes <mbarnes@redhat.com> * configure.in: Remove the --enable-gtk-doc configure option since we don't ship any Gtk-Doc content (#476926). svn path=/trunk/; revision=34321
* Evolution 2.12.0 releaseSrinivasa Ragavan2007-09-261-0/+4
| | | | | | | * NEWS, configure.in: Evolution 2.12.0 release svn path=/trunk/; revision=34306
* configure.in: Bump required GtkHTML minimum version to 3.16Karsten Bräckelmann2007-09-231-0/+5
| | | | svn path=/trunk/; revision=34303
* Add sounds/Makefile to AC_OUTPUT.Matthew Barnes2007-09-221-0/+10
| | | | | | | | | | | | | | | 2007-09-21 Matthew Barnes <mbarnes@redhat.com> * configure.in: Add sounds/Makefile to AC_OUTPUT. * Makefile.am: Distribute the "sounds" directory and its contents. The iCalendar importer in calendar still uses "default_alarm.wav" and configure.in still defines "soundsdir". (#478704) svn path=/trunk/; revision=34298
* Hungarian translation of quickref added: help/quickref/hu/Makefile addedGabor Kelemen2007-09-151-0/+5
| | | | | | | | | 2007-09-15 Gabor Kelemen <kelemeng@gnome.hu> * configure.in: Hungarian translation of quickref added: help/quickref/hu/Makefile added to AC_OUTPUT. svn path=/trunk/; revision=34262
* Remove the --enable-file-chooser configure option.Matthew Barnes2007-09-141-0/+6
| | | | | | GtkFileChooser has been around since 2004. svn path=/trunk/; revision=34257
* Move the test component to "shell/test" so it installs properly (#469992).Matthew Barnes2007-09-121-0/+8
| | | | svn path=/trunk/; revision=34235
* include help/quickref/fr/Makefile to AC_OUTPUT.Sankar P2007-09-101-0/+5
| | | | | | | | | | | 2007-09-10 Sankar P <psankar@novell.com> * configure.in: include help/quickref/fr/Makefile to AC_OUTPUT. svn path=/trunk/; revision=34211
* Added it to SUBDIRS. Added Italian translationLuca Ferretti2007-09-091-0/+5
| | | | | | | | | | | | | 2007-09-09 Luca Ferretti <elle.uca@libero.it> * quickref/Makefile.am: Added it to SUBDIRS. * quickref/it/*: Added Italian translation * configure.in: include help/quickref/it/Makefile to AC_OUTPUT. svn path=/trunk/; revision=34200
* plugins/audio-inline/org-gnome-audio-inline.eplug.xmlFrederic Crozat2007-09-051-0/+6
| | | | | | | | | | | | | | | 2007-09-05 Frederic Crozat <fcrozat@mandriva.com> * configure.in: * plugins/audio-inline/org-gnome-audio-inline.eplug.xml * plugins/audio-inline/ChangeLog * plugins/audio-inline/audio-inline.c audio-inline plugin has been ported to gstreamer 0.10 (bug #329629). svn path=/trunk/; revision=34180
* Evolution 2.11.92 releaseEVOLUTION_2_11_92Srinivasa Ragavan2007-09-041-0/+4
| | | | | | * NEWS, configure.in: Evolution 2.11.92 release svn path=/trunk/; revision=34177
* 2007-09-03 mcrha Fix for bug #201167 by Nathan OwensMilan Crha2007-09-031-0/+6
| | | | svn path=/trunk/; revision=34162
* Update FSF address in header comments (#469886). Patch from TobiasMatthew Barnes2007-09-021-0/+5
| | | | | | | | | | 2007-09-02 Matthew Barnes <mbarnes@redhat.com> * Update FSF address in header comments (#469886). Patch from Tobias Mueller. svn path=/trunk/; revision=34151
* Add mail/default/pl/Makefile to AC_OUTPUT.Matthew Barnes2007-08-291-0/+4
| | | | | | | | | 2007-08-28 Matthew Barnes <mbarnes@redhat.com> * configure.in: Add mail/default/pl/Makefile to AC_OUTPUT. svn path=/trunk/; revision=34127
* Evolution 2.11.91 releaseEVOLUTION_2_11_91Srinivasa Ragavan2007-08-281-0/+4
| | | | | | | * NEWS, configure.in: Evolution 2.11.91 release svn path=/trunk/; revision=34118
* ** Fixes bug #331174Matthew Barnes2007-08-251-0/+6
| | | | | | | | | | | 2007-08-24 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #331174 * configure.in: Rename KRBx_LDFLAGS to KRBx_LIBS. svn path=/trunk/; revision=34102
* ** Fixes bug #411619Matthew Barnes2007-08-251-0/+8
| | | | | | | | | | | | | | | | | 2007-08-24 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #411619 * configure.in: Add appropriate compiler and linker flags to e-util if GTK+ was built against X11. * widgets/Makefile.am: Fix subdirectory order. * widgets/e-timezone-dialog/Makefile.am: Remove WIN32_BOOTSTRAP_LIBS. svn path=/trunk/; revision=34101
* ** Fix for bug #468804Wang Xin2007-08-221-0/+6
| | | | | | | | | | | 2007-08-22 Wang Xin <jedy.wang@sun.com> ** Fix for bug #468804 * plugins/mail-to-task/mail-to-task.c: Handle NUll pointer. svn path=/trunk/; revision=34063
* Evolution 2.11.90 releaseEVOLUTION_2_11_90Srinivasa Ragavan2007-08-141-0/+4
| | | | svn path=/trunk/; revision=34002
* configure options beautification, fix bug #444882Gilles Dartiguelongue2007-08-111-0/+6
| | | | | | * configure options beautification, fix bug #444882 svn path=/trunk/; revision=33981
* Updated the email/userid for svn accounts purposeSrinivasa Ragavan2007-08-081-0/+4
| | | | svn path=/trunk/; revision=33966
* ** Fix for bug #455799Hiroyuki Ikezoe2007-08-041-0/+7
| | | | | | | | | | | | 2007-08-04 Hiroyuki Ikezoe <poincare@ikezoe.net> ** Fix for bug #455799 Remove all .cvsignore and update svn:ignore porperty in whole directories. svn path=/trunk/; revision=33945
* 2.11.6.1 release updatesVeerapuram Varadhan2007-08-011-0/+4
| | | | svn path=/trunk/; revision=33919
* Evolution 2.11.6 release changesVeerapuram Varadhan2007-07-311-0/+4
| | | | svn path=/trunk/; revision=33912
* tnef-attachment plugin check in configure should not use variable stringVeerapuram Varadhan2007-07-311-0/+5
| | | | | | | * tnef-attachment plugin check in configure should not use variable * string in $all_plugins_experimental svn path=/trunk/; revision=33911
* Fixes a typo err which caused a build break.Chenthill Palanisamy2007-07-301-0/+5
| | | | svn path=/trunk/; revision=33902
* Enable configure option for support exchange-operatoion.Hiroyuki Ikezoe2007-07-281-0/+5
| | | | | | | | | | 2007-07-28 Hiroyuki Ikezoe <poincare@ikezoe.net> * configure.in: Enable configure option for support exchange-operatoion. svn path=/trunk/; revision=33865
* Collect all the required package versions in one place and explicitlyMatthew Barnes2007-07-281-0/+9
| | | | | | | | | | | | | 2007-07-27 Matthew Barnes <mbarnes@redhat.com> * configure.in: Collect all the required package versions in one place and explicitly require GTK+ 2.10 or higher. (#380354) * Adapt various Makefile.am files. svn path=/trunk/; revision=33863
* Included face plugin to sources. Helps in attaching Face header toSankar P2007-07-171-0/+5
| | | | | | | | | | | 2007-07-17 Sankar P <psankar@novell.com> * configure.in: Included face plugin to sources. Helps in attaching Face header to outgoing mails. svn path=/trunk/; revision=33813
* Evolution 2.11.5 releaseEVOLUTION_2_11_5Srinivasa Ragavan2007-07-101-0/+4
| | | | svn path=/trunk/; revision=33793
* Commit for tnef attachment and attachment reminderSrinivasa Ragavan2007-07-091-0/+7
| | | | svn path=/trunk/; revision=33769
* fix iconv-detect.c, second part of bug #444882Gilles Dartiguelongue2007-07-031-0/+4
| | | | | | | | 2007-07-03 Gilles Dartiguelongue <gdartigu@svn.gnome.org> * iconv-detect.c: fix iconv-detect.c, second part of bug #444882 svn path=/trunk/; revision=33748
* commit acinclude.m4 patch per bug #444882Gilles Dartiguelongue2007-07-031-0/+5
| | | | svn path=/trunk/; revision=33747
* make the path to perl configurable and add addressbook/tools/csv2vcard toLaszlo (Laca) Peter2007-06-201-0/+6
| | | | | | | | | | | | | | | | | | | | 2007-06-20 Laszlo (Laca) Peter <laca@sun.com> * configure.in: make the path to perl configurable and add addressbook/tools/csv2vcard to AC_OUTPUT. Part of the fix for bug #433732 2007-06-20 Laszlo (Laca) Peter <laca@sun.com> ** Fix for bug #433732 * tools/Makefile.am: expand @PERL@ in evolution-addressbook-clean.in * tools/csv2vcard: rename to csv2vcard.in * tools/csv2vcard.in: make the path to perl configurable * tools/evolution-addressbook-clean.in: make the path to perl configurable svn path=/trunk/; revision=33711
* Evolution 2.11.4 releaseEVOLUTION_2_11_4Srinivasa Ragavan2007-06-191-0/+7
| | | | svn path=/trunk/; revision=33705
* Add support for the XF86Reply and XF86MailForward multimedia keys (Closes:Bastien Nocera2007-06-121-0/+5
| | | | | | | | | | | | | | | | | | | | | | 2007-06-12 Bastien Nocera <hadess@hadess.net> * em-folder-view.c: (emfv_list_key_press): Add support for the XF86Reply and XF86MailForward multimedia keys (Closes: #442631) 2007-06-12 Bastien Nocera <hadess@hadess.net> * e-msg-composer.c: (composer_key_pressed): Add support for the XF86Send multimedia key (Closes: #442631) 2007-06-12 Bastien Nocera <hadess@hadess.net> * configure.in: Detect the X11/XF86keysym.h header, and enable multimedia keys if available (Closes: #442631) svn path=/trunk/; revision=33668
* Added help/quickref/pt/Makefile for PortugueseDuarte Loreto2007-06-081-0/+4
| | | | | | | | 2007-06-07 Duarte Loreto <happyguy_pt@hotmail.com> * configure.in: Added help/quickref/pt/Makefile for Portuguese svn path=/trunk/; revision=33664
* Add missing mail/default/sv/Makefile to configure.inPedro Villavicencio2007-06-061-0/+4
| | | | | | | | | 2007-06-05 Pedro Villavicencio <pvillavi@gnome.org> * configure.in: Add missing mail/default/sv/Makefile to configure.in svn path=/trunk/; revision=33658
* Add configuration option for Sun Kerberos. fixing bug #344728Irene Huang2007-06-051-0/+5
| | | | | | | | | | 2007-06-04 Irene Huang <irene.huang@sun.com> * configure.in: Add configuration option for Sun Kerberos. fixing bug #344728 svn path=/trunk/; revision=33656
* Evolution 2.11.3 releaseEVOLUTION_2_11_3Srinivasa Ragavan2007-06-041-0/+7
| | | | svn path=/trunk/; revision=33652
* Fix for version removal from installed files.Srinivasa Ragavan2007-06-031-0/+9
| | | | svn path=/trunk/; revision=33646
* Remove eggtrayicon.cStéphane Raimbault2007-05-261-0/+5
| | | | | | | | | 2007-05-25 Stéphane Raimbault <stephane.raimbault@gmail.com> * po/POTFILES.in: Remove eggtrayicon.c svn path=/trunk/; revision=33579
* ** Fixes bug #424562Matthew Barnes2007-05-251-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-05-24 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #424562 * e-util/eggtrayicon.c: * e-util/eggtrayicon.h: Evolution requires GTK+ 2.10 now so kill this widget. * e-util/Makefile.am: Remove eggtrayicon.c and eggtrayicon.h. * calendar/gui/dialogs/recur-comp.c (recur_component_dialog): * e-util/e-dialog-utils.c (e_notice): * plugins/calendar-weather/calendar-weather.c (e_calendar_weather_location): * widgets/text/e-text.c (e_text_copy_clipboard), (e_text_update_primary_selection), (e_text_paste), (e_text_do_popup): Remove check for obsolete GTK+ version. * gui/alarm-notify/alarm-queue.c: EggTrayIcon is dead; always use GtkStatusIcon. svn path=/trunk/; revision=33573
* Evolution 2.11.2 releaseSrinivasa Ragavan2007-05-141-0/+4
| | | | | | * Evolution 2.11.2 release svn path=/trunk/; revision=33544
* ** Fix for bug #380750Srinivasa Ragavan2007-05-141-0/+6
| | | | svn path=/trunk/; revision=33535
* ** Fixes part of bug #337616Matthew Barnes2007-05-131-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-05-12 Matthew Barnes <mbarnes@redhat.com> ** Fixes part of bug #337616 * Makefile.am: Add --disable-scrollkeeper to DISTCHECK_CONFIGURE_FLAGS. * addressbook/Makefile.am: * calendar/gui/Makefile.am: * mail/Makefile.am: * plugins/bogo-junk-plugins/Makefile.am: * plugins/default-mailer/Makefile.am: * shell/Makefile.am: Add $(schema_DATA) to DISTCLEANFILES. * plugins/bogo-junk-plugins/org-gnome-bogo-junk-plugin.eplug.in: Rename as org-gnome-bogo-junk-plugin.eplug.xml. * plugins/caldav/Makefile.am: * plugins/import-ics-attachments/Makefile.am: * plugins/publish-calendar/Makefile.am: Add "eplug" file to CLEANFILES. * plugins/mail-remote/Makefile.am: Add "eplug.xml" file to EXTRA_DIST. * po/POTFILES.in: Don't translate files we no longer ship. svn path=/trunk/; revision=33521
* Fixes 394579:incompatible awk on Solaris cause evolution can not recognizeWang Xin2007-05-081-0/+6
| | | | | | | | | | | 2007-05-08 Wang Xin <jedy.wang@sun.com> * configure.in: Fixes 394579:incompatible awk on Solaris cause evolution can not recognize the dbus whose version is newer than 1.0.0. svn path=/trunk/; revision=33491
* Commit Mail notification plugin to the trunk.Srinivasa Ragavan2007-05-031-0/+4
| | | | svn path=/trunk/; revision=33472
* Fix configure for LDFLAGS=-Wl,--as-needed.Karsten Bräckelmann2007-04-241-0/+5
| | | | svn path=/trunk/; revision=33453
* ** Evolution 2.11.1 releaseSrinivasa Ragavan2007-04-231-0/+4
| | | | svn path=/trunk/; revision=33447
* Clean up printing in Evolution (bug #426816)Matthew Barnes2007-04-201-0/+5
| | | | svn path=/trunk/; revision=33440
* Make the libiconv test program return a value. (#388789)Matthew Barnes2007-04-121-0/+5
| | | | | | | | | | 2007-04-11 Matthew Barnes <mbarnes@redhat.com> * configure.in: Make the libiconv test program return a value. (#388789) svn path=/trunk/; revision=33420
* Require libxml-2.0.Matthew Barnes2007-04-041-0/+4
| | | | | | | | | 2007-04-03 Matthew Barnes <mbarnes@redhat.com> * evolution-plugin.pc.in: Require libxml-2.0. svn path=/trunk/; revision=33378
* Add bogofilter part of Evolution plugins.Srinivasa Ragavan2007-04-031-0/+6
| | | | svn path=/trunk/; revision=33368
* Updates on the new guards.Harish Krishnaswamy2007-03-261-0/+4
| | | | | | | | 2007-03-26 Harish Krishnaswamy <harish.krishnaswamy@gmail.com> * MAINTAINERS : Updates on the new guards. svn path=/trunk/; revision=33322
* ** Fixes bug #419524Matthew Barnes2007-03-211-0/+9
| | | | | | | | | | | | | | | | | | | | | | | 2007-03-20 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #419524 * Include <glib/gi18n.h> instead of <libgnome/gnome-i18n.h>. * e-util/e-xml-utils.c (e_xml_get_child_by_name_by_lang_list): * mail/em-migrate.c (emm_setup_initial): * shell/e-component-registry.c (query_components): * shell/e-shell-settings-dialog.c (load_pages): * shell/e-shell-window-commands.c (command_quick_reference): * tools/killev.c (main): Use g_get_language_names() instead of gnome_i18n_get_language_list(). * e-util/e-util.c: Remove e_gettext(). * e-util/Makefile.am: Remove e-i18n.h. svn path=/trunk/; revision=33319
* Evolution 2.10 release updatesHarish Krishnaswamy2007-03-131-0/+4
| | | | | | | | 2007-03-12 Harish Krishnaswamy <kharish@novell.com> * NEWS, configure.in: Evolution 2.10 release updates svn path=/trunk/; revision=33308
* Evolution 2.9.92 release updatesSrinivasa Ragavan2007-02-261-0/+4
| | | | | | | | | 2007-02-26 Srinivasa Ragavan <sragavan@novell.com> * NEWS, configure.in: Evolution 2.9.92 release updates svn path=/trunk/; revision=33257
* Update intltool version.Harish Krishnaswamy2007-02-261-0/+4
| | | | | | | | 2007-02-26 Harish Krishnaswamy <kharish@novell.com> * configure.in : Update intltool version. svn path=/trunk/; revision=33251
* Evolution 2.9.91 ReleaseSrinivasa Ragavan2007-02-121-0/+4
| | | | svn path=/trunk/; revision=33209
* ** Fix for bug #373497Srinivasa Ragavan2007-02-121-0/+6
| | | | svn path=/trunk/; revision=33202
* NEWS, configure.in: Evolution 2.9.6 release updatesVeerapuram Varadhan2007-01-231-0/+5
| | | | | | ` svn path=/trunk/; revision=33141
* Added support for configuring the imap-headers plugin.Sankar P2007-01-221-0/+5
| | | | | | | | | | 2007-01-22 Sankar P <psankar@novell.com> * configure.in: Added support for configuring the imap-headers plugin. svn path=/trunk/; revision=33133
* Evolution 2.9.5 release updates.Harish Krishnaswamy2007-01-091-0/+5
| | | | | | | | | 2006-01-08 Harish Krishnaswamy <kharish@novell.com> * NEWS, configure.in: Evolution 2.9.5 release updates. svn path=/trunk/; revision=33128
* Fix for 389664 - Adding pilot-link 0.12 compatibility.Veerapuram Varadhan2007-01-081-0/+8
| | | | | | * Fix for 389664 - Adding pilot-link 0.12 compatibility. svn path=/trunk/; revision=33125
* fix the build failure caused by SVN revision 33110 (swedish quickrefAndre Klapper2007-01-081-0/+5
| | | | | | | | | | 2007-01-07 Andre Klapper <a9016009@gmx.de> * configure.in: fix the build failure caused by SVN revision 33110 (swedish quickref addition). svn path=/trunk/; revision=33114
* Disconnect handlers on image destroy. Fixes bug #340165.Nickolay V. Shmyrev2006-12-211-8/+0
| | | | | | | | | | | | | | 2006-12-21 Nickolay V. Shmyrev <nshmyrev@yandex.ru> * mail/em-format-html-display.c: (efhd_image_unallocate), (efhd_attachment_image): Disconnect handlers on image destroy. Fixes bug #340165. Fixes changelog issue and build issue svn path=/trunk/; revision=33086
* Disconnect handlers on image destroy. Fixes bug #340165.Nickolay V. Shmyrev2006-12-211-0/+8
| | | | | | | | | | | | 2006-12-21 Nickolay V. Shmyrev <nshmyrev@yandex.ru> * mail/em-format-html-display.c: (efhd_image_unallocate), (efhd_attachment_image): Disconnect handlers on image destroy. Fixes bug #340165. svn path=/trunk/; revision=33084
* Evolution 2.9.4 release updates.Veerapuram Varadhan2006-12-191-0/+7
| | | | | | | | | * NEWS, configure.in: Evolution 2.9.4 release updates. * configure.in: Bump the required EDS version to 1.9.4 svn path=/trunk/; revision=33083
* Evolution 2.9.3 release updates.Harish Krishnaswamy2006-12-051-0/+5
| | | | | | | | | 2006-12-04 Harish Krishnaswamy <kharish@novell.com> * NEWS, configure.in: Evolution 2.9.3 release updates. svn path=/trunk/; revision=33052
* Install evolution.desktop instead of evolution-<version>.desktop.Harish Krishnaswamy2006-11-151-0/+5
| | | | | | | | | 2006-11-14 Harish Krishnaswamy <kharish@novell.com> * data/Makefile.am: Install evolution.desktop instead of evolution-<version>.desktop. svn path=/trunk/; revision=32975
* Add targets help/quickref/es/Makefile and mail/default/es/Makefile.Harish Krishnaswamy2006-11-151-0/+5
| | | | | | | | | 2006-11-14 Harish Krishnaswamy <kharish@novell.com> * configure.in: Add targets help/quickref/es/Makefile and mail/default/es/Makefile. svn path=/trunk/; revision=32974
* Update: Javier F. Serrador has provided a patch atHarish Krishnaswamy2006-11-141-2/+1
| | | | | | Bug 373421. svn path=/trunk/; revision=32973
* Reverting the previous patch as it breaks the HEAD build. TargetHarish Krishnaswamy2006-11-141-1/+9
| | | | | | | | | | | | 2006-11-14 Harish Krishnaswamy <kharish@novell.com> * configure.in: Reverting the previous patch as it breaks the HEAD build. Target Help/C/Makefile was removed from configure.in while Help/Makefile.am still refers to subdirectory C. The port to gnome-doc-utils also needs to submitted for review. svn path=/trunk/; revision=32972
* Fixes #76336 and fix Spanish quickref.Francisco Javier F. Serrador2006-11-111-0/+4
| | | | | | | | 2006-11-10 Francisco Javier F. Serrador <serrador@openshine.com> * configure.in: Fixes #76336 and fix Spanish quickref. svn path=/trunk/; revision=32966
* Evolution 2.9.1 release updates.Harish Krishnaswamy2006-11-071-0/+5
| | | | | | | | | 2006-11-07 Harish Krishnaswamy <kharish@novell.com> * NEWS, configure.in : Evolution 2.9.1 release updates. svn path=/trunk/; revision=32955
* Move prefer-plain plugin to the 'standard' list from 'experimental'.Harish Krishnaswamy2006-11-071-0/+5
| | | | | | | | | 2006-11-06 Harish Krishnaswamy <kharish@novell.com> * configure.in: Move prefer-plain plugin to the 'standard' list from 'experimental'. svn path=/trunk/; revision=32954
* Added execversion to evolution-shell.pc.inJules Colding2006-11-021-0/+5
| | | | svn path=/trunk/; revision=32945
* Evolution 2.9.1 release updates.Harish Krishnaswamy2006-10-171-0/+5
| | | | | | | | | 2006-10-16 Harish Krishnaswamy <kharish@novell.com> * configure.in: Evolution 2.9.1 release updates. svn path=/trunk/; revision=32904
* List the function mail_win32_get_mail_thread_queued() instead of theTor Lillqvist2006-10-161-0/+6
| | | | | | | | | | | | | | | | | | 2006-10-16 Tor Lillqvist <tml@novell.com> * win32/libevolution-mail.def: List the function mail_win32_get_mail_thread_queued() instead of the variable mail_thread_queued. (#348212) * mail-mt.h: On Win32 we don't want to use the mail_thread_queued variable outside the libevolution-mail DLL, but instead access its value through a getter function. * mail-mt.c: Make mail_thread_queued static on Win32. (mail_win32_get_mail_thread_queued): New function that returns the value of mail_thread_queued. svn path=/trunk/; revision=32898
* addressbook/importers/evolution-ldif-importer.cFrancisco Javier F. Serrador2006-10-151-0/+13
| | | | | | | | | | | | | | | | 2006-10-15 Francisco Javier F. Serrador <serrador@openshine.com> * addressbook/gui/widgets/eab-contact-display.c: addressbook/importers/evolution-ldif-importer.c addressbook/importers/evolution-vcard-importer.c calendar/importers/icalendar-importer.c plugins/groupwise-features/properties.glade plugins/mailing-list-actions/org-gnome-mailing-list-actions.eplug.xml plugins/save-attachments/org-gnome-save-attachments.xml shell/shell.error.xml : Make some string improvements to allow better use of gettext compendia. svn path=/trunk/; revision=32879
* Evolution 2.8.1 release updates.Harish Krishnaswamy2006-10-021-0/+5
| | | | | | | | | 2006-10-02 Harish Krishnaswamy <kharish@novell.com> * NEWS, configure.in: Evolution 2.8.1 release updates. svn path=/trunk/; revision=32844
* Evolution 2.8.0 release updates.Harish Krishnaswamy2006-09-041-0/+5
| | | | | | | | | 2006-09-04 Harish Krishnaswamy <kharish@novell.com> * NEWS, configure.in: Evolution 2.8.0 release updates. svn path=/trunk/; revision=32739
* Evolution 2.7.92 release.Srinivasa Ragavan2006-08-211-0/+4
| | | | | | | | 2006-08-21 Srinivasa Ragavan <sragavan@novell.com> * NEWS, configure.in: Evolution 2.7.92 release. svn path=/trunk/; revision=32612
* Include rpath in libs specified. Fixes #350385. (Patch submitted byHarish Krishnaswamy2006-08-191-0/+6
| | | | | | | | | | 2006-08-19 Harish Krishnaswamy <kharish@novell.com> * evolution-plugin.pc.in, evolution-shell.pc.in: Include rpath in libs specified. Fixes #350385. (Patch submitted by Øystein Gisnås) svn path=/trunk/; revision=32589
* Evolution 2.7.91 release updates.Srinivasa Ragavan2006-08-081-0/+5
| | | | | | | | | 2006-08-07 Srinivasa Ragavan <sragavan@novell.com> * NEWS, configure.in: Evolution 2.7.91 release updates. svn path=/trunk/; revision=32495
* Added configure option for disabling cairo calendarSrinivasa Ragavan2006-07-281-0/+5
| | | | svn path=/trunk/; revision=32432
* Evolution 2.7.90 release updates.Harish Krishnaswamy2006-07-241-0/+5
| | | | | | | | | 2006-07-24 Harish Krishnaswamy <kharish@novell.com> * NEWS, configure.in: Evolution 2.7.90 release updates. svn path=/trunk/; revision=32409
* add support for xulrunner and seamonkey (NSS and NSPR)Karsten Bräckelmann2006-07-241-0/+5
| | | | svn path=/trunk/; revision=32396
* Do not assume that only SunOS has pkill because other systems (e.g.Julio M. Merino Vidal2006-07-221-0/+7
| | | | | | | | | | | 2006-07-22 Julio M. Merino Vidal <jmmv@NetBSD.org> * configure.in: Do not assume that only SunOS has pkill because other systems (e.g. NetBSD) also have it. Fix the check that looks for an utility to kill a process by name to properly detect either pkill or killall. Fixes bug #336853. svn path=/trunk/; revision=32386
* adding localized (german) quick reference card. see bug #307856.Andre Klapper2006-07-131-0/+6
| | | | | | | | | | | | | | 2006-07-13 Andre Klapper <a9016009@gmx.de> * configure.in: * help/quickref/Makefile.am: * help/quickref/de/Makefile.am: * help/quickref/de/quickref.pdf: * help/quickref/de/quickref.tex: adding localized (german) quick reference card. see bug #307856. svn path=/trunk/; revision=32298
* Update EDS requirement to 1.7.4.Harish Krishnaswamy2006-07-131-0/+5
| | | | | | | | | 2006-07-12 Harish Krishnaswamy <kharish@novell.com> * configure.in: Update EDS requirement to 1.7.4. svn path=/trunk/; revision=32297
* Evolution 2.7.4 release updates.Harish Krishnaswamy2006-07-101-0/+5
| | | | | | | | | 2006-07-10 Harish Krishnaswamy <kharish@novell.com> * configure.in, NEWS: Evolution 2.7.4 release updates. svn path=/trunk/; revision=32273
* defined @datarootdir@. Patch submitted by Frederic Peters.Harish Krishnaswamy2006-07-101-0/+9
| | | | | | | | | | | | | 2006-07-10 Harish Krishnaswamy <kharish@novell.com> * evolution-shell.pc.in: defined @datarootdir@. Patch submitted by Frederic Peters. * evolution-plugin.pc.in : Similar change. Fixes #345083. svn path=/trunk/; revision=32271
* Must expand also @GETTEXT_PACKAGE@ and @LOCALEDIR@, at least the caldavTor Lillqvist2006-06-151-0/+8
| | | | | | | | | | | | 2006-06-15 Tor Lillqvist <tml@novell.com> * plugin.mk: Must expand also @GETTEXT_PACKAGE@ and @LOCALEDIR@, at least the caldav plugin has a .eplug.in file that refers to those. (On the other hand, it is questionable whether org-gnome-evolution-caldav.eplug.in needs to specify domain and localedir at all.) svn path=/trunk/; revision=32149
* fixing categories, bugzilla entry, adding bugzilla component and bugzillaAndre Klapper2006-06-141-0/+6
| | | | | | | | | | 2006-06-14 Andre Klapper <a9016009@gmx.de> * data/evolution.desktop.in.in: fixing categories, bugzilla entry, adding bugzilla component and bugzilla version. Fixes bug #335410. Thanks to Vincent Fretin and Olav Vitters. svn path=/trunk/; revision=32139
* Fixes #272668.Chenthill Palanisamy2006-06-141-0/+4
| | | | svn path=/trunk/; revision=32134
* Release updates. Bump version. Evolution 2.7.3 release.Harish Krishnaswamy2006-06-121-2/+7
| | | | | | | | | 2006-06-12 Harish Krishnaswamy <kharish@novell.com> * NEWS: Release updates. * configure.in: Bump version. Evolution 2.7.3 release. svn path=/trunk/; revision=32120
* Fix for #336453simon.zheng2006-06-121-0/+8
| | | | | | | | | | | | 2006-06-12 simon.zheng <simon.zheng@sun.com> Fix for #336453 * acinclude.m4: * configure.in: Add SunLDAP library support - a variant of Netscape LDAP. svn path=/trunk/; revision=32117
* Fix typo that caused experimental plugins to be skipped.Iain Buchanan2006-06-021-0/+5
| | | | | | | | | 2006-06-02 Iain Buchanan <iaindb@netspace.net.au> * configure.in: Fix typo that caused experimental plugins to be skipped. svn path=/trunk/; revision=32065
* Fix compilation by adding missing (Thomas Vander Stichele2006-05-281-0/+5
| | | | | | | * widgets/misc/e-attachment-bar.c: (update): Fix compilation by adding missing ( svn path=/trunk/; revision=32046
* Update intltool requirements.Harish Krishnaswamy2006-05-221-0/+4
| | | | | | | | 2006-05-22 Harish Krishnaswamy <kharish@novell.com> * configure.in: Update intltool requirements. svn path=/trunk/; revision=32011
* Patch from Brian Pepple to achieve GNOME Goal for po/LINGUAS. Closes bugKjartan Maraas2006-05-091-0/+6
| | | | | | | | | | 2006-05-09 Kjartan Maraas <kmaraas@gnome.org> * configure.in: Patch from Brian Pepple to achieve GNOME Goal for po/LINGUAS. Closes bug #337965. * po/LINGUAS: New file. svn path=/trunk/; revision=31964
* configure.in: Fix compilation with modern openldap releases. PartiallyKjartan Maraas2006-05-031-0/+5
| | | | | | | | | 2006-05-02 Kjartan Maraas <kmaraas@gnome.org> configure.in: Fix compilation with modern openldap releases. Partially fixes bug #325957. Patch from Sushuma Rai. svn path=/trunk/; revision=31948
* reviewed by: Srinivasa RagavanSven Herzberg2006-04-281-0/+9
| | | | | | | | | | | | | 2006-04-28 Sven Herzberg <herzi@gnome-de.org> reviewed by: Srinivasa Ragavan * shell/apps_evolution_shell.schemas.in.in: added boolean key for the maximized state of the window * shell/e-shell-window.c: added window state saving and updated window size saving to work as expected (fixes bug 243962) svn path=/trunk/; revision=31926
* Add e_expander_get_type which now is needed when linkingTor Lillqvist2006-04-271-0/+5
| | | | | | | | | 2006-04-27 Tor Lillqvist <tml@novell.com> * win32/libemiscwidgets.def: Add e_expander_get_type which now is needed when linking libevolution-widgets-a11y. svn path=/trunk/; revision=31913
* Figure out auto-magically what the mozilla-nss pkg-config module name is.Jeffrey Stedfast2006-04-261-0/+5
| | | | | | | | | 2006-04-25 Jeffrey Stedfast <fejj@novell.com> * configure.in: Figure out auto-magically what the mozilla-nss pkg-config module name is. svn path=/trunk/; revision=31890
* Release updates. Bump version. ***** Release 2.7.1 *****Harish Krishnaswamy2006-04-241-0/+5
| | | | | | | | | 2006-04-24 Harish Krishnaswamy <kharish@novell.com> * NEWS, configure.in: Release updates. Bump version. ***** Release 2.7.1 ***** svn path=/trunk/; revision=31884
* Replaced popt with GOption APIPhilip Van Hoof2006-04-191-0/+4
| | | | | | | | 2006-04-19 Philip Van Hoof <pvanhoof@gnome.org> * shell/main.c: Replaced popt with GOption API svn path=/trunk/; revision=31833
* Remove obsolete entry for no_NO.Kjartan Maraas2006-04-171-0/+4
| | | | | | | | 2006-04-17 Kjartan Maraas <kmaraas@gnome.org> * configure.in: Remove obsolete entry for no_NO. svn path=/trunk/; revision=31821
* Changing the maintainers file to reflect the current mail maintainers.Parthasarathi Susarla2006-03-271-0/+5
| | | | | | | | | 2006-03-27 Parthasarathi Susarla <sparthasarathi@novell.com> * MAINTAINERS: Changing the maintainers file to reflect the current mail maintainers. svn path=/trunk/; revision=31747
* Added Dzongkha (dz). 2006-03-22 Tommi Vainikainen <thv@iki.fi> AddedTommi Vainikainen2006-03-221-0/+4
| | | | | | | | | 2006-03-22 Tommi Vainikainen <thv@iki.fi> * configure.in (ALL_LINGUAS): Added Dzongkha (dz). 2006-03-22 Tommi Vainikainen <thv@iki.fi> * dz.po: Added Dzongkha translation from Pema Geyleg. svn path=/trunk/; revision=31736
* Updated Georgian LanguageVladimer Sichinava2006-03-141-0/+4
| | | | svn path=/trunk/; revision=31712
* Added French welcome message.Benoît Dejean2006-03-131-0/+7
| | | | | | | | | * configure.in: * mail/default/Makefile.am: * mail/default/fr/Inbox: * mail/default/fr/Makefile.am: Added French welcome message. svn path=/trunk/; revision=31703
* configure.in, added support for macedonian (mk) welcome messageAndre Klapper2006-03-041-0/+6
| | | | | | | | | 2006-03-03 Andre Klapper <a9016009@gmx.de> * configure.in, * mail/default/Makefile.am: added support for macedonian (mk) welcome message svn path=/trunk/; revision=31635
* added mail/default/lt/Makefile Fixes bug 333282. (committed by aklapper)Elijah Newren2006-03-041-0/+5
| | | | | | | | 2006-03-03 Elijah Newren <newren@gmail.com> * configure.in: added mail/default/lt/Makefile Fixes bug 333282. (committed by aklapper) svn path=/trunk/; revision=31634
* added mail/default/fi/Makefile Fixes bug 333079. (committed by aklapper)Elijah Newren2006-03-021-0/+5
| | | | | | | | 2006-03-02 Elijah Newren <newren@gmail.com> * configure.in: added mail/default/fi/Makefile Fixes bug 333079. (committed by aklapper) svn path=/trunk/; revision=31624
* added "ta" to ALL_LINGUASAndre Klapper2006-02-281-0/+4
| | | | | | | 2006-02-28 Andre Klapper <a9016009@gmx.de> * configure.in: added "ta" to ALL_LINGUAS svn path=/trunk/; revision=31606
* added hi to configure inRajesh Ranjan2006-02-281-0/+4
| | | | svn path=/trunk/; revision=31603
* Release updates, version bump. ***** Release 2.5.92 *****Srinivasa Ragavan2006-02-271-0/+5
| | | | | | | | | 2006-02-13 Srinivasa Ragavan <sragavan@novell.com> * NEWS, configure.in: Release updates, version bump. ***** Release 2.5.92 ***** svn path=/trunk/; revision=31594
* Added mk to ALL_LINGUAS <arangela@cvs.gnome.org>Arangel Angov2006-02-211-0/+4
| | | | svn path=/trunk/; revision=31552
* Release updates, version bump. ***** Release 2.5.91 *****Harish Krishnaswamy2006-02-141-0/+5
| | | | | | | | | 2006-02-13 Harish Krishnaswamy <kharish@novell.com> * NEWS, configure.in: Release updates, version bump. ***** Release 2.5.91 ***** svn path=/trunk/; revision=31508
* changed the Comment value. Fixes bug 329744 also to my satisfaction. ;-)Andre Klapper2006-02-131-0/+4
| | | | | | | | 2006-02-13 Andre Klapper <a9016009@gmx.de> * data/evolution.desktop.in.in: changed the Comment value. Fixes bug 329744 also to my satisfaction. ;-) svn path=/trunk/; revision=31504
* added GTK category. Fixes bug 328035.Andre Klapper2006-02-071-0/+4
| | | | | | | | 2006-02-07 Andre Klapper <a9016009@gmx.de> * data/evolution.desktop.in.in: added GTK category. Fixes bug 328035. svn path=/trunk/; revision=31435
* added a _GenericName value. Fixes bug 329744.Andre Klapper2006-02-071-0/+4
| | | | | | | | 2006-02-07 Andre Klapper <a9016009@gmx.de> * data/evolution.desktop.in.in: added a _GenericName value. Fixes bug 329744. svn path=/trunk/; revision=31432
* Remove hard-coded EDS version number. Read it fromHarish Krishnaswamy2006-02-061-0/+7
| | | | | | | | | | 2006-02-06 Harish Krishnaswamy <kharish@novell.com> * configure.in, data/Makefile.am, data/evolution.desktop.in.in: Remove hard-coded EDS version number. Read it from evolution-data-server.pc instead. svn path=/trunk/; revision=31417
* Release updates, version bump. ***** Release 2.5.90 *****Harish Krishnaswamy2006-01-301-0/+5
| | | | | | | | | 2006-01-30 Harish Krishnaswamy <kharish@novell.com> * configure.in, NEWS: Release updates, version bump. ***** Release 2.5.90 ***** svn path=/trunk/; revision=31373
* Use g_list_delete_link() instead of g_list_remove_link() +Kjartan Maraas2006-01-301-0/+8
| | | | | | | | | | | | 2006-01-30 Kjartan Maraas <kmaraas@gnome.org> * tools/evolution-launch-composer.c: (do_send): Use g_list_delete_link() instead of g_list_remove_link() + g_list_free_1(). * tools/killev.c: mark a couple vars static and remove a stray semi-colon. svn path=/trunk/; revision=31370
* Updated Traditional Chinese translation(Taiwan). Added Traditional ChineseChao-Hsiung Liao2006-01-211-0/+4
| | | | | | | | | 2006-01-21 Chao-Hsiung Liao <j_h_liau@yahoo.com.tw> * zh_TW.po: Updated Traditional Chinese translation(Taiwan). * zh_HK.po: Added Traditional Chinese translation(Hong Kong). svn path=/trunk/; revision=31256
* Fix to allow longer file names on 'make dist' using automake 1.9.Harish Krishnaswamy2006-01-191-0/+5
| | | | | | | | | 2006-01-19 Harish Krishnaswamy <kharish@novell.com> * configure.in: Fix to allow longer file names on 'make dist' using automake 1.9. svn path=/trunk/; revision=31237
* Release updates, version bump. ***** Release 2.5.5 *****Harish Krishnaswamy2006-01-171-0/+5
| | | | | | | | | 2006-01-17 Harish Krishnaswamy <kharish@novell.com> * configure.in, NEWS: Release updates, version bump. ***** Release 2.5.5 ***** svn path=/trunk/; revision=31225
* i2006-01-17 Harish Krishnaswamy <kharish@novell.com>Harish Krishnaswamy2006-01-171-0/+6
| | | | | | | | Patch submitted by Johnny Jacob <johnnyjacob@gmail.com> * configure.in: Add import-ics-attachments to plugins list and Makefile target. svn path=/trunk/; revision=31224
* changed the version of libnotify from 0.30 to 0.3.0Chenthill Palanisamy2006-01-161-1/+1
| | | | svn path=/trunk/; revision=31212
* fixes #325629Chenthill Palanisamy2006-01-161-0/+4
| | | | svn path=/trunk/; revision=31211
* Add caldav to plugins_base_always and Makefile target.Harish Krishnaswamy2006-01-161-0/+5
| | | | | | | | | 2006-01-16 Harish Krishnaswamy <kharish@novell.com> * configure.in: Add caldav to plugins_base_always and Makefile target. svn path=/trunk/; revision=31209
* Enlose the computed value of MOZILLA_NSS_LIB_DIR with quotes as this willHarish Krishnaswamy2006-01-111-0/+5
| | | | | | | | | 2006-01-11 Harish Krishnaswamy <kharish@novell.com> * configure.in: Enlose the computed value of MOZILLA_NSS_LIB_DIR with quotes as this will be used in the code as a string constant. svn path=/trunk/; revision=31133
* Add the macro MOZILLA_NSS_LIB_DIR to store mozilla nss library path.Simon Zheng2006-01-111-0/+5
| | | | | | | | | 2006-01-11 Simon Zheng <simon.zheng@sun.com> * configure.in: Add the macro MOZILLA_NSS_LIB_DIR to store mozilla nss library path. svn path=/trunk/; revision=31129
* Add whitespace before all line continuation backslashes. Fixes build onTor Lillqvist2006-01-071-0/+6
| | | | | | | | | | 2006-01-07 Tor Lillqvist <tml@novell.com> * server.mk: Add whitespace before all line continuation backslashes. Fixes build on Debian-based systems. (#325574, Sebastien Bacher) svn path=/trunk/; revision=31095
* Include also the glade files in the plugins directory.Tor Lillqvist2006-01-041-0/+9
| | | | | | | | | | | | | 2006-01-04 Tor Lillqvist <tml@novell.com> * evolution-zip.in: Include also the glade files in the plugins directory. Include all of etc/gconf in the zipfile. (One should "make install" to a temporary directory when building a distribution anyway, so only evolution's GConf stuff will be included.) svn path=/trunk/; revision=31045
* Release updates, version bump. ***** Release 2.5.4 *****Harish Krishnaswamy2006-01-031-0/+5
| | | | | | | | | 2006-01-02 Harish Krishnaswamy <kharish@novell.com> * configure.in: Release updates, version bump. ***** Release 2.5.4 ***** svn path=/trunk/; revision=31030
* Fix minor errors in the Network Manager tests.Tor Lillqvist2005-12-221-1/+1
| | | | | | | | 2005-12-22 Tor Lillqvist <tml@novell.com> * configure.in: Fix minor errors in the Network Manager tests. svn path=/trunk/; revision=30937
* Fix minor typo in the Network Manager tests.Tor Lillqvist2005-12-221-0/+4
| | | | | | | | 2005-12-22 Tor Lillqvist <tml@novell.com> * configure.in: Fix minor typo in the Network Manager tests. svn path=/trunk/; revision=30932
* Evolution is now Network Aware, the day of complete awareness beckons, TheShreyas Srinivasan2005-12-221-38/+7
| | | | | | | | | | | 2005-12-22 Shreyas Srinivasan <sshreyas@novell.com> * Evolution is now Network Aware, the day of complete awareness beckons, The machines are taking over... * Network Manager support for evolution svn path=/trunk/; revision=30926
* committed these files to fix http://bugzilla.gnome.org/show_bug.cgi?id=260354Parthasarathi Susarla2005-12-211-0/+39
| | | | | | | | | | | | | | ChangeLog addressbook/ChangeLog addressbook/gui/component/addressbook-component.c calendar/ChangeLog calendar/gui/calendar-component.c calendar/gui/memos-component.c calendar/gui/tasks-component.c mail/ChangeLog mail/Evolution-Mail.idl mail/mail-component.c shell/ChangeLog shell/Evolution-Component.idl shell/Evolution-Shell.idl shell/Evolution.idl shell/Makefile.am shell/e-shell-window.c shell/e-shell-window.h shell/e-shell.c svn path=/trunk/; revision=30915
* Committing the calendar publishing patch.Chenthill Palanisamy2005-12-191-0/+6
| | | | svn path=/trunk/; revision=30876
* evolution-plugin.pc.in Use @privsolibdir@ to set privlibdir.Tor Lillqvist2005-12-171-1/+4
| | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * evolution-plugin.pc.in * evolution-shell.pc.in: Use @privsolibdir@ to set privlibdir. svn path=/trunk/; revision=30794
* Include libedataserver-$EDS_PACKAGE in the requirement list for E_WIDGETS.Tor Lillqvist2005-12-171-0/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | 2005-12-06 Tor Lillqvist <tml@novell.com> * configure.in: Include libedataserver-$EDS_PACKAGE in the requirement list for E_WIDGETS. Set bindir_in_server_file, privlibexecdir_in_server_file and componentdir_in_server_file. On Unix, they are the same as bindir, privlibexecdir and componentdir respectively. On Win32, use paths relative from lib/bonobo/servers. AC_SUBST these variables. * server.mk: Substitute the values above new variables for the corresponding @..._IN_SERVER_FILE@ strings in the .server.in.in files. * addressbook/gui/component/GNOME_Evolution_Addressbook.server.in.in * calendar/gui/GNOME_Evolution_Calendar.server.in.in * calendar/gui/alarm-notify/GNOME_Evolution_Calendar_AlarmNotify.server.in.in * mail/GNOME_Evolution_Mail.server.in.in * shell/GNOME_Evolution_Shell.server.in.in * shell/GNOME_Evolution_Test.server.in.in: Correspondingly, use the @..._IN_SERVER_FILE@ strings. svn path=/trunk/; revision=30793
* Fix to build in Suse 93Chenthill Palanisamy2005-12-131-0/+8
| | | | svn path=/trunk/; revision=30765
* Removed the pruned files from POTFILES.inChenthill Palanisamy2005-12-131-0/+5
| | | | svn path=/trunk/; revision=30764
* Release updates, version bump. ***** Release 2.5.3 *****Harish Krishnaswamy2005-12-131-0/+5
| | | | | | | | | 2005-12-12 Harish Krishnaswamy <kharish@novell.com> * NEWS, configure.in: Release updates, version bump. ***** Release 2.5.3 ***** svn path=/trunk/; revision=30761
* New file, a script used to build a Win32 zipfile distribution ofTor Lillqvist2005-12-021-0/+8
| | | | | | | | | | | | 2005-12-02 Tor Lillqvist <tml@novell.com> * evolution-zip.in: New file, a script used to build a Win32 zipfile distribution of Evolution. * Makefile.am * configure.in: Distribute and expand it. svn path=/trunk/; revision=30712
* Changed configure.in to include libnotify for new alarm UI changeChenthill Palanisamy2005-11-281-0/+5
| | | | svn path=/trunk/; revision=30692
* Drop the IPv6 and getaddrinfo checks, unused here in Evolution. (It's usedTor Lillqvist2005-11-261-0/+5
| | | | | | | | | 2005-11-26 Tor Lillqvist <tml@novell.com> * configure.in: Drop the IPv6 and getaddrinfo checks, unused here in Evolution. (It's used in e-d-s, though.) svn path=/trunk/; revision=30685
* Made hal dependency optional.Srinivasa Ragavan2005-11-231-0/+4
| | | | | | | | 2005-11-23 Srinivasa Ragavan <sragavan@novell.com> * configure.in: Made hal dependency optional. svn path=/trunk/; revision=30649
* README, removed gal requirement.Parthasarathi Susarla2005-11-161-0/+4
| | | | | | | | 2005-11-16 Parthasarathi Susarla <sparthasarathi@novell.com> * README, removed gal requirement. svn path=/trunk/; revision=30627
* Release updates, version bump. ***** Release 2.5.2 *****Harish Krishnaswamy2005-11-151-0/+5
| | | | | | | | | 2005-11-14 Harish Krishnaswamy <kharish@novell.com> * NEWS, configure.in: Release updates, version bump. ***** Release 2.5.2 ***** svn path=/trunk/; revision=30616
* Added Kurdish translationErdal Ronahi2005-10-281-0/+4
| | | | svn path=/trunk/; revision=30569
* Don't require hal on Win32.Tor Lillqvist2005-10-261-0/+4
| | | | | | | | 2005-10-26 Tor Lillqvist <tml@novell.com> * configure.in: Don't require hal on Win32. svn path=/trunk/; revision=30568
* Distclean should remove the header, not iconv-detect.cHarish Krishnaswamy2005-10-251-0/+5
| | | | | | | | | 2005-10-25 Harish Krishnaswamy <kharish@novell.com> * Makefile.am: Distclean should remove the header, not iconv-detect.c svn path=/trunk/; revision=30562
* Turn development warning on. Bump version to 2.5.1.Harish Krishnaswamy2005-10-251-0/+5
| | | | | | | | | 2005-10-25 Harish Krishnaswamy <kharish@novell.com> * configure.in: Turn development warning on. Bump version to 2.5.1. svn path=/trunk/; revision=30561
* Memo Component - submitted by Nathan Owens <pianocomp81@yahoo.com>Harish Krishnaswamy2005-10-191-0/+7
| | | | | | | | 2005-10-19 Harish Krishnaswamy <kharish@novell.com> Memo Component - submitted by Nathan Owens <pianocomp81@yahoo.com> svn path=/trunk/; revision=30537
* Added iPod sync e-plugin to experimental plugins. Added plugins/ipod-syncSrinivasa Ragavan2005-10-181-0/+4
| | | | | | | | | 2005-10-18 Srinivasa Ragavan <sragavan@novell.com> * configure.in: Added iPod sync e-plugin to experimental plugins. Added plugins/ipod-sync svn path=/trunk/; revision=30523
* Added Entry for addition of Bengali (bn) in ALL_LINGUAS in configure.inRuna Bhattacharjee2005-10-171-0/+4
| | | | svn path=/trunk/; revision=30514
* do not add the srcdir prefix as $< already returns the full path. FixesHarish Krishnaswamy2005-10-031-0/+6
| | | | | | | | | | 2005-10-3 Harish Krishnaswamy <kharish@novell.com> * marshal.mk : do not add the srcdir prefix as $< already returns the full path. Fixes #271308. svn path=/trunk/; revision=30465
* Just slight rewording.Tor Lillqvist2005-09-281-3/+2
| | | | svn path=/trunk/; revision=30410
* libdir is prefix/lib, not bin.Tor Lillqvist2005-09-281-0/+2
| | | | | | | | 2005-09-28 Tor Lillqvist <tml@novell.com> * win32/dummy.la: libdir is prefix/lib, not bin. svn path=/trunk/; revision=30408
* Drop unused SOCKET_LIBS leftover. Don't check for OpenLDAP on Win32. SetTor Lillqvist2005-09-281-0/+11
| | | | | | | | | | | | | | | | | | | | | | | | 2005-09-28 Tor Lillqvist <tml@novell.com> * configure.in: Drop unused SOCKET_LIBS leftover. Don't check for OpenLDAP on Win32. Set corresponding variables unconditionally on Win32, as LDAP support is always present (in <winldap.h> and -lwldap32). (CAMEL_EXCHANGE): Add more stuff to CAMEL_EXCHANGE_CFLAGS and _LIBS. These are used only in plugins/exchange-operations/Makefile.am, and now it's enough to use only that CAMEL_EXCHANGE_CFLAGS and _LIBS there. In plugins/exchange-operations: 2005-09-28 Tor Lillqvist <tml@novell.com> * Makefile.am (INCLUDES, LIBADD): Use just CAMEL_EXCHANGE_CFLAGS and _LIBS, they now includes all necessary (see top-level ChangeLog). (LDFLAGS): Use NO_UNDEFINED. svn path=/trunk/; revision=30388
* grep on Solaris doesn't support -q, use > /dev/null instead.Mengjie Yu2005-09-081-0/+4
| | | | | | | | 2005-09-05 Mengjie Yu <meng-jie.yu@sun.com> * configure.in:grep on Solaris doesn't support -q, use > /dev/null instead. svn path=/trunk/; revision=30339
* Turn stable release bit on. Set version to 2.4.0. Update.Harish Krishnaswamy2005-08-291-0/+6
| | | | | | | | | | 2005-08-28 Harish Krishnaswamy <kharish@novell.com> * configure.in : Turn stable release bit on. Set version to 2.4.0. * MAINTAINERS : Update. svn path=/trunk/; revision=30277
* Enable building of exchange plugins by default.Sarfraaz Ahmed2005-08-251-0/+4
| | | | | | | | 2005-08-24 Sarfraaz Ahmed <asarfraaz@novell.com> * configure.in : Enable building of exchange plugins by default. svn path=/trunk/; revision=30249
* correct inadvertent delete in the previous commitHarish Krishnaswamy2005-08-231-22/+42
| | | | svn path=/trunk/; revision=30205
* Release 2.3.8Harish Krishnaswamy2005-08-231-38/+22
| | | | | | | | 2005-08-23 Harish Krishnaswamy <kharish@novell.com> * configure.in: Release 2.3.8 svn path=/trunk/; revision=30203
* fixed a typo: s/occured/occurred/gJens Seidel2005-08-221-0/+7
| | | | svn path=/trunk/; revision=30180
* Resolve #309074Francisco Javier F. Serrador2005-08-221-0/+5
| | | | | | | | 2005-08-21 Francisco Javier F. Serrador <serrador@cvs.gnome.org> * Resolve #309074 svn path=/trunk/; revision=30179
* Don't try to build killev on Win32.Tor Lillqvist2005-08-101-0/+4
| | | | | | | | 2005-08-10 Tor Lillqvist <tml@novell.com> * tools/Makefile.am: Don't try to build killev on Win32. svn path=/trunk/; revision=30076
* Added "th" (Thai) to ALL_LINGUAS. Added Thai translation by SupraneeTheppitak Karoonboonyanan2005-08-091-0/+4
| | | | | | | | | | 2005-08-09 Theppitak Karoonboonyanan <thep@linux.thai.net> * configure.in: Added "th" (Thai) to ALL_LINGUAS. * po/th.po: Added Thai translation by Supranee Thirawatthanasuk <supranee@opentle.org>. svn path=/trunk/; revision=30043
* Release 2.3.7Harish Krishnaswamy2005-08-091-0/+4
| | | | | | | | 2005-08-08 Harish Krishnaswamy <kharish@novell.com> * configure.in: Release 2.3.7 svn path=/trunk/; revision=30039
* Change references to the term "vfolder" to use the term "Search Folder"Rodney Dawes2005-08-081-0/+5
| | | | | | | | | 2005-08-07 Rodney Dawes <dobey@novell.com> * help/C/evolution.xml: Change references to the term "vfolder" to use the term "Search Folder" instead svn path=/trunk/; revision=30025
* Added Telugu translations done by Prajasakti Localisation Team ↵Sunil Mohan Adapa2005-08-041-0/+4
| | | | | | <localisation@prajasakti.com> svn path=/trunk/; revision=29983
* Bump version numberHarish Krishnaswamy2005-07-291-0/+8
| | | | | | | | | | | 2005-07-29 Harish Krishnaswamy <kharish@novell.com> * configure.in: Bump version number *****Release 2.3.6.1***** includes fix for #311731 - (Removing folders from an IMAP) svn path=/trunk/; revision=29930
* Fix make distcheck issues. Bump version number ***** Release 2.3.6 *****Harish Krishnaswamy2005-07-271-0/+11
| | | | | | | | | | | | | | | 2005-07-26 Harish Krishnaswamy <kharish@novell.com> * plugins/calendar-weather/Makefile.am: * plugins/groupwise-features/Makefile.am: * plugins/mail-account-disable/Makefile.am: * plugins/mailing-list-actions/Makefile.am: * plugins/print-message/Makefile.am: Fix make distcheck issues. * configure.in: Bump version number ***** Release 2.3.6 ***** svn path=/trunk/; revision=29892
* Add AC_LIBTOOL_WIN32_DLL. It is apparently required when using bleedingTor Lillqvist2005-07-201-0/+12
| | | | | | | | | | | | | | | | 2005-07-20 Tor Lillqvist <tml@novell.com> * configure.in: Add AC_LIBTOOL_WIN32_DLL. It is apparently required when using bleeding edge libtool. Enable building with Mozilla nspr and nss on Win32. No -ldl on Win32. No import library for softokn3.dll provided by the Mozilla people for some reason. Add libedataserverui, libglade and gtk+ to the dependencies of CERT_UI, as the libraries in smime call functions from them. svn path=/trunk/; revision=29810
* Removed the proxy and proxy-login plugins as they are merged into theSankar P2005-07-201-0/+5
| | | | | | | | | 2005-07-19 Sankar P <psankar@novell.com> * configure.in : Removed the proxy and proxy-login plugins as they are merged into the groupwise-features plugin. svn path=/trunk/; revision=29805
* Add libedataserverui to the IMPORTERS dependency list.Tor Lillqvist2005-07-131-0/+5
| | | | | | | | | 2005-07-13 Tor Lillqvist <tml@novell.com> * configure.in: Add libedataserverui to the IMPORTERS dependency list. svn path=/trunk/; revision=29754
* remove the reference to shell/importer/libevolution-importer.la inHarish Krishnaswamy2005-07-131-0/+5
| | | | | | | | | 2005-07-13 Harish Krishnaswamy <kharish@novell.com> remove the reference to shell/importer/libevolution-importer.la in startup-wizard. ***** Release 2.3.5.1 ***** svn path=/trunk/; revision=29748