Commit Graph

82 Commits

Author SHA1 Message Date
52ba74cef4 ** Fixes part of bug #526152, plus some tangential code cleanup.
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
2008-04-05 15:26:26 +00:00
16068d9b41 ** Merge the mbarnes-composer branch
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
2008-04-02 18:37:22 +00:00
9e4fcb29cf ** Remove trailing whitespace from source code.
2007-11-14  Matthew Barnes  <mbarnes@redhat.com>

	** Remove trailing whitespace from source code.


svn path=/trunk/; revision=34537
2007-11-14 22:04:21 +00:00
8228c1b611 ** Remove dead files from source control. The dates below indicate when
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
2007-11-03 12:06:34 +00:00
b32649a94c ** Fixes bug #437579
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
2007-10-10 04:54:36 +00:00
09d4af6fff ** Fixes bug #469657
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
2007-10-02 11:54:42 +00:00
8e47917e8c Update FSF address in header comments (#469886). Patch from Tobias
2007-09-02  Matthew Barnes  <mbarnes@redhat.com>

	* Update FSF address in header comments (#469886).
	  Patch from Tobias Mueller.


svn path=/trunk/; revision=34151
2007-09-02 04:19:22 +00:00
e0b92a2aaa ** Fix for bug #455799
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
2007-08-03 23:52:01 +00:00
08de5e9e14 Collect all the required package versions in one place and explicitly
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
2007-07-27 16:42:11 +00:00
cba3097cad ** Fixes bug #419524
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
2007-03-20 17:23:58 +00:00
4ce156ab5a Use g_list_delete_link() instead of g_list_remove_link() +
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
2006-01-30 11:54:27 +00:00
dcb5bcea6f Don't try to build killev on Win32.
2005-08-10  Tor Lillqvist  <tml@novell.com>

	* tools/Makefile.am: Don't try to build killev on Win32.

svn path=/trunk/; revision=30076
2005-08-10 10:38:36 +00:00
27a61acf27 Retired GAL from Head. The relevant files have moved inside evolution.
2005-06-17  Kaushal Kumar  <kakumar@novell.com>

        * Retired GAL from Head. The relevant files have moved inside
        evolution. Thanks to JP Rosevear for performing the cvs surgery. The
        files have been moved in the following order.

        evolution/e-util <- gal/gal/util
        evolution/a11y <-  gal/gal/a11y
        evolution/a11y/e-table <- gal/gal/a11y/e-table
        evolution/a11y/e-text <- gal/gal/a11y/e-text
        evolution/widgets/table <- gal/gal/e-table
        evolution/widgets/text <- gal/gal/e-text
        evolution/widgets/misc <- gal/gal/widgets
        evolution/widgets/misc/pixmaps <- gal/gal/widgets/pixmaps
        evolution/widgets/menus <- gal/gal/menus

        Following is the summary of changes done to fix the build:-
        - New files added to cvs repository,
                - a11y/e-table/Makefile.am
                - a11y/e-text/Makefile.am
                - widgets/table/Makefile.am
                - widgets/text/Makefile.am
                - widgets/misc/pixmaps/Makefile.am
                - iconv-detect.h
                - iconv-detect.c
        - Updated configure.in.
        - Updated all the relevant Makefile.am files.
        - Updated the include paths to replace all gal references.
        - Updated the marshal list to suit gal files requirements.

svn path=/trunk/; revision=29522
2005-06-17 15:20:35 +00:00
457d277247 use gnome_i18n_get_language_list so we get the right one (LC_MESSAGES).
2004-04-30  Not Zed  <NotZed@Ximian.com>

        * tools/killev.c (main): use gnome_i18n_get_language_list so we
        get the right one (LC_MESSAGES).

svn path=/trunk/; revision=25702
2004-04-30 06:23:28 +00:00
ef6740c535 Define this (the number used in the e-d-s component repo_ids).
* configure.in (DATASERVER_API_VERSION): Define this (the number
	used in the e-d-s component repo_ids).

	* tools/killev.c (main): Update the repo_ids

svn path=/trunk/; revision=24932
2004-03-02 16:10:04 +00:00
c406ecad32 Use the AlarmNotify_Factory for --force-shutdown
2004-02-09  Rodney Dawes  <dobey@ximian.com>

	* tools/killev.c: Use the AlarmNotify_Factory for --force-shutdown

	Fixes #54084

svn path=/trunk/; revision=24684
2004-02-09 17:59:04 +00:00
87dfafd83f Add e-util libs
2004-01-05  JP Rosevear <jpr@ximian.com>

	* tools/Makefile.am: Add e-util libs

	* configure.in: try compiling with sys/types for freebsd

	(Joe Marcus Clarke <marcus@freebsd.org>)

svn path=/trunk/; revision=24056
2004-01-05 19:50:53 +00:00
b62186f60c Remove hard coded disable deprecated flags
2003-12-06  JP Rosevear <jpr@ximian.com>

	* tools/Makefile.am: Remove hard coded disable deprecated flags

svn path=/trunk/; revision=23660
2003-12-06 18:14:04 +00:00
7af66de023 Use BASE_VERSION for repo_ids and OAFIIDs Update killev to kill the
2003-12-01  Rodney Dawes  <dobey@ximian.com>

	* Use BASE_VERSION for repo_ids and OAFIIDs
  * Update killev to kill the correct versions of gnome-spell and the
    GtkHTML Editor

svn path=/trunk/; revision=23543
2003-12-01 22:14:43 +00:00
862aa803c3 kill Evo 2.0's alarm daemon, not 1.4's.
2003-11-24  Rodrigo Moya <rodrigo@ximian.com>

	* tools/killev.c (main): kill Evo 2.0's alarm daemon, not 1.4's.

svn path=/trunk/; revision=23479
2003-11-24 10:38:11 +00:00
db7cf590f9 kill the alarm notification service, not the factory, which no longer
2003-11-18  Rodrigo Moya <rodrigo@ximian.com>

	* tools/killev.c (main): kill the alarm notification service, not
	the factory, which no longer exists.

svn path=/trunk/; revision=23414
2003-11-18 15:34:47 +00:00
0fb08f3ff8 Merge new-ui-branch to the trunk.
svn path=/trunk/; revision=22964
2003-10-21 18:28:34 +00:00
e586397c05 clean this up a little and make it deal with "evolution" vs
* tools/killev.c (kill_component): clean this up a little and make
        it deal with "evolution" vs "evolution-1.4"

svn path=/trunk/; revision=21499
2003-06-20 15:32:01 +00:00
5b69d6b3d5 Remove evolution-launch-composer since it's
no longer needed.

svn path=/trunk/; revision=21439
2003-06-13 19:51:37 +00:00
8853de7d70 Revert to 1.4.0 version.
svn path=/trunk/; revision=21437
2003-06-13 18:48:30 +00:00
51ca9977c7 Put the ChangeLog.pre-1-4 in the Makefiles.
svn path=/trunk/; revision=21426
2003-06-12 21:13:59 +00:00
2e2287a9f2 Fix
* tools/Makefile.am (EXTRA_DIST): Fix

svn path=/trunk/; revision=20772
2003-04-08 21:51:18 +00:00
26312e0ff1 add killev
svn path=/trunk/; revision=20759
2003-04-08 15:36:25 +00:00
50b639d988 remove evolution-addressbook-export.
2003-04-07  Chris Toshok  <toshok@ximian.com>

	* tools/Makefile.am (privlibexec_PROGRAMS): remove
	evolution-addressbook-export.

	* tools/evolution-addressbook-export.c: nuke.

svn path=/trunk/; revision=20712
2003-04-07 16:39:03 +00:00
49eb4eb0e4 Install these in privlibexecdir, not privdatadir. Move killev from SCRIPTS
* tools/Makefile.am (privlibexec_SCRIPTS, privlibexec_PROGRAMS):
	Install these in privlibexecdir, not privdatadir. Move killev from
	SCRIPTS to PROGRAMS.
	(killev_SOURCES, killev_LDADD): Add

	* tools/killev.c: New C port of killev, since
	"bonobo-activation-query" does not return as much information as
	"oaf-client" did. Also has prettier output. (Still shells out to
	killall/pkill to do the actual killing.)

	* tools/killev: Gone

	* tools/evolution-move-tasks: Removed since the evolution-calendar
	code that called it is also gone now.

svn path=/trunk/; revision=20700
2003-04-07 16:06:50 +00:00
1fffa41a16 use bonobo_main_quit, and clean this up a bit.
2003-03-14  Chris Toshok  <toshok@ximian.com>

	* tools/evolution-addressbook-export.c (save_cards): use
	bonobo_main_quit, and clean this up a bit.

svn path=/trunk/; revision=20305
2003-03-15 00:35:19 +00:00
ce6b94f8b8 Fix dependencies
* tools/Makefile.am (evolution_launch_composer_LDADD): Fix
	dependencies

svn path=/trunk/; revision=20113
2003-02-28 22:20:58 +00:00
df08abfd54 ignore some stuff, yo.
2003-02-27  Chris Toshok  <toshok@ximian.com>

	* tools/.cvsignore: ignore some stuff, yo.

	* tools/Makefile.am: add in the evolution-launch-composer stuff.

	* tools/evolution-launch-composer.c: port this from the 1.2 branch.

svn path=/trunk/; revision=20098
2003-02-28 07:48:26 +00:00
d40f089a70 Make libversit a shared library, update stuff for that, and clean up
some LDADDs in the process

svn path=/trunk/; revision=19994
2003-02-21 21:24:34 +00:00
d0ead0c4a9 s/PACKAGE/GETTEXT_PACKAGE/ in gettext init
svn path=/trunk/; revision=19818
2003-02-06 17:26:04 +00:00
8790e14c4b subst in $(toolsdir) instead of $(bindir)
* tools/Makefile.am: subst in $(toolsdir) instead of $(bindir)

        * tools/evolution-addressbook-clean.in:
        s/EVOLUTION_BINDIR/EVOLUTION_TOOLSDIR/

svn path=/trunk/; revision=19809
2003-02-06 16:45:55 +00:00
9c1d6e6b95 s/bin_SCRIPTS/tools_SCRIPTS/
2003-01-28  Rodney Dawes  <dobey@ximian.com>

	* tools/Makefile.am (EXTRA_DIST): s/bin_SCRIPTS/tools_SCRIPTS/

svn path=/trunk/; revision=19673
2003-01-28 21:47:16 +00:00
1d9a3023e5 #include bonobo-activation instead of oaf. (main): Initialize using
* tools/evolution-addressbook-export.c: #include bonobo-activation
instead of oaf.
(main): Initialize using gnome_program_init().
(save_cards): Use g_main_loop_quit() instead of gtk_exit().

* tools/evolution-addressbook-import.c: Update include list for
GNOME 2.
(main): Initialize using gnome_program_init().
(unref_executable): Use g_main_loop_quit() instead of gtk_exit().
(add_cb): Likewise.

* tools/evolution-addressbook-abuse.c: Update include list for
GNOME 2.
(main): Initialize using gnome_program_init().
(use_addressbook): Use g_object_unref() instead of
gtk_object_unref().
(main): Use g_timeout_add() instead of gtk_timeout_add().
(add_cb): Use g_main_loop_quit() instead of gtk_exit().

* configure.in (AC_SUBST): Add tools/Makefile.

* Makefile.am (SUBDIRS): Add tools/ back into the list.

* tools/Makefile.am: Install everything in
$(datadir)/evolution-$(BASE_VERSION)/tools.
(INCLUDES): Add the defines that gnome_program_init() likes and
also add the _DISABLE_DEPRECATED stuff.

svn path=/trunk/; revision=19656
2003-01-27 18:54:56 +00:00
67d091d07e Use default book, not local one.
* tools/evolution-addressbook-import.c (main): Use default book,
	not local one.

	* tools/evolution-addressbook-export.c (main): Likewise.

	* tools/evolution-addressbook-abuse.c (abuse_timeout): Likewise.

svn path=/trunk/; revision=17766
2002-08-13 01:06:15 +00:00
9e759ac6e1 Add include lines to get ebook headers relative to <ebook/foo.h>, not
2002-07-09  Peter Williams  <peterw@ximian.com>

	* tools/Makefile.am (INCLUDES): Add include lines to get
	ebook headers relative to <ebook/foo.h>, not "foo.h".


addressbook:

2002-07-08  Peter Williams  <peterw@ximian.com>

	* backend/ebook/e-book.h: Normalize includes to <ebook/foo.h>, so
	that the installed headers will work sanely.

	* backend/ebook/e-card-cursor.h:
	* backend/ebook/e-book-view.h:
	* backend/ebook/e-card-simple.h:
	* backend/ebook/e-card.h:
	* backend/ebook/e-destination.h: Same.

	* printing/Makefile.am (INCLUDES): add -Iaddressbook/backend
	to access the ebook headers. Also the builddir version to get
	the generated addressbook.h

	* gui/widgets/Makefile.am (INCLUDES): Same builddir fix.

	* gui/merging/e-card-merging.c: Fix an ebook #include.

	* gui/merging/Makefile.am (INCLUDES): Same idea.

	* gui/contact-list-editor/Makefile.am (INCLUDES): Same.

	* gui/contact-editor/Makefile.am (INCLUDES): Same builddir
	change.


calendar:

2002-07-08  Peter Williams  <peterw@ximian.com>

	* gui/Makefile.am (INCLUDES): Change the -I flags to get
	it to play nicely with the new Ebook header paradigm.

	* gui/dialogs/Makefile.am: Same.

	* gui/e-meeting-model.c: More of the same.

	* gui/dialogs/e-delegate-dialog.c:
	* gui/dialogs/e-meeting-model.c:
	* gui/dialogs/comp-editor-util.c: Fix include lines to get
	ebook headers.

	* pcs/Makefile.am: Same.


composer:

2002-07-08  Peter Williams  <peterw@ximian.com>

	* Makefile.am (INCLUDES): Fix cflags for ebook header namespacing.


importers:

2002-07-08  Peter Williams  <peterw@ximian.com>

	* Makefile.am: Fix cflags to get at ebook headers correctly.

	* pine-importer.c: Fix include lines to get ebook headers the "right"
	way.

	* evolution-gnomecard-importer.c: Same.


mail:

2002-07-08  Peter Williams  <peterw@ximian.com>

	* Makefile.am (INCLUDES): Add -I flags to get the ebook headers.

svn path=/trunk/; revision=17411
2002-07-10 21:34:37 +00:00
c1a017826e Don't link with libibex.
* tools/Makefile.am: Don't link with libibex.

svn path=/trunk/; revision=16621
2002-04-27 00:29:34 +00:00
ede63cde58 Change the OAFIID for the GtkHTML editor to have :1.1 at the end.
2002-03-24  Peter Williams  <peterw@ximian.com>

       * tools/killev: Change the OAFIID for the GtkHTML editor to
       have :1.1 at the end.

svn path=/trunk/; revision=16241
2002-03-24 23:25:47 +00:00
291190adfd more fixes for libversit.la -> libversit.a
svn path=/trunk/; revision=16211
2002-03-19 20:30:52 +00:00
b0fb89aeb6 ignore evolution-addressbook-abuse
svn path=/trunk/; revision=15515
2002-01-29 23:31:17 +00:00
79a377ddf2 Final cleanup for the CFLAGS and LIBS in the Makefiles.
svn path=/trunk/; revision=15486
2002-01-27 17:21:36 +00:00
3706948385 cvs2vcard script by Michael MacDonald.
svn path=/trunk/; revision=15193
2001-12-20 06:10:15 +00:00
24098ef674 Chop the output from `uname -s'. Thanks to Michael Gerdts for suggesting
* tools/killev: Chop the output from `uname -s'.  Thanks to
Michael Gerdts for suggesting the fix.

svn path=/trunk/; revision=14652
2001-11-09 22:43:10 +00:00
f4bb7b53dd Now more abusive.
svn path=/trunk/; revision=14203
2001-10-27 05:28:18 +00:00
884c0337b8 More abuse.
svn path=/trunk/; revision=14176
2001-10-26 22:34:55 +00:00
d2cc21d95e Wombat: Be afraid. Be VERY afraid.
svn path=/trunk/; revision=14174
2001-10-26 22:17:23 +00:00