aboutsummaryrefslogtreecommitdiffstats
path: root/shell/main.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove e_shell_set_startup_view().Matthew Barnes2013-04-011-3/+0
| | | | No longer needed.
* Remove e_shell_detect_meego().Matthew Barnes2013-04-011-1/+0
| | | | No longer used.
* Remove --express command-line option.Matthew Barnes2013-04-011-22/+5
| | | | | | | | | | | | This effectively removes Express Mode as a user-selectable feature. Express Mode was developed for MeeGo by MeeGo developers. Today the MeeGo project is dead, the MeeGo developers have disappeared, no one is maintaining Express Mode and the feature is deteriorating. There's still some bits of Express Mode I'd like to salvage before we remove it entirely, but henceforth it will have to be enabled at compile-time.
* Fix mbox-to-Maildir conversion... again.Matthew Barnes2013-03-251-1/+10
| | | | | | | | | | | | | | Commit ee5671fc fixed mbox-to-Maildir conversion for users upgrading from Evolution 2.32, who had already migrated to XDG Base Directories. But turns out, mbox-to-Maildir conversion was still broken for users coming from Evolution 2.30 or earlier because the logic to move files into XDG Base Directories was running *after* the conversion routine. So the conversion routine found nothing to convert, and users were left with a broken "On This Computer" mail store. This commit runs the XDG Base Directory migration first on startup, followed by the mbox-to-Maildir conversion.
* Bump GDK_VERSION_MIN_REQUIRED to GDK_VERSION_3_2.Matthew Barnes2013-01-201-1/+1
| | | | | Clean up resulting deprecation warnings, which were all related to GtkOrientable consolidation (e.g. gtk_hbox_new() -> gtk_box_new()).
* main.c: Use g_type_ensure() to register plugin hook types.Matthew Barnes2012-12-171-2/+2
| | | | Make sure EImportHook and EPluginUIHook types are registered at startup.
* Fix compiler warnings.Matthew Barnes2012-12-151-0/+4
|
* Consolidate base utility libraries into libeutil.Matthew Barnes2012-12-131-8/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Evolution consists of entirely too many small utility libraries, which increases linking and loading time, places a burden on higher layers of the application (e.g. modules) which has to remember to link to all the small in-tree utility libraries, and makes it difficult to generate API documentation for these utility libraries in one Gtk-Doc module. Merge the following utility libraries under the umbrella of libeutil, and enforce a single-include policy on libeutil so we can reorganize the files as desired without disrupting its pseudo-public API. libemail-utils/libemail-utils.la libevolution-utils/libevolution-utils.la filter/libfilter.la widgets/e-timezone-dialog/libetimezonedialog.la widgets/menus/libmenus.la widgets/misc/libemiscwidgets.la widgets/table/libetable.la widgets/text/libetext.la This also merges libedataserverui from the Evolution-Data-Server module, since Evolution is its only consumer nowadays, and I'd like to make some improvements to those APIs without concern for backward-compatibility. And finally, start a Gtk-Doc module for libeutil. It's going to be a project just getting all the symbols _listed_ much less _documented_. But the skeletal structure is in place and I'm off to a good start.
* Coding style and whitespace cleanup.Matthew Barnes2012-11-111-2/+4
|
* Replace e_ensure_type() with g_type_ensure().Matthew Barnes2012-11-091-12/+1
|
* Do not crash in create_default_shell()Milan Crha2012-10-171-3/+9
|
* Bug 676141 - Use GtkApplication for session managementMatthew Barnes2012-10-161-0/+1
| | | | | As of GTK+ 3.4, GtkApplication now provides session management support similar to EggSMClient. So drop our copy of EggSMClient.
* Fix contact maps.Matthew Barnes2012-10-041-0/+13
| | | | | | | | I broke contact maps when I removed the settings capplet. The contact maps feature uses clutter-gtk, so we still need to call gtk_clutter_init_with_args() instead of gtk_init_with_args() if the contact maps feature is enabled.
* Bug #683548 - Initialize webkit's web view before other threads are runMilan Crha2012-09-101-0/+17
| | | | Just a workaround until Webkit upstream has that fixed.
* Coding style and whitespace cleanup.Matthew Barnes2012-08-201-22/+22
|
* express: Remove clutter-based email tabs.Matthew Barnes2012-08-111-15/+0
| | | | | | This was another MeeGo feature. MeeGo is dead, the code is starting to bit rot and crashes on startup, the original author disappeared and the remaining developers are not interested in maintaining it. So it's out.
* Run mbox-to-Maildir conversion before loading modules.Matthew Barnes2012-08-101-0/+15
| | | | | | | | | | | | | | Invoke the mbox-to-Maildir conversion directly from main(), just before the call to e_shell_load_modules(). The reason the code is here and not in the mail module is because we inform the user at startup of the impending mail conversion by displaying a popup dialog and waiting for confirmation. This has to be done before we load modules because some of the EShellBackends immediately add GMainContext sources that would otherwise get dispatched during gtk_dialog_run(), and we don't want then dispatched until after the conversion is complete.
* Remove the last remaining usage of GConfMilan Crha2012-06-151-5/+0
|
* Adapt to single-include E-D-S libraries.Matthew Barnes2012-06-041-3/+1
|
* Whitespace cleanup.Matthew Barnes2012-04-021-2/+2
| | | | | Replace 8-space indentation with tab characters, and various other automated cleanups.
* Bug #659756 - Initialize dbus-glib threading for GConfMilan Crha2012-03-161-0/+5
|
* Detect express mode, if we are in Tizen/Dawati.Srinivasa Ragavan2012-02-181-1/+4
|
* Change 'file name' to 'filename' according to the GDP Style GuideAndre Klapper2012-02-171-1/+1
|
* Remove the --debug command-line option.Matthew Barnes2012-02-011-15/+0
| | | | | | This is a silly and misleading option. It gives the impression that it activates extra debugging output, when really it's precisely the same as "evolution &> LOGFILE" and nothing more.
* Add a hidden --version option.Matthew Barnes2011-12-081-0/+13
| | | | Required by GNU Coding Standards.
* Merge branch 'master' into wip/gsettingsRodrigo Moya2011-11-081-0/+3
|\
| * Call e_gdbus_templates_init_main_thread() in main()Milan Crha2011-11-071-0/+3
| |
* | Merge branch 'master' into wip/gsettingsRodrigo Moya2011-10-281-4/+0
|\|
| * Remove g_thread_init() calls.Matthew Barnes2011-10-271-4/+0
| | | | | | | | g_type_init() already calls it, and has for several GLib releases.
* | Merge branch 'master' into wip/gsettingsRodrigo Moya2011-10-241-0/+2
|\|
| * Call g_thread_init() conditionallyMilan Crha2011-10-241-0/+2
| |
* | Build fixesRodrigo Moya2011-10-131-3/+2
| |
* | Migrate most of the shell code to GSettingsRodrigo Moya2011-10-131-36/+25
|/
* Require GLib 2.30.Matthew Barnes2011-09-301-10/+0
| | | | Drop all GLIB_CHECK_VERSION macros.
* Coding style and whitespace cleanup.Matthew Barnes2011-09-041-1/+2
|
* Bug 657836 - Work around g_unix_signal API changes.Matthew Barnes2011-09-011-1/+5
| | | | | | Work around GLib API churn with regard to registering UNIX signal callbacks on the main loop. GLib >= 2.29.5 calls the function one thing, GLib >= 2.29.19 calls it another.
* Bug 650491 - Shell handles forwarding uris to existing process wrongMatthew Barnes2011-05-231-1/+1
| | | | | This adds a "handle-uris" GAction which takes a string array argument, so the URIs can be passed to the primary process verbatim.
* Bug 650524 - Use g_unix_signal_add_watch_full() for SIGTERMColin Walters2011-05-221-22/+19
| | | | | We can't call anything safely except write() inside a signal handler, g_unix_signal_add_watch_full() handles this for us nicely.
* Handle SIGTERM instead of SIGQUIT.Matthew Barnes2011-05-221-9/+9
| | | | SIGQUIT is supposed to produce a core dump. We don't want that.
* Bug 650525 - Don't install a SEGV handlerColin Walters2011-05-221-51/+0
| | | | | Assume the operating system ships with a system-wide crash catching service like ABRT or Apport.
* Coding style and whitespace cleanup.Matthew Barnes2011-05-221-1/+2
|
* Whitespace and coding style cleanups.Matthew Barnes2011-05-081-4/+4
|
* Remove the profiler plugin.Matthew Barnes2011-03-291-4/+0
| | | | | | | This plugin was for developers, but no one uses it anymore. Plus the only profiling hooks left in Evolution were in the MessageList widget, which performs fine. There's better ways to collect profiling data these days anyway (sysprof, systemtap, etc.).
* Port EShell to GtkApplication.Matthew Barnes2011-03-251-9/+23
|
* Coding style and whitespace cleanup.Matthew Barnes2011-01-301-2/+5
|
* Drop backward-compatibility cruft.Matthew Barnes2011-01-251-3/+0
|
* Bug #590245 - 'evolution --force-shutdown' should kill factoriesMilan Crha2010-12-071-4/+40
|
* Clarify command line parameter stringAndre Klapper2010-12-041-1/+2
|
* Bug #597567 - Crash in comp_subject()Milan Crha2010-10-211-0/+8
| | | | Fix works only when compiled with libical 0.46 or later
* Bug 461769 - Add a --force-online command line optionMatthew Barnes2010-10-141-3/+15
| | | | | Use it to override network availability detection as reported by NetworkManager or other network monitoring software.
* Coding style and whitespace cleanup.Matthew Barnes2010-10-041-3/+9
|
* Increase safety on WindowsFridrich Štrba2010-09-151-3/+29
| | | | Call SetDllDirectory() to reduce risk of DLL hijacking, and call SetProcessDEPPolicy() to reduce risk of rogue code execution.
* Re-work my GtkDialog:has-separator workaround.Matthew Barnes2010-09-111-3/+2
| | | | | | | If we're using GTK+ 2.21.8 (where gtk_dialog_set_has_separator() is deprecated but the property is still present and defaults to TRUE), we still need to set the property to FALSE. So instead use g_object_set() up through GTK+ 2.90.6, after which the property itself is gone.
* Work around deprecation of gtk_dialog_set_has_separator()Matthew Barnes2010-09-111-0/+2
| | | | | | Unfortunately the default value for this property is TRUE (bzzt, WRONG!) so we can't just remove the function outright until we require GTK+ 2.22. It was deprecated in GTK+ 2.21.8.
* Coding style and whitespace cleanup.Matthew Barnes2010-08-291-7/+7
|
* Remove the last traces of dbus-glib.Matthew Barnes2010-08-291-1/+0
|
* We are not using dbus-glib anymore, don't call dbus_g_thread_initFridrich Štrba2010-08-051-1/+0
|
* Coding style and whitespace cleanup.Matthew Barnes2010-07-261-7/+7
|
* Add optional clutter support.Srinivasa Ragavan2010-07-261-0/+15
|
* Coding style and whitespace cleanup.Matthew Barnes2010-06-201-2/+2
|
* [win32] Don't run evolution when asked to register handlers.Fridrich Štrba2010-06-181-0/+3
|
* [win32] add --register-handlers and --unregister-handlers optionsFridrich Štrba2010-06-181-2/+16
| | | | and don't tamper with registry unless asked for it explicitely.
* Bug 603468 - Improve handling of --quit optionMatthew Barnes2010-06-131-5/+11
|
* Coding style and whitespace cleanup.Matthew Barnes2010-05-271-2/+2
|
* Merge branch 'express2'Matthew Barnes2010-05-271-0/+12
|\
| * Coding style and whitespace cleanup.Matthew Barnes2010-05-251-2/+2
| |
| * Fix compiler warnings.Matthew Barnes2010-05-251-1/+1
| |
| * Merge branch 'gnome-2-30' into express2Matthew Barnes2010-05-251-7/+43
| |\
| | * [win32] Try to get the default application registration rightFridrich Štrba2010-05-191-3/+3
| | |
| | * Bug 619010 - Mailer's crash avoidance features are brokenMatthew Barnes2010-05-191-0/+3
| | |
| | * [win32] Implement --reinstall, --show-icons, --hide-icons optionsFridrich Štrba2010-05-181-0/+28
| | | | | | | | | | | | to be used by windows default application setting dialogue
| | * [win32] Don't call glib functions before g_thread_init was called andFridrich Štrba2010-05-171-7/+12
| | | | | | | | | | | | register evolution as capable to handle mailto: protocol on startup
| * | Merge branch 'gnome-2-30' into express2Matthew Barnes2010-05-171-0/+9
| |\|
| | * [win32] Set patch to evolution's bindir because some child processesFridrich Štrba2010-05-111-0/+9
| | | | | | | | | | | | need it in some situations.
| * | Store the initial view request and use that to decide whether to showSrinivasa Ragavan2010-04-221-0/+5
| | | | | | | | | | | | startup wizard or not. Show only for mail and not calendar.
| * | Detect MeeGo, and propagate settings variously.Michael Meeks2010-04-121-0/+7
| |/ | | | | | | Adapt widget naming on MeeGo for theming etc.
* | [win32} Register evolution as "Contacts" application and .vcf handlerFridrich Štrba2010-05-191-0/+1
| |
* | [win32] Try to get the default application registration rightFridrich Štrba2010-05-191-3/+3
| |
* | Bug 619010 - Mailer's crash avoidance features are brokenMatthew Barnes2010-05-191-0/+3
| |
* | [win32] Implement --reinstall, --show-icons, --hide-icons optionsFridrich Štrba2010-05-181-0/+28
| | | | | | | | to be used by windows default application setting dialogue
* | [win32] Don't call glib functions before g_thread_init was called andFridrich Štrba2010-05-171-7/+12
| | | | | | | | register evolution as capable to handle mailto: protocol on startup
* | Convert "default-mailer" plugin to an extension.Matthew Barnes2010-05-131-0/+3
| |
* | [win32] Set patch to evolution's bindir because some child processesFridrich Štrba2010-05-111-0/+9
| | | | | | | | need it in some situations.
* | Bug #608766 - Replace pthread with GLib's GThreadMilan Crha2010-04-151-7/+5
| |
* | Giant leap towards GSEAL compliance.Matthew Barnes2010-04-081-7/+8
| |
* | Fix a compiler warning in main.c.Matthew Barnes2010-03-301-1/+1
| |
* | Drop support for migrating from Evolution < 2.0.Matthew Barnes2010-03-301-29/+0
|/ | | | | | | There's too much ancient, crufty code there that we can't realistically support anymore. A workaround for those poor users still on 1.x is to upgrade to some 2.x release first, then upgrade again to 3.x. An error dialog explaining this will be shown at startup.
* Don't use the previous stored default shell type in express mode.Michael Meeks2010-03-171-1/+4
| | | | | This avoids closing the mail, then addressbook, and getting only an addressbook when re-run (with no switchers in express mode).
* Remove some more unnecessary windows workarounds.Fridrich Strba2010-03-151-50/+1
|
* Shell and UI manager cleanups.Matthew Barnes2010-03-141-2/+19
| | | | | | | | | | | | | | | | | | | | | | | | | Replace the EVO_EXPRESS environment variable with an --express command line option. (Note, this adds a new translatable string for --help.) Add an EUIManager class with an "express-mode" property and custom load functions that use our new "express" preprocessor. This replaces the UI manager functions in e-utils.c. (Also going to see if I can get GTK+ to add an "add_ui_from_string" method to GtkUIManagerClass that we can override. Then we could just call gtk_ui_manager_add_ui_from_string() and the preprocessor would automatically do its thing and chain up.) Add an "express-mode" read-only GObject property to EShell. Add e_shell_configure_ui_manager() to e-shell-utils.c. For now this just creates a one-way property binding: EShell:express-mode -> EUIManager:express-mode Call this immediately after e_ui_manager_new(). (EUIManager can't do this itself because it lives too low in the dependency hierarchy and doesn't know about EShell.)
* Remove left-over ORBit2 calls on windowsFridrich Strba2010-03-061-8/+0
|
* Bug 608340 - Help text missing --debug parameterMatthew Barnes2010-01-281-1/+1
|
* Changes in mingw.org last w32api/mingw-rt packages.Fridrich Strba2010-01-281-1/+1
|
* Bug 606342 - PST option not offered in single file importMatthew Barnes2010-01-231-0/+2
|
* Bug 604520 - Create first account window hidden behind main windowMatthew Barnes2010-01-121-2/+2
|
* Coding style and whitespace cleanup.Matthew Barnes2010-01-051-18/+34
|
* Remove some obsolete GConf keys.Matthew Barnes2009-12-191-1/+0
| | | | | | | | | /apps/evolution/mail/display/show_preview /apps/evolution/mail/display/thread_list These keys are no longer needed since we're storing the settings by folder now in ~/.evolution/mail/config/state. To simplify things we use hard-coded defaults: TRUE for PreviewVisible, FALSE for GroupByThreads.
* Move icon theme path setup from main() to EShell.Matthew Barnes2009-12-151-4/+0
| | | | So Anjal picks it up.
* Revise the EShell ref-leak check to not upset Valgrind.Matthew Barnes2009-12-031-13/+11
|
* Add an EShell:module-directory constructor property.Matthew Barnes2009-12-021-0/+1
| | | | | | | | | | | | | | | | | This tells EShell where to look for EModules. Best practice is to define the directory in your CPPFLAGS and then pass it to EShell at instantiation time, like so: Makefile.am: evolution_CPPFLAGS = \ -DMODULEDIR=\""$(moduledir)"\" ... main.c: shell = g_object_new ( E_TYPE_SHELL, "module-directory", MODULEDIR, ...);
* Rename EError to EAlert to match general use betterJonathon Jongsma2009-12-011-1/+0
| | | | | | | | | | The EError mechanism is used both for error dialogs as well as basic alerts or user prompts, so we should give it a more general name which matches this use. This patch also cleans up a few includes of e-alert.h (formerly e-error.h) that were not actually being used. https://bugzilla.gnome.org/show_bug.cgi?id=602963
* Implement a new 'killev' program.Matthew Barnes2009-11-271-19/+3
| | | | | For now this only terminates Evolution, but the same basic approach should also be used with the Evolution-Data-Server D-Bus services.
* Make EShell more subclassable.Matthew Barnes2009-11-271-11/+0
| | | | | | | | Add method pointers to EShellClass for all the EShell signals. Also rework my previous --quit corner case workaround: we'll want to do the full shutdown procedure after all, since the backends have already spun up.
* Add a --quit command-line option.Matthew Barnes2009-11-261-2/+6
| | | | | | | This -asks- an existing Evolution process to quit. It is equivalent to selecting File->Quit in the main window. It does not kill the process. My plan is to use this as part of a new --force-shutdown implementation.
* Add a --geometry command-line option.Matthew Barnes2009-11-261-0/+4
| | | | | Applies the user's window geometry string to the first main window. Suggested in bug #529565.
* Kill Evolution's icon cache once and for all.Matthew Barnes2009-11-201-3/+4
| | | | | GTK+ already does this. Eliminates e_icon_factory_init() and e_icon_factory_shutdown().
* Bug 589153 - Use GtkBuilder instead of libgladeMatthew Barnes2009-11-171-2/+0
|
* Bug #588093 - Allow import of local files from command lineMilan Crha2009-11-121-1/+4
|
* Rearrange variables and Windows-only code to avoid warningTor Lillqvist2009-11-111-10/+11
|
* Kill e-cursor(s) (both of them).Matthew Barnes2009-11-101-4/+0
|
* Bug #599740 - Crashing in g_thread_initMilan Crha2009-10-271-1/+2
|
* Bug 596952 - Offline mode does not stick when set from command lineMatthew Barnes2009-10-081-9/+15
|
* Clean up includes in main.c.Matthew Barnes2009-10-081-27/+17
|
* Trim unused or unnecessary bits from the import framework.Matthew Barnes2009-09-261-2/+0
|
* Kill the killev program, and the whole tools directory.Matthew Barnes2009-09-181-9/+30
| | | | The --force-shutdown option now simply runs "pkill evolution".
* Restore the alarm notify daemon.Matthew Barnes2009-09-181-1/+1
| | | | | Convert evolution-alarm-notify to an autostart program, add a .desktop file for it, and use libunique to ensure only one instance is running.
* Bug #590707 - Initialize DBus threading on startMilan Crha2009-09-101-0/+6
|
* Start migration -after- loading all modules and plugins.Matthew Barnes2009-09-021-0/+5
|
* Simplify EPlugin loading at startup.Matthew Barnes2009-08-301-22/+18
| | | | | | | | | | | | | - Require all EPlugin and EPluginHook subtypes be registered before loading plugins. This drastically simplifies the EPlugin/EPluginHook negotiation. - Turn most EPluginHook subtypes into GTypeModules and register their types from an e_module_load() function (does not include shell hooks). - Convert EPluginLib and the Mono and Python bindings to GTypeModules and register their types from an e_module_load() function, and kill EPluginTypeHook.
* Exit if no command-line URIs are handled.Matthew Barnes2009-08-251-3/+4
|
* Stop killing evolution-data-server services.Matthew Barnes2009-08-231-69/+0
| | | | That includes startup and --force-shutdown.
* Bug 571488 - Migrate from deprecated gnome_sound to libcanberraH.Habighorst2009-08-231-3/+0
|
* Remove an unnecessary libgnomeui include.Matthew Barnes2009-08-181-1/+0
|
* Fix excessive whitespace.Matthew Barnes2009-07-141-19/+14
|
* Fix a problem with EShell initialization.Matthew Barnes2009-07-121-1/+1
|
* Implement the shutdown protocol and stub in session management.Matthew Barnes2009-07-111-132/+10
| | | | | The shutdown protocol is modelled after online/offline preparation. Session management code is copied from libegg. Not yet used.
* Merge branch 'master' into kill-bonoboMatthew Barnes2009-07-111-0/+28
|\ | | | | | | | | | | | | | | | | | | | | Conflicts: addressbook/util/addressbook.h calendar/gui/e-week-view-main-item.c configure.ac e-util/Makefile.am mail/em-account-editor.c mail/em-folder-selection-button.c shell/e-shell.c
| * [win32] When started from a console, get console output (Windows XP orFridrich Strba2009-07-041-0/+28
| | | | | | | | later only).
| * More code cleanup.Matthew Barnes2009-06-021-1/+1
| |
| * Prefer GLib basic types over C types.Matthew Barnes2009-05-291-9/+9
| |
| * Remove trailing whitespace, again.Matthew Barnes2009-05-291-3/+3
| |
* | Get the "startup-wizard" plugin working again.Matthew Barnes2009-06-301-10/+8
| |
* | More code cleanup.Matthew Barnes2009-06-021-1/+1
| |
* | Prefer GLib basic types over C types.Matthew Barnes2009-05-271-6/+6
| |
* | Merge branch 'master' into kill-bonoboMatthew Barnes2009-05-271-3/+4
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: a11y/widgets/ea-combo-button.c a11y/widgets/ea-combo-button.h addressbook/gui/component/addressbook-component.c addressbook/gui/component/addressbook-component.h addressbook/gui/component/addressbook-view.c addressbook/gui/component/addressbook-view.h addressbook/gui/component/component-factory.c addressbook/gui/widgets/e-addressbook-view.c addressbook/gui/widgets/eab-contact-display.c addressbook/gui/widgets/eab-gui-util.h addressbook/gui/widgets/eab-menu.c addressbook/gui/widgets/eab-menu.h addressbook/gui/widgets/eab-popup-control.c addressbook/gui/widgets/eab-popup-control.h addressbook/gui/widgets/eab-popup.c addressbook/gui/widgets/eab-popup.h calendar/gui/cal-search-bar.c calendar/gui/calendar-commands.c calendar/gui/calendar-component.c calendar/gui/comp-editor-factory.c calendar/gui/comp-editor-factory.h calendar/gui/control-factory.c calendar/gui/dialogs/comp-editor.c calendar/gui/e-cal-component-memo-preview.c calendar/gui/e-cal-component-memo-preview.h calendar/gui/e-calendar-table.c calendar/gui/e-memo-table.c calendar/gui/e-memos.c calendar/gui/e-tasks.c calendar/gui/gnome-cal.c calendar/gui/gnome-cal.h calendar/gui/itip-bonobo-control.c calendar/gui/itip-bonobo-control.h calendar/gui/main.c calendar/gui/memos-component.c calendar/gui/memos-control.c calendar/gui/memos-control.h calendar/gui/migration.c calendar/gui/migration.h calendar/gui/tasks-component.c calendar/gui/tasks-control.c calendar/importers/main.c composer/Makefile.am composer/e-composer-header-table.c composer/e-composer-header.c composer/e-composer-header.h composer/e-composer-name-header.c composer/e-composer-private.c composer/e-composer-text-header.c composer/e-msg-composer.c composer/e-msg-composer.h e-util/e-corba-utils.h e-util/e-logger.c e-util/e-logger.h e-util/e-util-labels.c e-util/e-util-labels.h em-format/em-format.c mail/Makefile.am mail/e-mail-shell-migrate.c mail/em-account-editor.c mail/em-account-editor.h mail/em-composer-prefs.c mail/em-composer-utils.c mail/em-composer-utils.h mail/em-folder-browser.c mail/em-folder-tree-model.c mail/em-folder-tree.c mail/em-folder-tree.h mail/em-folder-utils.c mail/em-folder-utils.h mail/em-folder-view.c mail/em-format-html-display.c mail/em-format-html.c mail/em-mailer-prefs.c mail/em-mailer-prefs.h mail/em-message-browser.c mail/em-message-browser.h mail/em-network-prefs.h mail/em-popup.c mail/em-utils.c mail/importers/Makefile.am mail/mail-component-factory.c mail/mail-component.c mail/mail-config-factory.c mail/mail-config-factory.h mail/mail-config.c mail/mail-dialogs.glade mail/mail-types.h plugins/calendar-weather/calendar-weather.c plugins/mail-account-disable/mail-account-disable.c plugins/select-one-source/select-one-source.c po/POTFILES.in shell/e-component-registry.c shell/e-component-registry.h shell/e-component-view.c shell/e-component-view.h shell/e-corba-config-page.c shell/e-corba-config-page.h shell/e-shell-constants.h shell/e-shell-settings-dialog.c shell/e-shell-settings-dialog.h shell/e-shell-window-commands.c shell/e-shell-window.c shell/e-shell.h shell/e-sidebar.c shell/e-sidebar.h shell/e-user-creatable-items-handler.c shell/e-user-creatable-items-handler.h shell/es-menu.c shell/es-menu.h shell/evolution-component.h shell/evolution-config-control.c shell/evolution-config-control.h shell/evolution-listener.c shell/evolution-listener.h shell/evolution-shell-component-utils.c shell/evolution-shell-component-utils.h shell/importer/evolution-importer-client.c shell/importer/evolution-importer-client.h shell/importer/evolution-importer-listener.c shell/importer/evolution-importer-listener.h shell/importer/evolution-importer.c shell/importer/evolution-importer.h shell/importer/evolution-intelligent-importer.c shell/importer/evolution-intelligent-importer.h shell/importer/intelligent.c shell/main.c shell/test/evolution-test-component.c shell/test/evolution-test-component.h widgets/menus/gal-view-instance.c widgets/menus/gal-view-menus.c widgets/menus/gal-view-menus.h widgets/misc/Makefile.am widgets/misc/e-activity-handler.c widgets/misc/e-activity-handler.h widgets/misc/e-charset-picker.c widgets/misc/e-combo-button.c widgets/misc/e-combo-button.h widgets/misc/e-config-page.h widgets/misc/e-dropdown-button.c widgets/misc/e-dropdown-button.h widgets/misc/e-filter-bar.c widgets/misc/e-info-label.c widgets/misc/e-info-label.h widgets/misc/e-multi-config-dialog.c widgets/misc/e-multi-config-dialog.h widgets/misc/e-search-bar.c widgets/misc/e-search-bar.h widgets/misc/e-task-bar.c widgets/misc/e-task-bar.h widgets/misc/e-task-widget.c widgets/misc/e-task-widget.h widgets/misc/test-dropdown-button.c widgets/misc/test-error.c widgets/misc/test-info-label.c widgets/table/e-table-example-1.c
| * | Remove trailing whitespace, again.Matthew Barnes2009-05-271-3/+3
| |/
| * Fix compiler warnings in shell.Matthew Barnes2009-05-261-2/+4
| |
| * e-util/e-plugin.c e-util/e-plugin.h EPlugins must be loaded after BonoboPhilip Van hoof2009-01-121-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | 2009-01-12 Philip Van hoof <philip@codeminded.be> * e-util/e-plugin.c * e-util/e-plugin.h * shell/main.c: EPlugins must be loaded after Bonobo init, else variables like `session` are not available for plugin's initialization functions. (Fixes Bug #565681) svn path=/trunk/; revision=37052
| * Remove unneeded #include <libgnome/gnome-util.h>.Matthew Barnes2009-01-111-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2009-01-10 Matthew Barnes <mbarnes@redhat.com> * addressbook/gui/contact-editor/e-contact-editor-address.c: * addressbook/gui/contact-editor/e-contact-editor-fullname.c: * addressbook/gui/contact-editor/e-contact-editor-im.c: * addressbook/gui/widgets/e-addressbook-view.c: * addressbook/printing/e-contact-print.c: * calendar/gui/calendar-commands.c: * calendar/gui/e-cal-list-view.c: * calendar/gui/e-day-view.c: * calendar/gui/e-itip-control.c: * calendar/gui/e-meeting-list-view.c: * calendar/gui/e-meeting-store.c: * calendar/gui/e-week-view.c: * calendar/gui/gnome-cal.c: * calendar/gui/memos-control.c: * calendar/gui/tasks-control.c: * e-util/e-dialog-utils.c: * mail/em-folder-view.c: * mail/importers/mail-importer.c: * shell/e-shell.c: * shell/evolution-shell-component-utils.c: * shell/importer/intelligent.c: * shell/main.c: * widgets/menus/gal-view-collection.c: * widgets/menus/gal-view-instance.c: Remove unneeded #include <libgnome/gnome-util.h>. svn path=/trunk/; revision=37036
| * ** Related to bug #562155Matthew Barnes2008-12-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2008-12-28 Matthew Barnes <mbarnes@redhat.com> ** Related to bug #562155 * shell/main.c (idle_cb): Only call e_shell_set_crash_recovery() if the EShell Bonobo object was constructed successfully, otherwise it will be NULL. This fixes a warning shown in the terminal output of bug #562155, but the bug is not reproducible so it's not clear whether this fixes the bug. svn path=/trunk/; revision=36939
| * Fix memory leak. (Fixes bug #565628).Ignacio Casal Quinteiro2008-12-261-0/+2
| | | | | | | | | | | | | | | | | | | | 2008-12-25 Ignacio Casal Quinteiro <nacho.resa@gmail.com> * shell/main.c: Fix memory leak. (Fixes bug #565628). svn path=/trunk/; revision=36932
| * ** Fixes bug #563250Matthew Barnes2008-12-101-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2008-12-10 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #563250 * e-util/e-util.c (e_get_accels_filename): New function returns the filename where custom keyboard accelerators are stored. Currently only applies to the various editor windows in Evolution. * shell/main.c (main): Load on startup and save on shutdown, custom keyboard accelerators. svn path=/trunk/; revision=36864
| * ** Fixes bug #557581Matthew Barnes2008-11-081-7/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2008-11-07 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #557581 * configure.in: Break up the version definitions such that we can calculate the latest stable version and pass a STABLE_VERSION definition to shell/main.c. * shell/main.c: Replace DEVELOPMENT with STABLE_VERSION, which actually defines the latest stable version (e.g. 2.24). STABLE_VERSION is only defined if the current version is _unstable_ (e.g. 2.25). * shell/main.c (show_development_warning): Use STABLE_VERSION instead of hard-coding the version number. svn path=/trunk/; revision=36761
| * Change License from GPL to LGPL.Sankarasivasubramanian Pasupathilingam2008-09-301-13/+13
| | | | | | | | svn path=/trunk/; revision=36502
| * ** Fixes bug #508732Matthew Barnes2008-08-181-96/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2008-08-18 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #508732 * shell/e-shell.c: Add a "crash_recovery" flag, with accessor functions for it. * shell/e-shell-window (init_view): Check and reset the "crash_recovery" flag before creating a new shell view. The components can use this flag to take steps to recover from the previous crash. * shell/apps_evolution_shell.schemas.in: Remove the "skip_recovery_dialog" and "recovery" keys. * shell/Evolution-Component.idl (createView): Add a "select_item" boolean parameter. * shell/main.c: Kill the crash recovery dialog. Instead just set the crash recovery flag in e-shell appropriately. * mail/mail-component.c (impl_createView): Add a "select_item" argument for crash recovery, which we forward to EMFolderBrowser as a "suppress_message_selection" flag. * mail/em-folder-browser.c (emfb_set_folder): Suppress automatic message selection if we are recovering from a crash. * addressbook/gui/component/addressbook-component.c (impl_createView): * calendar/gui/calendar-component.c (impl_createView): * calendar/gui/memos-component.c (impl_createView): * calendar/gui/tasks-component.c (impl_createView): Add a "select_item" argument for crash recovery, which these components do not use. * help/C/evolution.xml: Remove the bit about crash recovery. svn path=/trunk/; revision=36009
| * Bug 543758 - Never mark empty strings for translationsTor Lillqvist2008-07-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | 2008-07-19 Tor Lillqvist <tml@novell.com> Bug 543758 - Never mark empty strings for translations * main.c (main): Change _("") to explicit gettext ("") to avoid potentially confusing translation tools or translators. svn path=/trunk/; revision=35759
* | Convert EShellModule to EShellBackendMatthew Barnes2009-05-071-2/+2
| | | | | | | | | | | | | | | | Split the GTypeModule loader out of EShellModule as EModule, and rename EShellModule to EShellBackend. Backends (formerly modules) should now subclass EShellBackend. This commit converts EShell but breaks all the shell backends.
* | Saving progress on a massive attachment handling rewrite.Matthew Barnes2009-03-211-7/+9
| | | | | | | | svn path=/branches/kill-bonobo/; revision=37465
* | Kill EDropdownButton.Matthew Barnes2009-02-211-16/+11
| | | | | | | | | | | | Migrate off of gnome_program_init(). svn path=/branches/kill-bonobo/; revision=37303
* | Rename EShell:online-mode to EShell:online and update docs.Matthew Barnes2009-02-191-5/+5
| | | | | | | | | | | | | | Use EBindings instead of a notify callback to keep other widgets and actions synchronized with EShell:online. Cleaner and less error prone. svn path=/branches/kill-bonobo/; revision=37293
* | When invoking Evolution with URIs on the command-line (e.g. mailto:),Matthew Barnes2009-01-291-9/+6
| | | | | | | | | | | | terminate after all the windows for those URIs have been closed. svn path=/branches/kill-bonobo/; revision=37157
* | Add unique-1.0 requirement (blessed external dependency).Matthew Barnes2009-01-291-54/+111
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make EShell a subclass of UniqueApp and handle single-instance negotiation. When another Evolution process is running: - Running "evolution" will simply present the existing windows. - Running "evolution -c <view>" will open a shell window set to <view>. - Running "evolution <uri>" will open an appropriate window for <uri>. The second process will then terminate immediately. svn path=/branches/kill-bonobo/; revision=37147
* | Fix a runtime warning.Matthew Barnes2009-01-181-1/+0
| | | | | | | | svn path=/branches/kill-bonobo/; revision=37094
* | Hack GtkIconTheme so we can reference category icons as named icons.Matthew Barnes2009-01-181-0/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Necessary for EActionComboBox, since GtkActions can only handle named or stock icons. Hopefully this is just a temporary hack. Eventually we should make the category icons themeable. Kill the "mail-account-disable" plugin and integrate it properly. More dead plugins to follow... Don't show disabled menu items in pop-up context menus. It does the user no good to see things he CAN'T do with the object he clicked on. svn path=/branches/kill-bonobo/; revision=37093
* | Merge revisions 37047:37074 from trunk.Matthew Barnes2009-01-151-0/+8
| | | | | | | | svn path=/branches/kill-bonobo/; revision=37075
* | Merge revisions 36866:37046 from trunk.Matthew Barnes2009-01-121-1/+2
| | | | | | | | svn path=/branches/kill-bonobo/; revision=37050
* | Tweak the EShell API.Matthew Barnes2009-01-081-4/+3
| | | | | | | | | | | | | | Disable File -> Close Window when there's only one window. Replace EMMessageBrowser with EMailBrowser. svn path=/branches/kill-bonobo/; revision=37009
* | Merge revisions 36811:36865 from trunk.Matthew Barnes2008-12-111-0/+3
| | | | | | | | svn path=/branches/kill-bonobo/; revision=36867
* | Merge revisions 36737:36810 from trunk.Matthew Barnes2008-11-241-7/+12
| | | | | | | | svn path=/branches/kill-bonobo/; revision=36811
* | Rearranged some of the addressbook code to try and eliminate some circularMatthew Barnes2008-11-141-9/+15
| | | | | | | | | | | | | | | | dependencies in our libraries. The circular dependency between the composer and the mail module is still causing me headaches. And it doesn't help that the addressbook and calendar also want to link to the composer. svn path=/branches/kill-bonobo/; revision=36782
* | Merge revisions 36016:36533 from trunk.Matthew Barnes2008-10-021-13/+13
| | | | | | | | svn path=/branches/kill-bonobo/; revision=36534
* | Begin documenting the new shell design.Matthew Barnes2008-09-151-2/+2
| | | | | | | | svn path=/branches/kill-bonobo/; revision=36337
* | Fix some bugs in the way the shell widgets get initialized.Matthew Barnes2008-09-091-2/+1
| | | | | | | | svn path=/branches/kill-bonobo/; revision=36279
* | Progress update:Matthew Barnes2008-09-091-8/+21
| | | | | | | | | | | | | | | | - Merge ETaskBar into EShellTaskbar. - Remember the last view, and make --component work. svn path=/branches/kill-bonobo/; revision=36278
* | Progress update:Matthew Barnes2008-08-271-2/+0
| | | | | | | | | | | | | | | | | | - Further refinements of the shell API. - Kill ESMenu and EUserCreatableItemsHandler. - Start ripping apart the addressbook component. svn path=/branches/kill-bonobo/; revision=36093
* | Progress update:Matthew Barnes2008-08-241-16/+5
| | | | | | | | | | | | | | | | | | | | | | | | - Get the "New" button and menu working. - Add a GtkMenuToolButton subclass called EMenuToolButton, which does some behind-the-scenes stuff to make the "New" button work properly. - Kill EComboButton and its associated a11y widget. svn path=/branches/kill-bonobo/; revision=36045
* | Progress update:Matthew Barnes2008-08-231-55/+113
| | | | | | | | | | | | | | | | | | | | - Discard libnm-glib method of monitoring network connectivity. - Decided to make EShell a singleton GObject after all. Makes the design cleaner, despite having to pass a singleton instance around. - Make the switcher button style persistent. svn path=/branches/kill-bonobo/; revision=36043
* | Merge revisions 35993:36015 from trunk.Matthew Barnes2008-08-191-94/+4
| | | | | | | | | | | | Adapt recent "crash recovery" changes to new architecture. svn path=/branches/kill-bonobo/; revision=36018
* | Demonstrate loading the test module.Matthew Barnes2008-08-141-1/+3
| | | | | | | | svn path=/branches/kill-bonobo/; revision=35983
* | Work through more compilation errors.Matthew Barnes2008-08-091-126/+45
| | | | | | | | | | | | Rewrite EMultiConfigDialog to not use ETable. svn path=/branches/kill-bonobo/; revision=35942
* | Merge revisions 35747:35930 from trunk.Matthew Barnes2008-08-081-1/+1
| | | | | | | | svn path=/branches/kill-bonobo/; revision=35931
* | Disable all components and plugins. Begin rewriting the shell.Matthew Barnes2008-07-171-1/+1
|/ | | | svn path=/branches/kill-bonobo/; revision=35748
* updated novell copyright notices (left others alone)Jeffrey Stedfast2008-06-211-1/+1
| | | | svn path=/trunk/; revision=35665
* ** Allow evolution to build with G_DISABLE_SINGLE_INCLUDES andMatthew Barnes2008-06-061-13/+1
| | | | | | | | | | 2008-06-06 Matthew Barnes <mbarnes@redhat.com> ** Allow evolution to build with G_DISABLE_SINGLE_INCLUDES and GTK_DISABLE_SINGLE_INCLUDES defined. (#536637) svn path=/trunk/; revision=35606
* ** Fixes bug #525241 (EPluginUI)Matthew Barnes2008-05-091-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2008-05-08 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #525241 (EPluginUI) * e-util/Makefile.am: Add e-plugin-ui.[ch]. * e-util/e-plugin.h (EPluginClass): Add a "get_symbol" method for extracting arbitrary symbols from an EPlugin. Implementation of the method is optional. * e-util/e-plugin.c (e_plugin_get_symbol): New function invokes the new "get_symbol" EPlugin method. * e-util/e-plugin.c (epl_get_symbol): New function implements the new "get_symbol" EPlugin method. It extracts the given symbol name from the GModule. * e-util/e-plugin-ui.[ch]: New EPluginHook subclass that allows plugins to extend menus, toolbars, and popups that are managed by GtkUIManager instead of BonoboUI. Should eventually replace EMenu/EPopup. * shell/main.c (main): Register the EPluginUIHook type. * composer/e-msg-composer.c (msg_composer_destroy), (msg_composer_init): Rip out the EMenu logic. * composer/e-msg-composer.c (msg_composer_init): Register the GtkUIManager with EPluginUI. * plugins/face/Makefile.am: * plugins/face/org-gnome-face-ui.xml: Remove org-gnome-face-ui.xml (obsolete). * plugins/face/face.c (e_plugin_ui_init): Initialization callback for EPluginUI. Adds a "face" action to the EMsgComposer instance's "composer" action group. * plugins/face/org-gnome-face.eplug.xml: Replace the "bonobomenu" hook definition with a new one for EPluginUI. Include the UI definition inline. svn path=/trunk/; revision=35485
* If no message catalog is installed for the current locale language, don'tTor Lillqvist2008-05-081-0/+11
| | | | | | | | | | | | 2008-05-08 Tor Lillqvist <tml@novell.com> * main.c (main) [Win32]: If no message catalog is installed for the current locale language, don't bother with the localisations provided by other things then either. Reset thread locale to "en-US" and C library locale to "C" to ensure that. svn path=/trunk/; revision=35479
* Changed stable version to 2.22.1 in Beta version warning messageAkhil Laddha2008-04-291-1/+1
| | | | | | * shell/main.c : Changed stable version to 2.22.1 in Beta version warning message svn path=/trunk/; revision=35433
* Move the call to set_paths() on Windows earlier beforeTor Lillqvist2008-03-041-4/+4
| | | | | | gnome_program_init() so that it affects gconfd-2. svn path=/trunk/; revision=35130
* Drop the call to gtk_rc_parse_string() to set gtk-fallback-icon-theme =Tor Lillqvist2008-03-041-1/+0
| | | | | | | | | | | | | | 2008-03-03 Tor Lillqvist <tml@novell.com> * main.c (main) [Win32]: Drop the call to gtk_rc_parse_string() to set gtk-fallback-icon-theme = "gnome". Instead just bundle a suitable gtkrc with Evolution. And actually what we want seems to get Tango icons seems to be gtk-fallback-icon-theme = "Tango", and no mention of the gnome icon theme at all in gtkrc. (It is still used, though.) svn path=/trunk/; revision=35126
* On Windows, set PATH to include Evolution's "bin" folder and theTor Lillqvist2008-03-031-1/+62
| | | | | | | | | | | 2008-03-03 Tor Lillqvist <tml@novell.com> * main.c: On Windows, set PATH to include Evolution's "bin" folder and the "lib/evolution/$(BASE_VERSION)/components" folder. Set BONOBO_ACTIVATION_PATH to the "lib/bonobo/servers" folder svn path=/trunk/; revision=35121
* Committing the build fix that comes up if DEVELOPMENT is enabled.Srinivasa Ragavan2008-03-021-3/+4
| | | | | | | | | 2008-03-02 Srinivasa Ragavan <sragavan@novell.com> * main.c: (main): Committing the build fix that comes up if DEVELOPMENT is enabled. svn path=/trunk/; revision=35104
* Add commands to kill recent versions of evolution-data-server.Matthew Barnes2008-02-141-0/+2
| | | | | | | | | | 2008-02-13 Matthew Barnes <mbarnes@redhat.com> * main.c (kill_dataserver): Add commands to kill recent versions of evolution-data-server. svn path=/trunk/; revision=35008
* Change Crash Recovery to Crash detection.Srinivasa Ragavan2008-01-311-1/+1
| | | | | | | | | | | | 2008-01-30 Srinivasa Ragavan <sragavan@novell.com> * apps_evolution_shell.schemas.in: Change Crash Recovery to Crash detection. * main.c: (show_recovery_warning): svn path=/trunk/; revision=34934
* ** Fix for bug #219197Milan Crha2008-01-031-0/+19
| | | | | | | | | | | | | | | | | 2008-01-03 Milan Crha <mcrha@redhat.com> ** Fix for bug #219197 * e-shell.h: * e-shell.c: (e_shell_can_quit), (e_shell_do_quit), (e_shell_quit): Call of e_shell_quit divided into two functions, one to check if quit is acceptable by all components and second to do quit. * main.c: (gnome_master_client_save_yourself_cb), (gnome_master_client_die_cb), (main): Quit application when session dies. svn path=/trunk/; revision=34754
* ** Fix for bug #502501Srinivasa Ragavan2007-12-101-1/+1
| | | | | | | | | | | 2007-12-10 Srinivasa Ragavan <sragavan@novell.com> ** Fix for bug #502501 * main.c: (show_recovery_warning): Re use the existing string. svn path=/trunk/; revision=34683
* ** Add basic support for crash recoverySrinivasa Ragavan2007-12-051-1/+99
| | | | | | | | | | | | | | 2007-12-05 Srinivasa Ragavan <sragavan@novell.com> ** Add basic support for crash recovery * apps_evolution_shell.schemas.in: Keys to recover and recovery dialog. * e-shell.c: (e_shell_quit): Delete the lock while quitting. * main.c: (show_recovery_warning), (idle_cb): Create lock and also show the warning dialog. svn path=/trunk/; revision=34652
* ** Remove trailing whitespace from source code.Matthew Barnes2007-11-151-14/+14
| | | | | | | | | 2007-11-14 Matthew Barnes <mbarnes@redhat.com> ** Remove trailing whitespace from source code. svn path=/trunk/; revision=34537
* Remove the version. Update the stable version.Srinivasa Ragavan2007-10-291-1/+1
| | | | | | | | | | 2007-10-29 Srinivasa Ragavan <sragavan@novell.com> * GNOME_Evolution_Shell.server.in.in: Remove the version. * main.c: (show_development_warning): Update the stable version. svn path=/trunk/; revision=34444
* ** Fix for bug #471791 (Move away from asserts to g_ret*)Srinivasa Ragavan2007-09-031-2/+2
| | | | svn path=/trunk/; revision=34159
* Update FSF address in header comments (#469886). Patch from TobiasMatthew Barnes2007-09-021-2/+2
| | | | | | | | | | 2007-09-02 Matthew Barnes <mbarnes@redhat.com> * Update FSF address in header comments (#469886). Patch from Tobias Mueller. svn path=/trunk/; revision=34151
* Added a command line option to disable preview/selection for crash on select.Srinivasa Ragavan2007-08-081-2/+10
| | | | svn path=/trunk/; revision=33967
* ** Fix for bug #448201 from Gabor KelemenSrinivasa Ragavan2007-06-181-0/+2
| | | | svn path=/trunk/; revision=33703
* ** Fix for bug #386503 from Matthew BarnesSrinivasa Ragavan2007-06-031-1/+1
| | | | svn path=/trunk/; revision=33647
* Fix file descriptor leaksJules Colding2007-05-291-1/+1
| | | | svn path=/trunk/; revision=33598
* Bump stable version recommendation from 2.8.1 to 2.10.1.Matthew Barnes2007-05-021-1/+1
| | | | | | | | | | 2007-05-01 Matthew Barnes <mbarnes@redhat.com> * shell/main.c (show_development_warning): Bump stable version recommendation from 2.8.1 to 2.10.1. svn path=/trunk/; revision=33468
* ** Fixes bug #433005 (patch from Daniel Gryniewicz)Matthew Barnes2007-04-251-0/+1
| | | | | | | | | | | | | 2007-04-24 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #433005 (patch from Daniel Gryniewicz) * shell/main.c: #include <gtk/gtkcheckbutton.h> * widgets/misc/e-task-widget.c: #include "e-spinner.h" svn path=/trunk/; revision=33455
* Fix build breaksSrinivasa Ragavan2007-04-231-1/+2
| | | | svn path=/trunk/; revision=33446
* Fix for bug #271851Srinivasa Ragavan2007-04-231-1/+5
| | | | svn path=/trunk/; revision=33444
* Massive code cleanup (bug #429422)Matthew Barnes2007-04-201-1/+0
| | | | svn path=/trunk/; revision=33432
* ** Fixes bug #419524Matthew Barnes2007-03-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | 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
* ** Fixes bug #419469 - Miscellaneous main.c cleanupsMatthew Barnes2007-03-201-78/+54
| | | | | | | | | | | | | | | | | | | | | | | 2007-03-20 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #419469 - Miscellaneous main.c cleanups * shell/main.c (kill_dataserver): Kill evolution-data-server-1.8. * shell/main.c (show_development_warning): Call gtk_dialog_run() instead of listening for a "response" signal. Pass the checkbox state back to main() and let main() set the "show_dialog_warning" GConf key. * shell/main.c (open_uris), (idle_cb), (main): Use the remaining_args string vector directly instead of needlessly building a GSList out of it. * shell/main.c (main): Manage a reference to the default GConf client and pass it to the functions that need it. svn path=/trunk/; revision=33318
* ** Fixes bug #360946Matthew Barnes2007-02-131-7/+1
| | | | | | | | | | | | | | 2007-02-12 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #360946 shell/e-shell-window-commands.c (command_about): Migrate to GtkAboutDialog, use "evolution" for the icon name, add a website link. shell/main.c (main): Set default window icon name to "evolution". svn path=/trunk/; revision=33212
* Register import eplugin type. Fixes bug #372528.Chris Halls2006-12-031-0/+2
| | | | | | | | | 2006-11-29 Chris Halls <halls@debian.org> * main.c: Register import eplugin type. Fixes bug #372528. svn path=/trunk/; revision=33033
* Update last stable version.Harish Krishnaswamy2006-10-171-1/+1
| | | | | | | | | 2006-10-17 Harish Krishnaswamy <kharish@novell.com> * main.c: (show_development_warning): Update last stable version. svn path=/trunk/; revision=32903
* update last stable version number from 2.6.3 to 2.8.0Andre Klapper2006-09-141-1/+1
| | | | | | | | 2006-09-14 Andre Klapper <a9016009@gmx.de> * main.c: update last stable version number from 2.6.3 to 2.8.0 svn path=/trunk/; revision=32764
* ** Fix for bug #334821 by Tollef Fog HeenSrinivasa Ragavan2006-08-231-1/+2
| | | | svn path=/trunk/; revision=32642
* update last stable version number from 2.6.2 to 2.6.3Andre Klapper2006-08-021-1/+1
| | | | | | | | 2006-08-02 Andre Klapper <a9016009@gmx.de> * main.c: update last stable version number from 2.6.2 to 2.6.3 svn path=/trunk/; revision=32464
* update last stable version number from 2.6.1 to 2.6.2Andre Klapper2006-06-171-1/+1
| | | | | | | | 2006-06-17 Andre Klapper <a9016009@gmx.de> * main.c: update last stable version number from 2.6.1 to 2.6.2 svn path=/trunk/; revision=32164
* update last stable version number from 2.4.2.1 to 2.6.1Andre Klapper2006-04-271-1/+1
| | | | | | | 2006-04-27 Andre Klapper <a9016009@gmx.de> * main.c: update last stable version number from 2.4.2.1 to 2.6.1 svn path=/trunk/; revision=31915
* add eds-1.4 and eds-1.6 to the list of old instances.Harish Krishnaswamy2006-04-241-0/+2
| | | | | | | | | 2006-04-24 Harish Krishnaswamy <kharish@novell.com> * main.c: (kill_dataserver): add eds-1.4 and eds-1.6 to the list of old instances. svn path=/trunk/; revision=31883
* Replaced popt with GOption APIPhilip Van Hoof2006-04-191-34/+36
| | | | | | | | 2006-04-19 Philip Van Hoof <pvanhoof@gnome.org> * shell/main.c: Replaced popt with GOption API svn path=/trunk/; revision=31833
* On Win32, set the gtk-fallback-icon-theme to "gnome".Tor Lillqvist2006-02-211-0/+4
| | | | | | | | | 2006-02-21 Tor Lillqvist <tml@novell.com> * main.c (main): On Win32, set the gtk-fallback-icon-theme to "gnome". svn path=/trunk/; revision=31553
* On Win32, finally call link_shutdown() (from ORBit2/linc2), otherwise weTor Lillqvist2006-02-211-1/+6
| | | | | | | | | | | 2006-02-21 Tor Lillqvist <tml@novell.com> * main.c (main): On Win32, finally call link_shutdown() (from ORBit2/linc2), otherwise we hang with the link_io_thread still running (blocked in g_poll()). Sigh, the linc2 code is a mystery. Why this is necessary I have no idea. svn path=/trunk/; revision=31550
* Remove unused code and fix format specifiers in some cases.Kjartan Maraas2006-01-301-3/+0
| | | | | | | | | | | | | | | 2006-01-29 Kjartan Maraas <kmaraas@gnome.org> * e-corba-config-page.c: (e_corba_config_page_class_init): * e-shell-folder-title-bar.c: (e_shell_folder_title_bar_construct): * e-shell-window.c: (init_view): * e-shell.c: (detect_version), (e_shell_construct), (e_shell_new), (e_shell_attempt_upgrade), (e_shell_create_window), (e_shell_save_settings): * main.c: (idle_cb): Remove unused code and fix format specifiers in some cases. svn path=/trunk/; revision=31367
* s/don't/do not/ string change. Fixes #325276.Harish Krishnaswamy2006-01-291-1/+1
| | | | | | | | | 2006-01-29 Harish Krishnaswamy <kharish@novell.com> * main.c: (show_development_warning): s/don't/do not/ string change. Fixes #325276. svn path=/trunk/; revision=31339
* updated Evolution release number in unstable warning popupAndre Klapper2005-12-211-1/+1
| | | | | | | 2005-12-20 Andre Klapper <a9016009@gmx.de> * main.c: updated Evolution release number in unstable warning popup svn path=/trunk/; revision=30907
* Use libedataserver's e_xml_parse_file() instead of xmlParseFile()Tor Lillqvist2005-12-181-12/+16
| | | | | | | | | | | | | | | | | | | | | 2005-12-17 Tor Lillqvist <tml@novell.com> * e-config-upgrade.c: Use libedataserver's e_xml_parse_file() instead of xmlParseFile() directly. * e-shell.c * e-shell-importer.c: Use GLib API when applicable. * e-shell-importer.c * e-shell-window.c: Construct pathname of glade file at run-time. * e-shell-window-commands.c: Include e-util-private.h for Win32 redefinition of EVOLUTION_DATADIR. * main.c: No SIGSEGV handling on Win32. (main): Drop unused evolution_directory variable. svn path=/trunk/; revision=30849
* Update version and bugzilla information.Harish Krishnaswamy2005-10-251-2/+2
| | | | | | | | | 2005-10-25 Harish Krishnaswamy <kharish@novell.com> * main.c: (show_development_warning): Update version and bugzilla information. svn path=/trunk/; revision=30560
* Added widgets in INCLUDES.Kaushal Kumar2005-06-231-1/+1
| | | | | | | | | | | | 2005-06-23 Kaushal Kumar <kakumar@novell.com> * e-util/Makefile.am, widgets/e-timezone-dialog/Makefile.am, addressbook/gui/search/Makefile.am, plugins/groupwise-features/Makefile.am: Added widgets in INCLUDES. Updated the include paths to use misc instead of widgets/misc. svn path=/trunk/; revision=29574
* Retired GAL from Head. The relevant files have moved inside evolution.Kaushal Kumar2005-06-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* remove mono registrtion, this is implemented using a plugin now. registerNot Zed2005-05-251-14/+1
| | | | | | | | | 2005-05-25 Not Zed <NotZed@Ximian.com> * main.c (main): remove mono registrtion, this is implemented using a plugin now. register the plugin type loader hook. svn path=/trunk/; revision=29413
* fix error file build/path changesNot Zed2005-05-161-1/+1
| | | | | | | | 2005-05-16 Not Zed <NotZed@Ximian.com> * Makefile.am: fix error file build/path changes svn path=/trunk/; revision=29367
* add evolution-data-server-1.2 to the list of old dataserver instances.)Harish Krishnaswamy2005-05-121-0/+1
| | | | | | | | | 2005-05-12 Harish Krishnaswamy <kharish@novell.com> * main.c: (kill_dataserver): add evolution-data-server-1.2 to the list of old dataserver instances.) svn path=/trunk/; revision=29342
* setup the profiling plugin hook if profiling is compiled in.Not Zed2005-04-281-0/+4
| | | | | | | | | 2005-04-28 Not Zed <NotZed@Ximian.com> * main.c (main): setup the profiling plugin hook if profiling is compiled in. svn path=/trunk/; revision=29241
* switch #ifdef DEVELOPMENT to #if DEVELOPMENT so the configure.in fooJP Rosevear2005-03-211-10/+6
| | | | | | | | | 2005-03-21 JP Rosevear <jpr@novell.com> * main.c: switch #ifdef DEVELOPMENT to #if DEVELOPMENT so the configure.in foo actually controls this svn path=/trunk/; revision=29070
* Make mailer depend on libedataserverui.Hans Petter Jansson2005-02-241-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2005-02-23 Hans Petter Jansson <hpj@novell.com> * configure.in: Make mailer depend on libedataserverui. 2005-02-23 Hans Petter Jansson <hpj@novell.com> * Makefile.am (eutilinclude_HEADERS) (libeutil_la_SOURCES): Remove e-passwords from here, it now lives in libedataserverui. * e-passwords.[ch]: Removed. 2005-02-23 Hans Petter Jansson <hpj@novell.com> * gui/component/addressbook-view.c: * gui/component/addressbook.c: Include <libedataserverui/e-passwords.h>. 2005-02-23 Hans Petter Jansson <hpj@novell.com> * common/authentication.c: * gui/e-pub-utils.c: * gui/alarm-notify/alarm-notify.c: * gui/alarm-notify/notify-main.c: * gui/dialogs/url-editor-dialog.c: Include <libedataserverui/e-passwords.h>. * gui/itip-utils.c: Remove e-passwords.h include, it's not needed. 2005-02-23 Hans Petter Jansson <hpj@novell.com> * mail-session.c: * mail-config.c: Include <libedataserverui/e-passwords.h>. 2005-02-23 Hans Petter Jansson <hpj@novell.com> * gui/component.c: * lib/e-cert-db.c: * lib/e-pkcs12.c: Include <libedataserverui/e-passwords.h>. 2005-02-23 Hans Petter Jansson <hpj@novell.com> * e-shell-window-commands.c: * e-shell.c: * main.c: Include <libedataserverui/e-passwords.h>. 2005-02-23 Hans Petter Jansson <hpj@novell.com> * camel-gw-listener.c: Include <libedataserverui/e-passwords.h>. 2005-02-23 Hans Petter Jansson <hpj@novell.com> * send-options.c: Include <libedataserverui/e-passwords.h>. svn path=/trunk/; revision=28871
* 2.0 is the current stable version.Rodrigo Moya2004-12-301-1/+1
| | | | | | | | | 2004-12-29 Rodrigo Moya <rodrigo@novell.com> * main.c (show_development_warning): 2.0 is the current stable version. svn path=/trunk/; revision=28206
* include es-event.h to fix 64 bit platform problems.David Mosberger2004-12-081-0/+1
| | | | | | | | 2004-12-08 David Mosberger <davidm@napali.hpl.hp.com> * main.c: include es-event.h to fix 64 bit platform problems. svn path=/trunk/; revision=28082
* Evolution product name spelled with an uppercase EJoan Sanfeliu2004-11-231-1/+1
| | | | | | | | | | 2004-11-22 Joan Sanfeliu <joan@fibranet.com> * main.c: Evolution product name spelled with an uppercase E Fixes #61605 svn path=/trunk/; revision=27965
* register event hook.Not Zed2004-10-251-2/+6
| | | | | | | | | | | | | | | | | | | | | 2004-10-25 Not Zed <NotZed@Ximian.com> * main.c (main): register event hook. * e-shell.c (offline_procedure_finished_cb, e_shell_go_online): emit new state changed event. * main.c (main): register the menu hook. (): only define DEVELOPMENT if not already. * e-shell-window.c (init): setup menu manager. (e_shell_window_new): activate menu manager. (update_offline_toggle_status): update the menu manager when the offline state changes (currently only state which requires it) * es-menu.[ch]: Shell plugin menu manager. svn path=/trunk/; revision=27712
* initialise plugin system. (main): add --disable-eplugin and --disable-monoNot Zed2004-10-071-0/+23
| | | | | | | | | 2004-10-07 Not Zed <NotZed@Ximian.com> * main.c (main): initialise plugin system. (main): add --disable-eplugin and --disable-mono arguments. svn path=/trunk/; revision=27492
* init epasswords.Not Zed2004-08-121-1/+3
| | | | | | | | 2004-08-10 Not Zed <NotZed@Ximian.com> * main.c (main): init epasswords. svn path=/trunk/; revision=26884
* Remove AUTOHELP option since GNOME adds this itself. Fixes bug #60374.Jeffrey Stedfast2004-06-191-1/+3
| | | | | | | | | | 2004-06-18 Jeffrey Stedfast <fejj@novell.com> * main.c (main): Remove AUTOHELP option since GNOME adds this itself. Fixes bug #60374. (main): Before exiting from main(), call shutdown() routines. svn path=/trunk/; revision=26431
* test for skip_warning_dialog value in gconf here and not inRadek Doulik2004-06-191-11/+9
| | | | | | | | | | | 2004-06-18 Radek Doulik <rodo@ximian.com> * main.c (main): test for skip_warning_dialog value in gconf here and not in show_development_warning, otherwise we don't add or call idle_cb and evo will not run (show_development_warning): do not read skip_warning_dialog here svn path=/trunk/; revision=26423
* ** See bug #54498.Not Zed2004-06-181-33/+12
| | | | | | | | | | | | | | | | | 2004-06-18 Not Zed <NotZed@Ximian.com> ** See bug #54498. * main.c (idle_cb): don't do dev warning stuff here anymore. * main.c (main): show the dev warning before doing anything else if we are going to. (warning_dialog_response_callback): kick off the actual application once we're finished. (window_map_callback, new_window_created_callback): removed, not needed anymore. svn path=/trunk/; revision=26412
* Call gnome_sound_init() before bonobo_main().Jeffrey Stedfast2004-06-171-1/+4
| | | | | | | | 2004-06-17 Jeffrey Stedfast <fejj@ximian.com> * main.c (main): Call gnome_sound_init() before bonobo_main(). svn path=/trunk/; revision=26386
* added noshell and noshell-reason error strings. the latter seems a waste,Not Zed2004-05-181-5/+4
| | | | | | | | | | | 2004-05-18 Not Zed <NotZed@Ximian.com> * shell-errors.xml: added noshell and noshell-reason error strings. the latter seems a waste, but ... * main.c (idle_cb): use e_error for the new no shell errors. svn path=/trunk/; revision=25946
* #include <gtk/gtkvbox.h>Jeffrey Stedfast2004-05-181-1/+1
| | | | | | | | | | | 2004-05-17 Jeffrey Stedfast <fejj@novell.com> * main.c: #include <gtk/gtkvbox.h> * e-shell-startup-wizard.c (make_importer_page): Use E_ICON_SIZE_DIALOG svn path=/trunk/; revision=25936
* Call e_icon_factory_shutdown() after bonobo_main() exits.Jeffrey Stedfast2004-05-131-2/+4
| | | | | | | | | 2004-05-12 Jeffrey Stedfast <fejj@novell.com> * main.c (main): Call e_icon_factory_shutdown() after bonobo_main() exits. svn path=/trunk/; revision=25888
* set title to just Evolution (show_development_warning): ditto for warningJP Rosevear2004-05-101-6/+6
| | | | | | | | | | | | | | | | | 2004-05-10 JP Rosevear <jpr@ximian.com> * main.c (show_development_warning): set title to just Evolution (show_development_warning): ditto for warning (idle_cb): ditto for title * e-shell-window.c (update_offline_toggle_status): set tooltip to just Evolution (e_shell_window_new): ditto for window title * e-shell-window-commands.c (command_about_box): set title to just Evolution svn path=/trunk/; revision=25835
* Call gnome_program_init with PACKAGE "-" BASE_VERSION so that we start upRodney Dawes2004-04-291-1/+1
| | | | | | | | | | | | 2004-04-28 Rodney Dawes <dobey@ximian.com> * main.c (main): Call gnome_program_init with PACKAGE "-" BASE_VERSION so that we start up the right version of evolution when we get killed by logout or whatever Fixes #54087 svn path=/trunk/; revision=25673
* Change component icons to use the icon theme names for icons RemoveMichael Terry2004-04-191-3/+8
| | | | | | | | | | | | | | | | | | | | | | 2004-04-19 Michael Terry <mike@mterry.name> * GNOME_Evolution_Test.server.in.in: Change component icons to use the icon theme names for icons * Makefile.am: Remove e-icon-factory.[ch] * e-component-registry.c: Use the icon theme for component icons * e-icon-factory.[ch]: Removed these files * e-shell-importer.c: * e-shell-settings-dialog.c: * e-shell-startup-wizard.c: * e-shell-window-commands.c: * e-user-creatable-items-handler.c: * evolution-shell-component-utils.[ch]: * main.c: * glade/evolution-startup-wizard.glade: * importer/import.glade: Use the icon theme via EIconFactory for all of the icons in the shell, and the window icons svn path=/trunk/; revision=25512
* Don't activate the components here. (e_shell_construct): Activate them allJeffrey Stedfast2004-04-101-1/+1
| | | | | | | | | | | | | | 2004-04-09 Jeffrey Stedfast <fejj@ximian.com> * e-shell.c (e_shell_attempt_upgrade): Don't activate the components here. (e_shell_construct): Activate them all here instead (before we attempt to upgrade). Fixes a bug where the shell would start up in online mode but never notify the components to go online. * main.c (idle_cb): s/Cannot access/Cannot register/ svn path=/trunk/; revision=25405
* Remove dialog separators Change the border with of the dialog's vbox andRodney Dawes2004-04-011-10/+21
| | | | | | | | | | | | | | | | | | | | | | | | | 2004-03-31 Rodney Dawes <dobey@ximian.com> * e-shell-importer.c (choose_importer_from_list): (start_import): (prepare_intelligent_page): Remove dialog separators * e-shell-offline-handler.c (pop_up_confirmation_dialog): Change the border with of the dialog's vbox and action area to be HIG-compliant * e-shell-settings-dialog.c (init): Remove the dialog separator * e-shell-startup-wizard.c (prepare_importer_page): Remove the dialog separator to be more HIG-compliant (key_press_event_callback): Fix compile warnings and cast to the correct widget types for calling various gtk api Remove the dialog separator to be more HIG-compliant * main.c (show_development_warning): Make the devel warning dialog that pops up for unstable versions be HIG-compliant * glade/e-active-connection-dialog.glade: Make the active connection dialog for going off-line be HIG-compliant * importer/intelligent.c (create_gui): Remove the dialog separator and set the dialog's vbox and action area border widths to be more compliant with the HIG svn path=/trunk/; revision=25267
* ** See bug #53683.Not Zed2004-02-041-58/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | 2004-02-04 Not Zed <NotZed@Ximian.com> ** See bug #53683. * Evolution-Component.idl: added EvolutionComponent::quit() call. * main.c (quit_box_new): removed, dont show quit box anymore at the end, we've already shutdown by now with the new shutdown sequence. * e-shell-window-commands.c (command_quit): call e_shell_quit to quit. * e-shell.c (e_shell_prepare_for_quit): renamed es_run_quit, now internal, and a gtktimeout function, so return code inverted. (e_shell_quit): new public entry, find out if we can shutdown, if so, then trigger a shutdown. (e_shell_request_close_window): just call e_shell_quit to exit when we've run out of windows. (e_shell_quit): desensitise all of the app windows before running shutdown. looks a bit weird, but not doing so looks worse. svn path=/trunk/; revision=24609
* turn development stuff back onJP Rosevear2004-01-291-1/+1
| | | | | | | | 2004-01-29 JP Rosevear <jpr@ximian.com> * main.c: turn development stuff back on svn path=/trunk/; revision=24519
* g_message this (destroy_config): remove the various pieces to create aJP Rosevear2004-01-291-6/+42
| | | | | | | | | | | 2004-01-28 JP Rosevear <jpr@ximian.com> * main.c (kill_dataserver): g_message this (destroy_config): remove the various pieces to create a cleanish state for re-migrating from 1.4.x (main): add --force-migrate option when in development mode svn path=/trunk/; revision=24504
* attempt the upgrade before trying to startup the wizard.Not Zed2004-01-271-76/+0
| | | | | | | | | | | | 2004-01-21 Not Zed <NotZed@Ximian.com> * e-shell.c (attempt_upgrade, detect_version, e_shell_construct): attempt the upgrade before trying to startup the wizard. * main.c (detect_version, attempt_upgrade): move to e-shell.c (idle_cb): remove call to attempt_upgrade. svn path=/trunk/; revision=24461
* drop now useless gtkhtml/gconf checkJP Rosevear2004-01-271-4/+0
| | | | | | | | 2004-01-26 JP Rosevear <jpr@ximian.com> * main.c: drop now useless gtkhtml/gconf check svn path=/trunk/; revision=24437
* Move uri_list loop into a separate function so we don't duplicate code inRodney Dawes2004-01-241-15/+30
| | | | | | | | | | | | | 2004-01-23 Rodney Dawes <dobey@ximian.com> * main.c (idle_cb): Move uri_list loop into a separate function so we don't duplicate code in both instances where we are creating a new shell or using a current one, and don't open a new shell window if we are passing in a uri and a shell is already up Fixes #53216 svn path=/trunk/; revision=24394