aboutsummaryrefslogtreecommitdiffstats
path: root/shell
Commit message (Collapse)AuthorAgeFilesLines
* Get mail search bar partially working without help from EFilterBar.Matthew Barnes2009-02-142-52/+1
| | | | | | Search scope (current folder, current account, etc.) is still ignored. svn path=/branches/kill-bonobo/; revision=37263
* Fix packing of labels in sidebar banner.Matthew Barnes2009-02-131-2/+1
| | | | | | Secondary label should not be ellipsized. svn path=/branches/kill-bonobo/; revision=37261
* Disable Send/Receive when working offline.Matthew Barnes2009-02-131-0/+3
| | | | svn path=/branches/kill-bonobo/; revision=37258
* Make MailSession available through EShellSettings so composer can use it.Matthew Barnes2009-02-132-0/+62
| | | | svn path=/branches/kill-bonobo/; revision=37257
* Rewrite the mail label code from top to bottom.Matthew Barnes2009-02-084-0/+79
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Kill the e-util-labels API and read label information into a single-column GtkListStore. Use GConfBridge to automatically keep GConf synched with the list store. - The list store (a singleton instance) is stored in EShellSettings so it's available everywhere. - The list store serves as the model for EMailLabelTreeView, which itself is embedded in EMailLabelManager; a complete label management UI as seen in the preferences dialog. - EMailLabelDialog is used to add or edit a label. Avoid using a color button, instead embed a GtkColorSelection directly in the dialog so everything is in one window. Open issues: - The weird toggle/color/text menu items in the popup menu aren't there. For now they're just regular toggle items. I'll deal with it later. - Filter intergration is broken at the moment. svn path=/branches/kill-bonobo/; revision=37233
* When invoking Evolution with URIs on the command-line (e.g. mailto:),Matthew Barnes2009-01-296-92/+128
| | | | | | 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-298-124/+335
| | | | | | | | | | | | | | | | | 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
* Make action group management in shell windows more elegant.Matthew Barnes2009-01-277-79/+66
| | | | svn path=/branches/kill-bonobo/; revision=37137
* Add action groups to support lockdown, starting with printing.Matthew Barnes2009-01-277-12/+191
| | | | | | Other categories to follow. Editors still need lockdown support. svn path=/branches/kill-bonobo/; revision=37136
* Split EAccountList and ESignatureList management out of the mail module.Matthew Barnes2009-01-271-0/+6
| | | | | | | This reduces the dependency of the composer on the mail module, which is currently a circular dependency. svn path=/branches/kill-bonobo/; revision=37135
* Miscellaneous stuff.Matthew Barnes2009-01-272-0/+220
| | | | svn path=/branches/kill-bonobo/; revision=37134
* Fix more runtime warnings.Matthew Barnes2009-01-261-1/+1
| | | | svn path=/branches/kill-bonobo/; revision=37132
* Fix a crash when cancelling a task in the task bar.Matthew Barnes2009-01-252-5/+5
| | | | | | Tinker with task bar padding. svn path=/branches/kill-bonobo/; revision=37131
* Make the sidebar icon follow the folder icon.Matthew Barnes2009-01-253-2/+87
| | | | | | Fix more runtime warnings. svn path=/branches/kill-bonobo/; revision=37130
* Redesign EPluginUI to accommodate merging and unmerging shell views.Matthew Barnes2009-01-243-25/+44
| | | | | | Get the "mark-all-read" and "plugin-manager" plugins working. svn path=/branches/kill-bonobo/; revision=37125
* Fix a runtime warning.Matthew Barnes2009-01-182-1/+1
| | | | 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
* Fix online mode initialization.Matthew Barnes2009-01-141-1/+1
| | | | svn path=/branches/kill-bonobo/; revision=37070
* Merge revisions 36866:37046 from trunk.Matthew Barnes2009-01-123-2/+49
| | | | svn path=/branches/kill-bonobo/; revision=37050
* Continue chipping away at EMFolderView and EMFolderBrowser.Matthew Barnes2009-01-112-11/+3
| | | | | | Migrate from gnome_url_show() to e_show_uri(). svn path=/branches/kill-bonobo/; revision=37038
* Fix a weird UI merging bug.Matthew Barnes2009-01-091-2/+6
| | | | svn path=/branches/kill-bonobo/; revision=37020
* Tweak the EShell API.Matthew Barnes2009-01-0810-81/+135
| | | | | | | Disable File -> Close Window when there's only one window. Replace EMMessageBrowser with EMailBrowser. svn path=/branches/kill-bonobo/; revision=37009
* Get the Character Encoding menu working.Matthew Barnes2009-01-011-23/+2
| | | | | | Kill e_charset_picker_bonobo_ui_populate(). svn path=/branches/kill-bonobo/; revision=36950
* Get the basic mail browser window working. No message contents yet.Matthew Barnes2008-12-291-3/+3
| | | | svn path=/branches/kill-bonobo/; revision=36946
* Update EShell documentation.Matthew Barnes2008-12-281-6/+6
| | | | svn path=/branches/kill-bonobo/; revision=36936
* Solve a translation issue related to the New menu.Matthew Barnes2008-12-283-8/+38
| | | | svn path=/branches/kill-bonobo/; revision=36934
* Define a new interface called EMailReader, which implements operationsMatthew Barnes2008-12-272-1/+44
| | | | | | | | common to both the main shell window and the message browser. Replaces EMFolderView. Also begin to define EMailBrowser (GtkWindow subclass), which implements EMailReader and replaces EMMessageBrowser. svn path=/branches/kill-bonobo/; revision=36933
* - Get offline synchronization working in the mailer (I think).Matthew Barnes2008-12-141-24/+87
| | | | svn path=/branches/kill-bonobo/; revision=36876
* - Fix NetworkManager connection tracking.Matthew Barnes2008-12-144-51/+237
| | | | | | | | | | - Implement offline preparation as an EActivity that gets broadcast in a signal to shell modules. Offline preparations are complete when the last EActivity reference is dropped. - Bind some of the composer preferences to EShellSettings properties. svn path=/branches/kill-bonobo/; revision=36875
* Merge revisions 36811:36865 from trunk.Matthew Barnes2008-12-112-0/+20
| | | | svn path=/branches/kill-bonobo/; revision=36867
* Merge revisions 36737:36810 from trunk.Matthew Barnes2008-11-242-7/+24
| | | | svn path=/branches/kill-bonobo/; revision=36811
* Documentation improvements.Matthew Barnes2008-11-205-6/+169
| | | | svn path=/branches/kill-bonobo/; revision=36806
* Progress update:Matthew Barnes2008-11-197-1/+367
| | | | | | | | | | | | | | | | | | | - Tighter integration of GalViewInstance and EShellView. - EBinding. Stolen from ExoBinding. Lets you bind GObject properties together to automatically keep their values in sync. This is a godsend. Added to e-util, but might even deserve a place in libedataserver. - EShellSettings. This is the concept I blogged about. Already started ripping apart em-mailer-prefs.c. Others to follow. Any place where we're monitoring GConf keys is a target. - Incremental progress on the calender and mailer. Got EMFolderView somewhat working, but I think I'll be killing off EMFolderBrowser. svn path=/branches/kill-bonobo/; revision=36795
* Rearranged some of the addressbook code to try and eliminate some circularMatthew Barnes2008-11-144-18/+30
| | | | | | | | 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 36685:36729 from trunk.Matthew Barnes2008-11-083-20/+9
| | | | svn path=/branches/kill-bonobo/; revision=36763
* Fix a pane resizing issue on the main window that's been driving me crazy.Matthew Barnes2008-11-031-1/+1
| | | | | | | Also manage the calendar's vertical pane, switching between different GConf keys depending on whether we're in month view. svn path=/branches/kill-bonobo/; revision=36717
* Add popup menus to the calendar memopad and taskpad.Matthew Barnes2008-10-311-1/+0
| | | | | | | Implement support for "hide completed tasks" option (not yet tested). Flesh out most of the Preferences window. Still need Certificates page. svn path=/branches/kill-bonobo/; revision=36701
* Get the calendar's memopad and taskpad working.Matthew Barnes2008-10-303-11/+32
| | | | | | | | | | | | | What's interesting here is we're actually sharing the ECalModel across views. Instead of having the Calendar view listen to GConf for changes to the Task and Memo models, the Calendar view fetches the models directly from the Task and Memo views -- starting the views if it has to, although the shell really takes care of that -- and loads the models into its own taskpad and memopad. We couldn't do that sort of thing before with Bonobo in the way. Big chunks of redundant code should begin falling out shortly. svn path=/branches/kill-bonobo/; revision=36696
* Fix a couple minor UI bugs.Matthew Barnes2008-10-282-1/+15
| | | | | | Populate the calendar's filter combo. svn path=/branches/kill-bonobo/; revision=36691
* Disable parts of my previous calendar work, such that all modules now load!Matthew Barnes2008-10-281-0/+1
| | | | svn path=/branches/kill-bonobo/; revision=36690
* Merge revisions 36534:36684 from trunk.Matthew Barnes2008-10-255-9/+38
| | | | svn path=/branches/kill-bonobo/; revision=36685
* Commit recent work so I can merge from trunk.Matthew Barnes2008-10-254-0/+76
| | | | svn path=/branches/kill-bonobo/; revision=36684
* Get the mail folder tree compiling, though I'm not yet sure why it's notMatthew Barnes2008-10-1710-35/+86
| | | | | | showing anything. Probably something stupid. Also enabled the composer. svn path=/branches/kill-bonobo/; revision=36623
* Progress update:Matthew Barnes2008-10-148-25/+79
| | | | | | | | | | - Calendar is kind of a mess at the moment. Doesn't compile. - Roughed in the Mail module, including all the actions. That _does_ compile. Runs, even. svn path=/branches/kill-bonobo/; revision=36611
* Baseline cut at the Calendar sidebar and module. Pretty much identicalMatthew Barnes2008-10-071-2/+3
| | | | | | to Tasks and Memos so far. Now for the interesting part... svn path=/branches/kill-bonobo/; revision=36573
* Fix some compilation errors.Matthew Barnes2008-10-052-4/+4
| | | | svn path=/branches/kill-bonobo/; revision=36561
* Support migration in the new shell design.Matthew Barnes2008-10-058-13/+505
| | | | | | Some code got duplicated for calendars and tasks. Made a note to revisit. svn path=/branches/kill-bonobo/; revision=36560
* Finally fix the stupid shell view bootstrapping issue.Matthew Barnes2008-10-043-23/+28
| | | | svn path=/branches/kill-bonobo/; revision=36553
* Tasks is working. Still need to deal with some loose ends and test it all.Matthew Barnes2008-10-047-19/+21
| | | | svn path=/branches/kill-bonobo/; revision=36551
* Tasks progress. Merge EMemoPreview back into ECalComponentPreview.Matthew Barnes2008-10-039-39/+28
| | | | svn path=/branches/kill-bonobo/; revision=36538
* Update the headers on files I've created or completely rewritten to matchMatthew Barnes2008-10-0224-223/+246
| | | | | | Sankar's LGPLv3 template. svn path=/branches/kill-bonobo/; revision=36535
* Merge revisions 36016:36533 from trunk.Matthew Barnes2008-10-029-77/+135
| | | | svn path=/branches/kill-bonobo/; revision=36534
* Add more EShell API documentation.Matthew Barnes2008-10-025-19/+411
| | | | svn path=/branches/kill-bonobo/; revision=36533
* Continue documenting the new shell API.Matthew Barnes2008-10-0116-21/+504
| | | | svn path=/branches/kill-bonobo/; revision=36511
* Memos are mostly working now. Tasks to follow.Matthew Barnes2008-09-303-9/+17
| | | | svn path=/branches/kill-bonobo/; revision=36495
* Get Memos to come up. Doesn't really work yet, but the widgets are all there.Matthew Barnes2008-09-3010-100/+188
| | | | svn path=/branches/kill-bonobo/; revision=36491
* Saving progress. Experimenting with directory layout.Matthew Barnes2008-09-2513-60/+70
| | | | | | | Saving progress. Experimenting with directory layout. svn path=/branches/kill-bonobo/; revision=36446
* Search UI is kinda sorta working. Still some outstanding issues.Matthew Barnes2008-09-2310-111/+534
| | | | svn path=/branches/kill-bonobo/; revision=36427
* Fix some miscellaneous address book bugs.Matthew Barnes2008-09-205-52/+5
| | | | | | Kill e-shell-constants.h. svn path=/branches/kill-bonobo/; revision=36392
* Replace EActivityHandler with a new activity-tracking system that usesMatthew Barnes2008-09-2010-904/+223
| | | | | | | | | EActivity objects instead of numeric handler IDs. Create an EActivity, configure it, and (optionally) connect to its "cancelled" and "completed" signals. Then hand it to the shell view via e_shell_view_add_activity(). When finished with the activity, call e_activity_finish() and unref it. svn path=/branches/kill-bonobo/; revision=36391
* Finally got the "Current View" menu under control.Matthew Barnes2008-09-195-7/+441
| | | | svn path=/branches/kill-bonobo/; revision=36380
* Progress update:Matthew Barnes2008-09-182-10/+2
| | | | | | | | | - Kill EABMenu. - Centralize marshallers to eliminate duplication. svn path=/branches/kill-bonobo/; revision=36368
* Progress update:Matthew Barnes2008-09-183-1/+35
| | | | | | | | | | | | | | - Get context menus working in the contact preview pane. - Kill EABPopup. - Yet more code refactoring. - Add a handy utility function: e_shell_window_show_popup_menu() Takes a widget path in the shell window's UI definition. svn path=/branches/kill-bonobo/; revision=36366
* Massive address book refactoring. Things are mostly working again.Matthew Barnes2008-09-1713-211/+195
| | | | | | Also, begin documenting the new shell API, and provide a Gtk-Doc framework. svn path=/branches/kill-bonobo/; revision=36359
* Begin documenting the new shell design.Matthew Barnes2008-09-1511-227/+580
| | | | svn path=/branches/kill-bonobo/; revision=36337
* Allow EShellContent, EShellSidebar, and EShellTaskbar to be subclassed,Matthew Barnes2008-09-136-48/+105
| | | | | | and begin doing so for Calendars, Memos and Tasks. Makes the code cleaner. svn path=/branches/kill-bonobo/; revision=36317
* Arrange for an ESourceList to be shared amongst all instances of a type ofMatthew Barnes2008-09-121-1/+0
| | | | | | | shell view. For example, all EBookShellView instances will now share the same ESourceList instance for address books. svn path=/branches/kill-bonobo/; revision=36311
* Fix a compilation error.Matthew Barnes2008-09-111-15/+0
| | | | svn path=/branches/kill-bonobo/; revision=36308
* Merge revisions 36016:36303 from trunk.Matthew Barnes2008-09-1121-237/+321
| | | | svn path=/branches/kill-bonobo/; revision=36307
* Add popup menu stubs for calendars, tasks and memos.Matthew Barnes2008-09-112-0/+27
| | | | svn path=/branches/kill-bonobo/; revision=36303
* Add menu and toolbar UI for calendars, memos and tasks.Matthew Barnes2008-09-111-1/+1
| | | | svn path=/branches/kill-bonobo/; revision=36299
* Add stubs for calendar, task, and memo shell views.Matthew Barnes2008-09-114-19/+10
| | | | svn path=/branches/kill-bonobo/; revision=36296
* Fix some bootstrapping issues.Matthew Barnes2008-09-108-297/+320
| | | | svn path=/branches/kill-bonobo/; revision=36291
* Fix some bugs in the way the shell widgets get initialized.Matthew Barnes2008-09-098-72/+67
| | | | svn path=/branches/kill-bonobo/; revision=36279
* Progress update:Matthew Barnes2008-09-0915-222/+2016
| | | | | | | | - Merge ETaskBar into EShellTaskbar. - Remember the last view, and make --component work. svn path=/branches/kill-bonobo/; revision=36278
* Progress update:Matthew Barnes2008-09-0716-127/+429
| | | | | | | | | - Contacts module mostly working now. - View and search UI not yet working. - Still refining shell design. svn path=/branches/kill-bonobo/; revision=36268
* Saving progress. Lots of changes. Things are a bit broken at the moment.Matthew Barnes2008-09-0518-1341/+1889
| | | | svn path=/branches/kill-bonobo/; revision=36260
* Fix some bugs related to the New menu and toolbar button.Matthew Barnes2008-08-311-4/+6
| | | | svn path=/branches/kill-bonobo/; revision=36232
* Figured out why the switcher buttons have no relief.Matthew Barnes2008-08-302-1/+2
| | | | | | GTK+ bug: http://bugzilla.gnome.org/show_bug.cgi?id=549943 svn path=/branches/kill-bonobo/; revision=36221
* Preferences window awesomeness.Matthew Barnes2008-08-304-19/+21
| | | | svn path=/branches/kill-bonobo/; revision=36215
* Progress update:Matthew Barnes2008-08-306-22/+585
| | | | | | | | | | | - Contacts module partially working! - Implement UI merging. Also merge EInfoLabel into ESidebar. The shell window now manages the icon and labels and keeps them up-to-date via EShellView properties. svn path=/branches/kill-bonobo/; revision=36214
* Miscellaneous tweaks. Nothing major.Matthew Barnes2008-08-281-0/+14
| | | | svn path=/branches/kill-bonobo/; revision=36138
* Progress update:Matthew Barnes2008-08-274-19/+198
| | | | | | | | - Get the test module to demonstrate populating the shell window (particularly, the various notebooks) with some stupid widgets. svn path=/branches/kill-bonobo/; revision=36094
* Progress update:Matthew Barnes2008-08-2718-1323/+148
| | | | | | | | | - 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-249-183/+304
| | | | | | | | | | | | - 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-2320-392/+721
| | | | | | | | | | - 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
* Committing the day's progress.Matthew Barnes2008-08-1914-361/+478
| | | | | | | | | | | | | Realized the "New" menu construction algorithm needs to live independently of shell view instances since we lazy load the shell views but have to display all possible "New" items immediately. Prototype the mechanisms for managing the various shell views and keeping track of which one is current. Various other tightening up and rethinking of APIs. svn path=/branches/kill-bonobo/; revision=36022
* Merge revisions 35993:36015 from trunk.Matthew Barnes2008-08-198-317/+126
| | | | | | Adapt recent "crash recovery" changes to new architecture. svn path=/branches/kill-bonobo/; revision=36018
* Write the algorithm for sorting items in the "New" menu. Not yet tested.Matthew Barnes2008-08-176-13/+240
| | | | svn path=/branches/kill-bonobo/; revision=36004
* Have the sidebar update itself when the "gtk-toolbar-style" global GtkSettingMatthew Barnes2008-08-161-2/+51
| | | | | | changes, without using GConf. svn path=/branches/kill-bonobo/; revision=36001
* Merge revisions 35951:35992 from trunk.Matthew Barnes2008-08-151-2/+1
| | | | svn path=/branches/kill-bonobo/; revision=35994
* Demonstrate displaying the test shell view.Matthew Barnes2008-08-148-37/+257
| | | | | | | Also get the "Switcher Appearance" menu working... mostly. Still need to respond to GtkSettings notifications and make the preference persistent. svn path=/branches/kill-bonobo/; revision=35985
* Demonstrate loading the test module.Matthew Barnes2008-08-149-302/+101
| | | | svn path=/branches/kill-bonobo/; revision=35983
* Get a basic shell window working.Matthew Barnes2008-08-145-39/+119
| | | | svn path=/branches/kill-bonobo/; revision=35982
* Merge revisions 35931:35950 from trunk.Matthew Barnes2008-08-131-0/+5
| | | | svn path=/branches/kill-bonobo/; revision=35978
* Add a few stub functions to get compilation to complete.Matthew Barnes2008-08-114-203/+52
| | | | | | Kill e-active-connection-dialog.glade (unused). svn path=/branches/kill-bonobo/; revision=35950
* Kill e-shell-marshal.list (unused).Matthew Barnes2008-08-103-31/+0
| | | | svn path=/branches/kill-bonobo/; revision=35949
* Killing spree...Matthew Barnes2008-08-095-409/+0
| | | | svn path=/branches/kill-bonobo/; revision=35948
* Treat the Preferences window as a singleton.Matthew Barnes2008-08-0913-882/+15
| | | | | | Kill a bunch of Bonobo crud, which breaks compilation again. svn path=/branches/kill-bonobo/; revision=35947
* Kill EShellSettingsDialog.Matthew Barnes2008-08-093-381/+0
| | | | | | Rename EMultiConfigDialog to EPreferencesWindow and improve the API. svn path=/branches/kill-bonobo/; revision=35944
* Kill ECorbaConfigPage. Good riddance.Matthew Barnes2008-08-093-225/+0
| | | | svn path=/branches/kill-bonobo/; revision=35943
* Work through more compilation errors.Matthew Barnes2008-08-0914-354/+249
| | | | | | Rewrite EMultiConfigDialog to not use ETable. svn path=/branches/kill-bonobo/; revision=35942
* Fix some compilation errors.Matthew Barnes2008-08-085-6/+20
| | | | svn path=/branches/kill-bonobo/; revision=35938
* Merge revisions 35747:35930 from trunk.Matthew Barnes2008-08-087-34/+83
| | | | svn path=/branches/kill-bonobo/; revision=35931
* Commit progress, which breaks everything.Matthew Barnes2008-08-0811-1464/+137
| | | | svn path=/branches/kill-bonobo/; revision=35930
* Disable all components and plugins. Begin rewriting the shell.Matthew Barnes2008-07-1724-3489/+3082
| | | | svn path=/branches/kill-bonobo/; revision=35748
* ** Fix for bug #542889Paolo Borelli2008-07-144-36/+51
| | | | | | | | | | | 2008-17-14 Paolo Borelli <pborelli@katamail.com> ** Fix for bug #542889 Port to the new gtk tooltip api. svn path=/trunk/; revision=35744
* Remove still more unused files.Matthew Barnes2008-07-134-822/+5
| | | | | | | | | | 2008-07-13 Matthew Barnes <mbarnes@redhat.com> * shell/e-shell-folder-title-bar.[ch]: Remove still more unused files. svn path=/trunk/; revision=35741
* Remove more unused files.Matthew Barnes2008-07-125-188/+8
| | | | | | | | | | | | | 2008-07-12 Matthew Barnes <mbarnes@redhat.com> * shell/e-shell-utils.[ch]: Remove more unused files. * shell/e-user-creatable-items-handler.c: Remove inclusion of "e-shell-utils.h". svn path=/trunk/; revision=35739
* Remove these files. They were written in 2002 and, AFACIT, never used forMatthew Barnes2008-07-114-344/+6
| | | | | | | | | | | 2008-07-10 Matthew Barnes <mbarnes@redhat.com> * shell/e-history.[ch]: Remove these files. They were written in 2002 and, AFACIT, never used for anything. svn path=/trunk/; revision=35737
* ** Fixes bug #540282Matthew Barnes2008-07-012-13/+7
| | | | | | | | | | | | | | | | | 2008-07-01 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #540282 * e-util/e-print.c: Store printer and page settings in a key file rather than GConf. Also properly apply page settings to print operations, including custom margins. * shell/apps_evolution_shell.schemas.in: Remove the "printing" GConf key. We use a key file now. svn path=/trunk/; revision=35711
* updated novell copyright notices (left others alone)Jeffrey Stedfast2008-06-2156-56/+56
| | | | svn path=/trunk/; revision=35665
* Use <glib/gi18n.h> instead of <bonobo/bonobo-i18n.h>.Matthew Barnes2008-06-112-1/+6
| | | | | | | | | | | | | | | | | | | 2008-06-10 Matthew Barnes <mbarnes@redhat.com> * addressbook/gui/component/addressbook-component.c: * calendar/common/authentication.c: * calendar/gui/calendar-component.c: * calendar/gui/comp-editor-factory.c: * calendar/gui/dialogs/copy-source-dialog.c: * calendar/gui/dialogs/select-source-dialog.c: * calendar/gui/memos-component.c: * calendar/gui/migration.c: * calendar/gui/tasks-component.c: * shell/test/evolution-test-component.c: Use <glib/gi18n.h> instead of <bonobo/bonobo-i18n.h>. svn path=/trunk/; revision=35625
* ** Allow evolution to build with G_DISABLE_SINGLE_INCLUDES andMatthew Barnes2008-06-0615-62/+13
| | | | | | | | | | 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
* Corrected my name in the About dialog -- for some reason, it was in the ↵ÉRDI Gergo2008-06-011-1/+1
| | | | | | wrong (Hungarian) order svn path=/trunk/; revision=35561
* ** Fixes bug #534360Matthew Barnes2008-05-2310-42/+57
| | | | | | | | | | | | 2008-05-22 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #534360 Migrate from deprecated GtkObject symbols to GObject equivalents. Touches over 150 files in all components; too many to list. svn path=/trunk/; revision=35526
* ** Fixes bug #525241 (EPluginUI)Matthew Barnes2008-05-092-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Explain moreTor Lillqvist2008-05-081-1/+4
| | | | svn path=/trunk/; revision=35480
* If no message catalog is installed for the current locale language, don'tTor Lillqvist2008-05-082-0/+18
| | | | | | | | | | | | 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-292-1/+7
| | | | | | * shell/main.c : Changed stable version to 2.22.1 in Beta version warning message svn path=/trunk/; revision=35433
* Patch from James Westby <jw+debian@jameswestby.net>: Fix for bug #518103 ↵Suman Manjunath2008-04-264-3/+13
| | | | | | (Check online status from NetworkManager at startup instead of using the last-used-state) svn path=/trunk/; revision=35420
* ** Fix for bug #526741 (gnome-vfs to gio/gvfs port)Milan Crha2008-04-182-13/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2008-04-17 Milan Crha <mcrha@redhat.com> ** Fix for bug #526741 (gnome-vfs to gio/gvfs port) * configure.in: Drop dependency on gnome-vfs, depend on gio instead. * addressbook/gui/contact-editor/e-contact-editor.c: Do not include gnome-vfs. * calendar/gui/e-meeting-store.c: (start_async_read), (freebusy_async), (async_read): Read data with gio, not with gnome-vfs. * calendar/gui/e-meeting-store.c: (async_close): Function removed. * calendar/gui/migration.c: * calendar/gui/e-memos.c: * calendar/gui/alarm-notify/notify-main.c: * calendar/gui/e-tasks.c: * calendar/gui/main.c: * calendar/gui/e-meeting-list-view.c: Do not include gnome-vfs. * calendar/gui/dialogs/comp-editor.c: (set_attachment_list): * calendar/gui/dialogs/comp-editor.c: (attachment_guess_mime_type): Function removed, use e-util function instead. * calendar/gui/e-cal-popup.c: (temp_save_part): Reflect changes in CamelStreamVFS. * calendar/gui/e-cal-popup.c: (ecalp_apps_open_in), (ecalp_apps_popup_free), (ecalp_standard_menu_factory): Use gio to fill popup and launch app. * calendar/gui/e-cal-component-preview.h: (e_cal_comp_preview_url_requested_cb): * calendar/gui/e-cal-component-preview.c: (e_cal_comp_preview_url_requested_cb): New helper function to manage file:// urls for GtkHTML component. * calendar/gui/e-cal-component-preview.c: (e_cal_component_preview_init): * calendar/gui/e-cal-component-memo-preview.c: (e_cal_comp_preview_url_requested_cb): Use above helper function. * calendar/gui/e-cal-component-memo-preview.c: (url_requested_cb): * calendar/gui/e-cal-component-preview.c: (url_requested_cb): Function removed. * composer/e-msg-composer.h: (e_msg_composer_guess_mime_type): * composer/e-msg-composer.c: (e_msg_composer_guess_mime_type), (handle_uri), (e_msg_composer_add_inline_image_from_file): Use shared e_util_guess_mime_type instead of its own. * e-util/e-gui-utils.c: Do not include gnome-vfs. * e-util/e-util.c: (e_write_file_uri), (e_file_get_save_path): * e-util/e-dialog-utils.c: (e_file_can_save), (e_file_check_local): Use gio instead of gnome-vfs. * e-util/e-util.h: * e-util/e-util.c: (e_util_guess_mime_type), (e_util_filename_to_uri), (e_util_uri_to_filename), (e_util_read_file): New helper functions. * mail/Makefile.am: * mail/em-vfs-stream.h: * mail/em-vfs-stream.c: Removed from project, not used anywhere. * mail/em-menu.c: * mail/em-config.c: Do not include gnome-vfs. * mail/mail-ops.c: (save_messages_exec), (save_part_exec): Changes related to Data Server change of CamelStreamVFS. * mail/em-format.c: (em_format_describe_part): * mail/em-format-html-display.c: (efhd_bonobo_object), (efhd_find_handler), (efhd_use_component), (efhd_bonobo_unknown), (efhd_check_server_prop), (efhd_format_attachment): Drop use of deprecated gnome-vfs functions. * mail/em-utils.c: (em_utils_snoop_type): Use gio to guess the mime_type. * mail/em-popup.c: (emp_apps_open_in), (emp_apps_popup_free), (emp_standard_menu_factory): Use gio to fill popup and launch app. * plugins/import-ics-attachments/icsimporter.c: Do not include gnome-vfs. * plugins/ipod-sync/ical-format.c: (do_save_calendar_ical): * plugins/ipod-sync/ipod-sync.c: (destination_save_addressbook): Write to gio GOutputStream instead of gnome-vfs handle. * plugins/ipod-sync/format-handler.h: (open_for_writing): * plugins/ipod-sync/ipod-sync.c: (open_for_writing): New helper function. * plugins/publish-calendar/publish-format-fb.h: (publish_calendar_as_fb): * plugins/publish-calendar/publish-format-fb.c: (write_calendar), (publish_calendar_as_fb): * plugins/publish-calendar/publish-format-ical.h: (publish_calendar_as_ical): * plugins/publish-calendar/publish-format-ical.c: (write_calendar), (publish_calendar_as_ical): Use gio GOutputStream instead of gnome-vfs handle. * plugins/publish-calendar/url-editor-dialog.c: (create_uri): Use glib function to escape URI. * plugins/publish-calendar/publish-location.c: (migrateURI): Use EUri to parse URI. * plugins/publish-calendar/publish-calendar.c: (publish_online), (unmount_done_cb), (struct mnt_struct), (mount_ready_cb), (ask_password), (ask_question), (mount_first), (publish): Use gio instead of gnome-vfs for opening (remote) files. * plugins/save-calendar/ical-format.c: (do_save_calendar_ical): * plugins/save-calendar/csv-format.c: (do_save_calendar_csv): * plugins/save-calendar/rdf-format.c: (do_save_calendar_rdf): Use gio GOutpuStream instead of gnome-vfs handle. * plugins/save-calendar/format-handler.h: (open_for_writing): * plugins/save-calendar/save-calendar.c: (open_for_writing): New helper function. * shell/e-shell-window-commands.c: (command_quick_reference): Use gio instead of gnome-vfs. * widgets/misc/e-attachment.h: (struct _EAttachment): * widgets/misc/e-attachment.c: (finalise), (init), (attachment_guess_mime_type), (e_attachment_new), (struct DownloadInfo), (download_info_free), (data_ready_cb), (download_to_local_path), (e_attachment_new_remote_file): Use gio instead of gnome-vfs to download remote files. * widgets/misc/e-image-chooser.c: (image_drag_data_received_cb): Use new util function to read file. * widgets/misc/e-attachment-bar.c: (size_to_string): Stolen from gnome-vfs. svn path=/trunk/; revision=35378
* ** Fix for bug #525238Ondrej Jirman2008-04-074-1/+42
| | | | | | | | | | | | | | | | 2008-04-07 Ondrej Jirman <megous@megous.com> ** Fix for bug #525238 * e-shell-window.c: (switch_view): * es-event.c: * es-event.h: Add new "component.activated" event. Event is emitted whenever component is activated. ESEventTargetComponent contains an id of the component being activated. svn path=/trunk/; revision=35332
* Varadhan's patch for configurable proxy settings in Evolution. Suman Manjunath2008-03-252-0/+153
| | | | | | | | | | | | | | | M shell/apps_evolution_shell.schemas.in M shell/ChangeLog A mail/em-network-prefs.c M mail/GNOME_Evolution_Mail.server.in.in A mail/em-network-prefs.h M mail/ChangeLog M mail/mail-config.glade M mail/Makefile.am M mail/mail-component-factory.c M mail/mail-config-factory.c svn path=/trunk/; revision=35240
* 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
* Typo.Tor Lillqvist2008-03-041-3/+3
| | | | svn path=/trunk/; revision=35127
* Drop the call to gtk_rc_parse_string() to set gtk-fallback-icon-theme =Tor Lillqvist2008-03-042-1/+9
| | | | | | | | | | | | | | 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-032-1/+68
| | | | | | | | | | | 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
* Fixed contribution list. missed a few quotes :-)Johnny Jacob2008-03-032-2/+6
| | | | svn path=/trunk/; revision=35119
* Updated contributors list in creditsJohnny Jacob2008-03-032-1/+86
| | | | svn path=/trunk/; revision=35118
* Committing the build fix that comes up if DEVELOPMENT is enabled.Srinivasa Ragavan2008-03-022-3/+9
| | | | | | | | | 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
* ** Fix for bnc #173186Srinivasa Ragavan2008-02-182-1/+14
| | | | | | | | | | | 2008-02-18 Srinivasa Ragavan <sragavan@novell.com> ** Fix for bnc #173186 * e-shell-nm.c: (e_shell_network_monitor): Upstreamed Fejj's OpenSUSE patch. Crash while quitting. svn path=/trunk/; revision=35038
* ** Fix for bnc #159736. Patch from OpenSUSE.Srinivasa Ragavan2008-02-182-2/+14
| | | | | | | | | | | | 2008-02-18 Srinivasa Ragavan <sragavan@novell.com> ** Fix for bnc #159736. Patch from OpenSUSE. * e-shell-nm.c: (e_shell_network_monitor): svn path=/trunk/; revision=35034
* Add commands to kill recent versions of evolution-data-server.Matthew Barnes2008-02-142-0/+7
| | | | | | | | | | 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-313-3/+9
| | | | | | | | | | | | 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
* Minor build break.Matthew Barnes2008-01-301-1/+1
| | | | svn path=/trunk/; revision=34932
* Replace G_GNUC_FUNCTION (deprecated) with G_STRFUNC.Matthew Barnes2008-01-293-3/+8
| | | | | | | | | | | | | | | | 2008-01-29 Matthew Barnes <mbarnes@redhat.com> * addressbook/gui/widgets/e-minicard.c: * addressbook/gui/widgets/gal-view-minicard.c: * mail/mail-send-recv.c: * shell/e-component-registry.c: * widgets/menus/gal-view-collection.c: * widgets/menus/gal-view-instance.c: * widgets/menus/gal-view-menus.c: Replace G_GNUC_FUNCTION (deprecated) with G_STRFUNC. svn path=/trunk/; revision=34931
* ** Fix for bug #511232Jan Tichavsky2008-01-232-1/+8
| | | | | | | | | | | | 2008-01-22 Jan Tichavsky <Jan.Tichavsky@gmail.com> ** Fix for bug #511232 * e-shell.c: Fixed typo Uknown -> Unknown (patch committed by Andre Klapper) svn path=/trunk/; revision=34869
* Make the status bar height as large as the task bar to eliminateMatthew Barnes2008-01-212-0/+14
| | | | | | | | | | | | 2008-01-21 Matthew Barnes <mbarnes@redhat.com> * e-shell-window.c (setup_status_bar): Make the status bar height as large as the task bar to eliminate "bouncing" when navigating the main menu. Patch by Jean-Christophe Begue (#509509). svn path=/trunk/; revision=34860
* Fix a regression due to my previous commit.Srinivasa Ragavan2008-01-192-1/+6
| | | | | | | | | 2008-01-19 Srinivasa Ragavan <sragavan@novell.com> * e-shell.c: (set_line_status): Fix a regression due to my previous commit. svn path=/trunk/; revision=34851
* ** Fix for bug #329712Srinivasa Ragavan2008-01-185-7/+29
| | | | | | | | | | | | | | | | | 2008-01-18 Srinivasa Ragavan <sragavan@novell.com> ** Fix for bug #329712 * e-shell-window-commands.c: (update_offline_menu_item): * e-shell-window.c: (update_offline_toggle_status), (update_send_receive_sensitivity), (offline_toggle_clicked_callback): * e-shell.c: (e_shell_construct), (e_shell_save_settings), (set_line_status): * e-shell.h: Add a new state to maintian forced offline. svn path=/trunk/; revision=34847
* Add missing punctuation.Kjartan Maraas2008-01-142-2/+6
| | | | | | | | 2008-01-14 Kjartan Maraas <kmaraas@gnome.org> * apps_evolution_shell.schemas.in: Add missing punctuation. svn path=/trunk/; revision=34819
* ** Fix for bug #508678Bharath Acharya2008-01-112-0/+7
| | | | | | | | | | | | 2008-01-11 Bharath Acharya <abharath@novell.com> ** Fix for bug #508678 * e-shell-view.c: Included missing header glib/gi18n.h svn path=/trunk/; revision=34796
* From shell/ChangeLogChangwoo Ryu2008-01-113-2/+14
| | | | | | | | | | | | | | | | | | | | | 2008-01-11 Changwoo Ryu <cwryu@debian.org> ** Fix for bug #508282 * e-shell-window.c (switch_view): * e-shell-view.c (impl_ShellView_setTitle): Mark the window title for translation. From po/ChangeLog 2008-01-11 Changwoo Ryu <cwryu@debian.org> ** Part of fix for bug #508282 * POTFILES.in: Add new file shell/e-shell-view.c svn path=/trunk/; revision=34792
* Update copyright notice in About dialog.Matthew Barnes2008-01-082-1/+6
| | | | | | | | | | 2008-01-07 Matthew Barnes <mbarnes@redhat.com> * shell/e-shell-window-commands.c: Update copyright notice in About dialog. svn path=/trunk/; revision=34777
* ** Fix for bug #219197Milan Crha2008-01-034-12/+66
| | | | | | | | | | | | | | | | | 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-102-1/+7
| | | | | | | | | | | 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-054-2/+137
| | | | | | | | | | | | | | 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
* ** Fixes bug #499920Matthew Barnes2007-11-303-3/+16
| | | | | | | | | | | | | | | | 2007-11-30 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #499920 * shell/es-event.h: Avoid including private header "e-shell.h". Use a forward declaration of EShell instead. * shell/es-event.c: Safe to include "e-shell.h" here. svn path=/trunk/; revision=34618
* ** Fix for bug #400213Milan Crha2007-11-302-45/+19
| | | | | | | | | | | | | 2007-11-30 Milan Crha <mcrha@redhat.com> ** Fix for bug #400213 * e-shell-window.c: (load_icons): Function removed. * e-shell-window.c: (update_offline_toggle_status): Do not use pixmaps and masks, load images from file, instead. svn path=/trunk/; revision=34615
* ** Fixes bug #497810Andre Klapper2007-11-272-9/+19
| | | | | | | | | | | | | 2007-11-26 Andre Klapper <a9016009@gmx.de> ** Fixes bug #497810 * ui/evolution.xml: * shell/e-shell-window-commands.c: add "Evolution FAQ" help menu item svn path=/trunk/; revision=34589
* ** Remove trailing whitespace from source code.Matthew Barnes2007-11-1530-278/+278
| | | | | | | | | 2007-11-14 Matthew Barnes <mbarnes@redhat.com> ** Remove trailing whitespace from source code. svn path=/trunk/; revision=34537
* ** Fixes bug #492058Damien Carbery2007-11-033-33/+41
| | | | | | | | | | | | | | | | 2007-11-02 Damien Carbery <damien.carbery@sun.com> ** Fixes bug #492058 * shell/e-shell-window.c: * shell/e-shell.c: * widgets/table/e-table-header-item.h: * widgets/table/e-table-header-item.c: * calendar/gui/e-itip-control.c: Name the anonymous unions to build with the Sun Studio compiler. svn path=/trunk/; revision=34485
* Update the copyright notice in the About dialog.Matthew Barnes2007-11-022-1/+6
| | | | | | | | | | 2007-11-01 Matthew Barnes <mbarnes@redhat.com> * e-shell-window-commands.c: Update the copyright notice in the About dialog. svn path=/trunk/; revision=34481
* ** Miscellaneous compiler warning fixes.Matthew Barnes2007-11-012-1/+6
| | | | | | | | | | | | | | | | 2007-11-01 Matthew Barnes <mbarnes@redhat.com> ** Miscellaneous compiler warning fixes. * composer/e-msg-composer.c (e_msg_composer_set_body_text): * shell/e-user-creatable-items-handler.c (ensure_menu_items): Don't compare a character pointer to a string literal. * widgets/table/e-table-click-to-add.c (etcta_add_message): Fix a const warning. svn path=/trunk/; revision=34476
* Remove the version. Update the stable version.Srinivasa Ragavan2007-10-293-2/+7
| | | | | | | | | | 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
* Warning fixes: - NULL vs 0 vs FALSE - ANSIfication of declarations - guintKjartan Maraas2007-10-269-25/+43
| | | | | | | | | | | | | | | | | | | | | | 2007-10-26 Kjartan Maraas <kmaraas@gnome.org> * e-component-registry.c: (query_components): * e-component-view.c: (e_component_view_new), (e_component_view_new_controls), (e_component_view_set_title), (e_component_view_set_button_icon): * e-config-upgrade.c: * e-shell-settings-dialog.c: (e_shell_settings_dialog_new): * e-shell-window.c: (component_view_free): * es-event.c: (es_event_peek): * es-menu.c: (es_menu_new): * importer/evolution-importer-client.c: (evolution_importer_client_create_control): Warning fixes: - NULL vs 0 vs FALSE - ANSIfication of declarations - guint for 1-bit bitfields svn path=/trunk/; revision=34430
* Add an icon for FilePageSetup.Matthew Barnes2007-10-172-0/+6
| | | | | | | | | | | 2007-10-16 Matthew Barnes <mbarnes@redhat.com> * shell/e-shell-window-commands.c: * ui/evolution.xml: Add an icon for FilePageSetup. svn path=/trunk/; revision=34393
* ** Fix for bug #329823Milan Crha2007-10-1111-0/+192
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-10-11 Milan Crha <mcrha@redhat.com> ** Fix for bug #329823 * Evolution-Shell.idl: (setButtonIcon): * e-sidebar.h: (e_sidebar_change_button_icon): * e-sidebar.c: (struct Button), (button_new), (button_free), (e_sidebar_change_button_icon): * e-shell.h: (EMainShellFunc), (e_shell_foreach_shell_window): * e-shell.c: (EMainShellFunc), (e_shell_foreach_shell_window): * e-component-view.h: (e_component_view_set_button_icon): * e-component-view.c: (e_component_view_set_button_icon): * e-shell-window.h: (e_shell_window_change_component_button_icon): * e-shell-window.c: (e_shell_window_change_component_button_icon): * e-shell-view.c: (struct change_icon_struct), (change_button_icon_func), (impl_ShellView_setButtonIcon), (e_shell_view_class_init): Added support to change component's button icon. * mail-component.h: (mail_indicate_new_mail): * mail-component.c: (mail_indicate_new_mail), (struct _MailComponentPrivate), (impl_dispose), (impl_createView): New function to indicate new mails on sidebar's button and storing component_view in priv struct for later use. * em-folder-view.c: (emfv_list_done_message_selected): * mail-folder-cache.c: (real_flush_updates): Indicate changes like for plugins for new mails. svn path=/trunk/; revision=34374
* ** Fixes bug #437579Matthew Barnes2007-10-103-5/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* ** Fixes bug #481325Matthew Barnes2007-10-042-2/+7
| | | | | | | | | | | | | | 2007-10-03 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #481325 * configure.in: Require GTK+ 2.12 * shell/e-shell-window-commands.c (command_about): Fix capitalization of program name in About dialog. svn path=/trunk/; revision=34348
* ** Fixes bug #469657Matthew Barnes2007-10-022-10/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Fix for bug #461195 from Hiroyuki Ikezoe.Matthew Barnes2007-09-286-13/+19
| | | | | | | Use GObject's marshalers whenever possible. svn path=/trunk/; revision=34324
* ** Fixes bug #477045Matthew Barnes2007-09-282-4/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-09-27 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #477045 * addressbook/gui/component/addressbook-component.c: * addressbook/gui/component/addressbook-view.c: * 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/gui/widgets/eab-contact-display.c: * calendar/gui/calendar-commands.c: * calendar/gui/calendar-component.c: * calendar/gui/dialogs/cal-attachment-select-file.c: * calendar/gui/dialogs/comp-editor.c: * calendar/gui/dialogs/event-editor.c: * calendar/gui/dialogs/task-editor.c: * calendar/gui/e-cal-popup.c: * calendar/gui/e-calendar-table.c: * calendar/gui/e-calendar-view.c: * calendar/gui/e-day-view.c: * calendar/gui/e-memo-table.c: * calendar/gui/e-week-view.c: * calendar/gui/memos-component.c: * calendar/gui/memos-control.c: * calendar/gui/tasks-component.c: * calendar/gui/tasks-control.c: * composer/e-msg-composer-select-file.c: * composer/e-msg-composer.c: * mail/em-folder-tree.c: * mail/em-folder-view.c: * mail/em-popup.c: * mail/mail-component.c: * mail/mail-mt.c: * mail/mail-send-recv.c: * mail/message-list.c: * plugins/exchange-folder-permission.c: * plugins/exchange-folder.c: * plugins/groupwise-features/share-folder-common.c: * shell/e-shell-window-commands.c: * ui/evolution-addressbook.xml: * ui/evolution-calendar.xml: * ui/evolution-composer-entries.xml: * ui/evolution-editor.xml: * ui/evolution-event-editor.xml: * ui/evolution-mail-list.xml: * ui/evolution-mail-message.xml: * ui/evolution-memos.xml: * ui/evolution-message-composer.xml: * ui/evolution-subscribe.xml: * ui/evolution-task-editor.xml: * ui/evolution-tasks.xml: * ui/evolution.xml: Use standard icon names where applicable. svn path=/trunk/; revision=34322
* Fix a build break I caused.Matthew Barnes2007-09-131-0/+35
| | | | svn path=/trunk/; revision=34242
* Move the test component to "shell/test" so it installs properly (#469992).Matthew Barnes2007-09-125-28/+11
| | | | svn path=/trunk/; revision=34235
* Add contributors to the credits section. Thanks a lot to EvaSDK.Srinivasa Ragavan2007-09-032-45/+129
| | | | | | | | * e-shell-window-commands.c: Add contributors to the credits section. Thanks a lot to EvaSDK. svn path=/trunk/; revision=34167
* ** Fix for bug #471791 (Move away from asserts to g_ret*)Srinivasa Ragavan2007-09-037-21/+36
| | | | svn path=/trunk/; revision=34159
* Update FSF address in header comments (#469886). Patch from TobiasMatthew Barnes2007-09-0258-109/+109
| | | | | | | | | | 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-082-2/+17
| | | | svn path=/trunk/; revision=33967
* ** Fix for bug #455799Hiroyuki Ikezoe2007-08-041-25/+0
| | | | | | | | | | | | 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
* Plugged memory leaks.Hiroyuki Ikezoe2007-07-264-2/+23
| | | | | | | | | | | | | 2007-07-26 Hiroyuki Ikezoe <poincare@ikezoe.net> * e-shell-window-command.c: (view_statusbar_item_toggled_handler), (view_sidebar_item_toggled_handler): * e-shell-window.c: (setup_status_bar): * e-user-creatable-items-handler.c: (setup_toolbar_button): Plugged memory leaks. svn path=/trunk/; revision=33851
* Declare es_event_target_new_shell().Matthew Barnes2007-07-102-0/+5
| | | | | | | | | 2007-07-09 Matthew Barnes <mbarnes@redhat.com> * es-event.h: Declare es_event_target_new_shell(). svn path=/trunk/; revision=33792
* ** Fixes bug #446894Matthew Barnes2007-07-062-0/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-07-06 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #446894 * ui/evolution.xml: Add a filepagesetup command, and a corresponding menu item within the print place holder. net result is to add a "file -> page setup" menu item to all components, just above the print menu items. * shell/e-shell-window-commands.c (command_page_setup): Callback for new FilePageSetup verb. * mail/em-format-html-print.c: Use new gtk_html_print_operation_run() function in GtkHTML. * e-util/e-print.c (load_page_setup): Extract GtkPageSetup properties from a GtkPrintSettings object. * e-util/e-print.c (save_page_setup): Merge GtkPageSetup properties into a GtkPrintSettings object. * e-util/e-print.[ch] (e_print_run_page_setup_dialog): New function runs a preconfigured Page Setup dialog and saves the configuration to GConf (/apps/evolution/shell/printing). svn path=/trunk/; revision=33762
* ** Added a hook event after the shell is started.Srinivasa Ragavan2007-07-034-1/+37
| | | | svn path=/trunk/; revision=33742
* ** Fix for bug #448201 from Gabor KelemenSrinivasa Ragavan2007-06-182-0/+8
| | | | svn path=/trunk/; revision=33703
* ** Fix for bug #325882Srinivasa Ragavan2007-06-184-3/+12
| | | | svn path=/trunk/; revision=33694
* removed createControls stuff. Fixes #444289Tobias Mueller2007-06-172-34/+5
| | | | | | | | | | 2007-06-17 Tobias Mueller <tobiasmue@svn.gnome.org> * evolution-test-component.c: removed createControls stuff. Fixes #444289 svn path=/trunk/; revision=33683
* ** Fixes bug #447727Matthew Barnes2007-06-152-32/+42
| | | | | | | | | | | | | | | | | | | | | | | | 2007-06-15 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #447727 * po/POTFILES.in: Remove e-clipped-label.c * mail/mail-send-recv.c: * shell/e-shell-folder-title-bar.c: * widgets/misc/e-info-label.c: * widgets/misc/e-multi-config-dialog.c: * widgets/misc/e-task-bar.c: Use ellipsized GtkLabels instead of EClippedLabels. * widgets/misc/e-clipped-label.[ch]: Remove these files. GTK+ provides this functionality now. * widgets/misc/Makefile.am: Remove e-clipped-label.[ch]. svn path=/trunk/; revision=33680
* ** Fix for bug #386503 from Matthew BarnesSrinivasa Ragavan2007-06-033-2/+9
| | | | svn path=/trunk/; revision=33647
* Fix for version removal from installed files.Srinivasa Ragavan2007-06-032-16/+14
| | | | svn path=/trunk/; revision=33646
* Fix for version removal from installed files.Srinivasa Ragavan2007-06-031-0/+0
| | | | svn path=/trunk/; revision=33642
* Fix compilation warnings in shell directory (#441055).Matthew Barnes2007-06-034-5/+16
| | | | svn path=/trunk/; revision=33627
* Fix file descriptor leaksJules Colding2007-05-292-1/+5
| | | | svn path=/trunk/; revision=33598
* Revert the change from 2007-05-11. (#407104)Matthew Barnes2007-05-142-7/+18
| | | | | | | | | | 2007-05-13 Matthew Barnes <mbarnes@redhat.com> * e-shell.c (impl_Shell_handleURI): Revert the change from 2007-05-11. (#407104) svn path=/trunk/; revision=33523
* ** Fixes part of bug #337616Matthew Barnes2007-05-132-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-05-12 Matthew Barnes <mbarnes@redhat.com> ** Fixes part of bug #337616 * Makefile.am: Add --disable-scrollkeeper to DISTCHECK_CONFIGURE_FLAGS. * addressbook/Makefile.am: * calendar/gui/Makefile.am: * mail/Makefile.am: * plugins/bogo-junk-plugins/Makefile.am: * plugins/default-mailer/Makefile.am: * shell/Makefile.am: Add $(schema_DATA) to DISTCLEANFILES. * plugins/bogo-junk-plugins/org-gnome-bogo-junk-plugin.eplug.in: Rename as org-gnome-bogo-junk-plugin.eplug.xml. * plugins/caldav/Makefile.am: * plugins/import-ics-attachments/Makefile.am: * plugins/publish-calendar/Makefile.am: Add "eplug" file to CLEANFILES. * plugins/mail-remote/Makefile.am: Add "eplug.xml" file to EXTRA_DIST. * po/POTFILES.in: Don't translate files we no longer ship. svn path=/trunk/; revision=33521
* Create a shell window if the schema or an alias was found. Previously thisMatthew Barnes2007-05-122-13/+15
| | | | | | | | | | | | | 2007-05-11 Matthew Barnes <mbarnes@redhat.com> * e-shell.c (impl_Shell_handleURI): Create a shell window if the schema or an alias was found. Previously this only opened a window if an alias was found but not the schema. Makes the GNOME Clock applet able to correctly start Evolution once again. (#407104) svn path=/trunk/; revision=33514
* Bump stable version recommendation from 2.8.1 to 2.10.1.Matthew Barnes2007-05-022-1/+6
| | | | | | | | | | 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-252-0/+6
| | | | | | | | | | | | | 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-232-1/+6
| | | | svn path=/trunk/; revision=33446
* Fix for bug #271851Srinivasa Ragavan2007-04-232-1/+10
| | | | svn path=/trunk/; revision=33444
* Fix for bug #259606Srinivasa Ragavan2007-04-205-14/+101
| | | | svn path=/trunk/; revision=33438
* Massive code cleanup (bug #429422)Matthew Barnes2007-04-208-21/+33
| | | | svn path=/trunk/; revision=33432
* Fix "incompatible pointer type" warnings (#360619).Matthew Barnes2007-03-302-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-03-29 Matthew Barnes <mbarnes@redhat.com> * calendar/gui/e-day-view.c: * calendar/gui/e-week-view.c: * calendar/gui/tasks-control.c: * composer/e-msg-composer-select-file.c: * mail/em-account-editor.c: * mail/em-folder-view.c: * mail/em-format-html-display.c: * mail/em-format-html.c: * mail/em-format.h: * mail/em-mailer-prefs.c: * mail/em-vfolder-rule.c: * mail/mail-ops.c: * mail/mail-send-recv.c: * mail/message-list.c: * plugins/bbdb/gaimbuddies.c: * plugins/itip-formatter/itip-formatter.c: * plugins/save-calendar/save-calendar.c: * shell/e-shell-window.c: * widgets/misc/e-icon-entry.c: * widgets/table/e-table-header-utils.c: * widgets/table/e-table-item.c: * widgets/table/e-tree-header-item.c: * widgets/table/e-tree-table-adapter.c: Fix "incompatible pointer type" warnings (#360619). svn path=/trunk/; revision=33339
* ** Fixes bug #419524Matthew Barnes2007-03-2113-32/+44
| | | | | | | | | | | | | | | | | | | | | | | 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-202-78/+71
| | | | | | | | | | | | | | | | | | | | | | | 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 #360240Matthew Barnes2007-03-172-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2007-03-16 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #360240 * addressbook/gui/widgets/e-addressbook-view.c (e_contact_print_button): * addressbook/printing/e-contact-print.c (complete_sequence), (e_contact_build_style), (e_contact_print_response), (e_contact_print_contact_list_dialog_new): * shell/e-shell-importer.c (importer_file_page_new): * plugins/startup-wizard/startup-wizard.c (startup_wizard_timezone_page): * mail/em-vfolder-rule.c (select_source_with_changed), (get_widget): * mail/em-format-quote.c (emfq_format_source): * mail/mail-ops.c (save_messages_save): * mail/em-format.c (emf_init): * mail/em-format-html-display (em_format_html_get_search_dialog), (em_format_html_display_seearch_with), (ehhd_resize), (efhd_attachment_optional), (efhd_format_optional): * mail/em-folder-view.c (emfv_init): * mail/message-list.c (ml_tree_value_at): * composer/e-msg-composer-hdrs (header_new_recipient): * composer/e-msg-composer.c (e_msg_composer_show_help), (drop_action): * widgets/table/e-cell-text.c (ect_free_color): * widgets/misc/e-calendar-item.c (e_calendar_item_unrealize): * widgets/misc/e-icon-entry.c (e_icon_entry_pack_widget): Remove unused variables. svn path=/trunk/; revision=33315
* Update contributors' list for credits.Harish Krishnaswamy2007-03-132-0/+15
| | | | | | | | | 2007-03-12 Harish Krishnaswamy <kharish@novell.com> * e-shell-window-commands.c : Update contributors' list for credits. svn path=/trunk/; revision=33307
* ** Fixes bug #360946Matthew Barnes2007-02-133-63/+42
| | | | | | | | | | | | | | 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
* Print migration updates from Ebby Wiselyn.Srinivasa Ragavan2007-02-122-291/+12
| | | | svn path=/trunk/; revision=33201
* Fix the build. Fixes #403744William Jon McCann2007-02-102-1/+5
| | | | | | | | | 2007-02-09 William Jon McCann <mccann@jhu.edu> * e-shell-nm-glib.c: Fix the build. Fixes #403744 svn path=/trunk/; revision=33194
* ** Committing Ebby Wiselyn's patch for GtkPrint API migration. 2006-01-22Srinivasa Ragavan2007-01-232-0/+290
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2006-01-22 Srinivasa Ragavan <sragavan@novell.com> ** Committing Ebby Wiselyn's patch for GtkPrint API migration. 2006-01-22 Srinivasa Ragavan <sragavan@novell.com> ** Committing Ebby Wiselyn's patch for GtkPrint API migration. 2006-01-22 Srinivasa Ragavan <sragavan@novell.com> ** Committing Ebby Wiselyn's patch for GtkPrint API migration. 2006-01-22 Srinivasa Ragavan <sragavan@novell.com> ** Committing Ebby Wiselyn's patch for GtkPrint API migration. 2006-01-22 Srinivasa Ragavan <sragavan@novell.com> ** Committing Ebby Wiselyn's patch for GtkPrint API migration. 2006-01-22 Srinivasa Ragavan <sragavan@novell.com> ** Committing Ebby Wiselyn's patch for GtkPrint API migration. 2006-01-22 Srinivasa Ragavan <sragavan@novell.com> ** Committing Ebby Wiselyn's patch for GtkPrint API migration. 2006-01-22 Srinivasa Ragavan <sragavan@novell.com> ** Committing Ebby Wiselyn's patch for GtkPrint API migration. 2006-01-22 Srinivasa Ragavan <sragavan@novell.com> ** Committing Ebby Wiselyn's patch for GtkPrint API migration. 2006-01-22 Srinivasa Ragavan <sragavan@novell.com> ** Committing Ebby Wiselyn's patch for GtkPrint API migration. 2006-01-22 Srinivasa Ragavan <sragavan@novell.com> ** Committing Ebby Wiselyn's patch for GtkPrint API migration. 2006-01-22 Srinivasa Ragavan <sragavan@novell.com> ** Committing Ebby Wiselyn's patch for GtkPrint API migration. 2006-01-22 Srinivasa Ragavan <sragavan@novell.com> ** Committing Ebby Wiselyn's patch for GtkPrint API migration. 2006-01-22 Srinivasa Ragavan <sragavan@novell.com> ** Committing Ebby Wiselyn's patch for GtkPrint API migration. 2006-01-22 Srinivasa Ragavan <sragavan@novell.com> ** Committing Ebby Wiselyn's patch for GtkPrint API migration. 2006-01-22 Srinivasa Ragavan <sragavan@novell.com> ** Committing Ebby Wiselyn's patch for GtkPrint API migration. 2006-01-22 Srinivasa Ragavan <sragavan@novell.com> ** Committing Ebby Wiselyn's patch for GtkPrint API migration. 2006-01-22 Srinivasa Ragavan <sragavan@novell.com> ** Committing Ebby Wiselyn's patch for GtkPrint API migration. 2006-01-22 Srinivasa Ragavan <sragavan@novell.com> ** Committing Ebby Wiselyn's patch for GtkPrint API migration. 2006-01-22 Srinivasa Ragavan <sragavan@novell.com> ** Committing Ebby Wiselyn's patch for GtkPrint API migration. svn path=/trunk/; revision=33134
* Fix memory leak of iid.Harish Krishnaswamy2006-12-042-0/+5
| | | | | | | | 2006-12-03 Harish Krishnaswamy <kharish@novell.com> * e-shell.c: (impl_dispose): Fix memory leak of iid. svn path=/trunk/; revision=33041
* Register import eplugin type. Fixes bug #372528.Chris Halls2006-12-032-0/+7
| | | | | | | | | 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-172-1/+6
| | | | | | | | | 2006-10-17 Harish Krishnaswamy <kharish@novell.com> * main.c: (show_development_warning): Update last stable version. svn path=/trunk/; revision=32903
* Fixes #360815Chenthill Palanisamy2006-10-162-0/+6
| | | | svn path=/trunk/; revision=32897
* addressbook/importers/evolution-ldif-importer.cFrancisco Javier F. Serrador2006-10-151-1/+1
| | | | | | | | | | | | | | | | 2006-10-15 Francisco Javier F. Serrador <serrador@openshine.com> * addressbook/gui/widgets/eab-contact-display.c: addressbook/importers/evolution-ldif-importer.c addressbook/importers/evolution-vcard-importer.c calendar/importers/icalendar-importer.c plugins/groupwise-features/properties.glade plugins/mailing-list-actions/org-gnome-mailing-list-actions.eplug.xml plugins/save-attachments/org-gnome-save-attachments.xml shell/shell.error.xml : Make some string improvements to allow better use of gettext compendia. svn path=/trunk/; revision=32879
* ** Fix for bug #334966Srinivasa Ragavan2006-10-142-1/+15
| | | | svn path=/trunk/; revision=32869
* ** Fix for bug #343331Srinivasa Ragavan2006-09-282-1/+18
| | | | | | | | | | | 2006-09-28 Srinivasa Ragavan <sragavan@novell.com> ** Fix for bug #343331 * e-shell-window.c: (impl_dispose): Remove the timer which seem to get activated after we destroy. svn path=/trunk/; revision=32817
* ** Fixes #351332Matthew Barnes2006-09-192-0/+13
| | | | | | | | | | 2006-09-18 Matthew Barnes <mbarnes@redhat.com> ** Fixes #351332 * e-shell-window.c: Fix implicit function declarations. svn path=/trunk/; revision=32792
* update last stable version number from 2.6.3 to 2.8.0Andre Klapper2006-09-142-1/+5
| | | | | | | | 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
* Add documentation credits.Harish Krishnaswamy2006-09-042-0/+6
| | | | | | | | | 2006-09-04 Harish Krishnaswamy <kharish@novell.com> * e-shell-window-commands.c: Add documentation credits. svn path=/trunk/; revision=32738
* ** Fix for bug #334821 by Tollef Fog HeenSrinivasa Ragavan2006-08-232-1/+8
| | | | svn path=/trunk/; revision=32642
* Make sure default window sizes are positive numbers. Fixes bug 349967.Daniel Gryniewicz2006-08-232-3/+11
| | | | | | | | | | 2006-08-23 Daniel Gryniewicz <dang@gentoo.org> * e-shell-window.c: Make sure default window sizes are positive numbers. Fixes bug 349967. Committed by Andre Klapper. svn path=/trunk/; revision=32640
* Update some credits for the previous development series.Andre Klapper2006-08-232-1/+9
| | | | | | | | | 2006-08-22 Andre Klapper <a9016009@gmx.de> * e-shell-window-commands.c: Update some credits for the previous development series. svn path=/trunk/; revision=32632
* ** Fixes bug #346317Srinivasa Ragavan2006-08-222-1/+7
| | | | svn path=/trunk/; revision=32621
* Fix for bug 346797Srinivasa Ragavan2006-08-212-17/+20
| | | | svn path=/trunk/; revision=32609
* Plug some leaks.Kjartan Maraas2006-08-172-0/+7
| | | | | | | | | 2006-08-17 Kjartan Maraas <kmaraas@gnome.org> * e-user-creatable-items-handler.c: (new_button_change), (setup_toolbar_button): Plug some leaks. svn path=/trunk/; revision=32559
* update last stable version number from 2.6.2 to 2.6.3Andre Klapper2006-08-022-1/+5
| | | | | | | | 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
* Fix warnings at build-time, and clean up the connections to the D-Bus onBastien Nocera2006-07-274-8/+35
| | | | | | | | | | | | 2006-07-27 Bastien Nocera <hadess@hadess.net> * e-shell-nm-glib.c: (e_shell_glib_network_monitor), (e_shell_nm_glib_initialise), (e_shell_nm_glib_dispose): * e-shell-nm.c: (e_shell_dbus_dispose): * e-shell-window.c: (impl_dispose): Fix warnings at build-time, and clean up the connections to the D-Bus on exit (Closes: #332387) svn path=/trunk/; revision=32425
* Fix for bug #345331Srinivasa Ragavan2006-07-142-6/+12
| | | | svn path=/trunk/; revision=32302
* ** Fixes bug #347182Hiroyuki Ikezoe2006-07-122-48/+38
| | | | | | | | | | | * e-user-creatable-items-handlers.c: (set_combo_button_style): New function. (new_button_change): Call set_combo_button_style. (setup_toolbar_button): Call set_combo_button_style. * misc/e-combo-button.c: (e_combo_button_set_label): Removed needless g_return_if_fail(). svn path=/trunk/; revision=32294
* Fix for #346613. Fix the problem pointed out by JohnnyLi Yuan2006-07-072-1/+10
| | | | | | | | | | | | | 2006-07-07 Li Yuan <li.yuan@sun.com> * e-shell-window.c: (setup_widgets): Fix for #346613. Fix the problem pointed out by Johnny <jjohnny@novell.com>. When maximize Evolution, close and start Evolution sometimes, the sidebar grows towards right. Set the view_notebook can be expanded when the paned widget is resized. svn path=/trunk/; revision=32246
* Fix for #346613. Make the view_notebook cannot be resized shorter than itsLi Yuan2006-07-062-1/+7
| | | | | | | | | | 2006-07-05 Li Yuan <li.yuan@sun.com> * e-shell-window.c: (setup_widgets): Fix for #346613. Make the view_notebook cannot be resized shorter than its need. svn path=/trunk/; revision=32237
* Fix for minor packing issue in New button.Srinivasa Ragavan2006-06-212-1/+6
| | | | svn path=/trunk/; revision=32185
* Don't call bonobo_activation_active_server_unregister() here, it's tooTor Lillqvist2006-06-192-4/+15
| | | | | | | | | | | | | | 2006-06-17 Tor Lillqvist <tml@novell.com> * e-shell.c (impl_finalize): Don't call bonobo_activation_active_server_unregister() here, it's too late, the EShell Bonobo object has already been deactivated and its associated CORBA object is NULL. (notify_no_windows_left_idle_cb): Instead, call bonobo_activation_active_server_unregister() here, when the EShell Bonobo object is still fully active. svn path=/trunk/; revision=32177
* Fix for bug #252814Srinivasa Ragavan2006-06-192-7/+82
| | | | svn path=/trunk/; revision=32170
* update last stable version number from 2.6.1 to 2.6.2Andre Klapper2006-06-172-1/+5
| | | | | | | | 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
* Fix for bug 341334Srinivasa Ragavan2006-06-032-2/+10
| | | | svn path=/trunk/; revision=32070
* Change the variable name from is_actived to is_activeLi Yuan2006-05-151-3/+3
| | | | svn path=/trunk/; revision=31987
* Fixes #341525Li Yuan2006-05-152-9/+21
| | | | | | | | | | | 2006-05-15 Li Yuan <li.yuan@sun.com> Fixes #341525 * e-sidebar.c: (button_toggled_callback): If the button has been selected, it is no need to emit the signal. svn path=/trunk/; revision=31986
* Fixes #323853Nancy Cai2006-04-302-5/+25
| | | | | | | | | | | | | 2006-04-30 Nancy Cai <nancy.cai@sun.com> Fixes #323853 * e-shell-importer.c: (filename_changed), (item_selected), (importer_file_page_new), (prepare_file_page): replacing GnomeFileEntry by GtkFileButton, which can import task files with none UTF-8 filenames. svn path=/trunk/; revision=31930
* reviewed by: Srinivasa RagavanSven Herzberg2006-04-282-6/+98
| | | | | | | | | | | | | 2006-04-28 Sven Herzberg <herzi@gnome-de.org> reviewed by: Srinivasa Ragavan * shell/apps_evolution_shell.schemas.in.in: added boolean key for the maximized state of the window * shell/e-shell-window.c: added window state saving and updated window size saving to work as expected (fixes bug 243962) svn path=/trunk/; revision=31926
* update last stable version number from 2.4.2.1 to 2.6.1Andre Klapper2006-04-272-1/+5
| | | | | | | 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-242-0/+7
| | | | | | | | | 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
* Update credits for the previous development series.Harish Krishnaswamy2006-04-242-0/+36
| | | | | | | | | 2006-04-24 Harish Krishnaswamy <kharish@novell.com> * e-shell-window-commands.c: Update credits for the previous development series. svn path=/trunk/; revision=31882
* Commiting patch for bug #337258.Srinivasa Ragavan2006-04-243-2/+9
| | | | svn path=/trunk/; revision=31873
* Adding schema for statusbar_visible to enable status bar by defaultSrinivasa Ragavan2006-04-222-1/+20
| | | | svn path=/trunk/; revision=31855
* #include <string.h>Jeffrey Stedfast2006-04-201-0/+1
| | | | svn path=/trunk/; revision=31837
* 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
* Intercept the Disconnected signal and setup a timeout to try and reconnectJeffrey Stedfast2006-04-182-78/+121
| | | | | | | | | | 2006-04-18 Jeffrey Stedfast <fejj@novell.com> * e-shell-nm.c (e_shell_network_monitor): Intercept the Disconnected signal and setup a timeout to try and reconnect when the dbus daemon comes back up. svn path=/trunk/; revision=31828
* Clarify my last entry.Tor Lillqvist2006-02-211-3/+4
| | | | svn path=/trunk/; revision=31554
* On Win32, set the gtk-fallback-icon-theme to "gnome".Tor Lillqvist2006-02-212-0/+7
| | | | | | | | | 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-212-1/+13
| | | | | | | | | | | 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
* changing year from 2005 to 2006.Andre Klapper2006-02-072-1/+5
| | | | | | | 2006-02-07 Andre Klapper <a9016009@gmx.de> * e-shell-window-commands.c: changing year from 2005 to 2006. svn path=/trunk/; revision=31434
* fixing typos. fixes #304996 partially.Andre Klapper2006-02-062-1/+5
| | | | | | | | | 2006-02-05 Andre Klapper <a9016009@gmx.de> * gui/component/ldap-config.glade: * shell.error.xml: fixing typos. fixes #304996 partially. svn path=/trunk/; revision=31409
* init the nm-dbus connection once.Shreyas Srinivasan2006-02-052-6/+12
| | | | | | | | 2006-02-05 Shreyas Srinivasan <sshreyas@novell.com> * e-shell-nm-glib.c: init the nm-dbus connection once. svn path=/trunk/; revision=31406
* Remove unused code and fix format specifiers in some cases.Kjartan Maraas2006-01-307-23/+16
| | | | | | | | | | | | | | | 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
* ** Fixes Bug #257654Rajeev ramanathan2006-01-304-0/+70
| | | | | | | | | | | 2006-01-26 Rajeev ramanathan <rajeevramanathan_2004@yahoo.co.in> ** Fixes Bug #257654 * e-shell-window.c: * e-shell-window-commands.c: Added code to show/hide sidebar. svn path=/trunk/; revision=31345