Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bug #627536 - Open meeting as meeting, not as appointment, in week view | Milan Crha | 2011-06-30 | 1 | -2/+1 |
| | |||||
* | Free/busy meeting view doesn't work due to non-working extension | Milan Crha | 2011-06-30 | 10 | -0/+58 |
| | |||||
* | Show calendar backend errors in an alert sink | Milan Crha | 2011-06-30 | 3 | -80/+45 |
| | |||||
* | Bug #632962 - Duplicate "On this computer" sources after update | Milan Crha | 2011-06-30 | 3 | -39/+37 |
| | |||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2010-11-10 | 1 | -1/+1 |
| | |||||
* | Move calendar preferences to the calendar module. | Matthew Barnes | 2010-11-10 | 33 | -169/+3962 |
| | | | | | Continue replacing the use of calendar-config functions with GObject property bindings to EShellSettings properties. | ||||
* | Bug #612181 - Show recurring events in italic in date navigator | Milan Crha | 2010-11-10 | 1 | -0/+4 |
| | |||||
* | Utilize the new ESourceSelector:primary-selection property. | Matthew Barnes | 2010-11-10 | 7 | -112/+55 |
| | |||||
* | Bug 628139 - Thread-safety issues in libical time zone loading | Matthew Barnes | 2010-11-10 | 1 | -0/+26 |
| | |||||
* | Remove unused function | Benjamin Otte | 2010-10-30 | 1 | -16/+0 |
| | | | | gcc warning fix | ||||
* | Bug #632199 - Opening calendar from panel clock goes to previous day | Milan Crha | 2010-10-29 | 1 | -2/+14 |
| | |||||
* | Simplify EActivity. | Matthew Barnes | 2010-10-23 | 5 | -20/+27 |
| | | | | | | | | | | | | | | | | | | | | | | With unintrusive error dialogs gone, we can cut some unnecessary bits out of EActivity. I'm also adding a new enum property called "state", which is one of: E_ACTIVITY_RUNNING E_ACTIVITY_WAITING E_ACTIVITY_CANCELLED E_ACTIVITY_COMPLETED The state of an activity must be explicitly changed. In particular, when the user cancels an activity the state should be set only after confirming the operation has been cancelled and not when cancellation is requested (e.g. after receiving a G_IO_ERROR_CANCELLED, not when the GCancellable emits "cancelled"). EActivityBar and EActivityProxy widgets have been updated to make this distinction clearer in the UI. E_ACTIVITY_WAITING will be used when activities have to be queued and dispatched in sequence, which I haven't written yet. | ||||
* | Replace EBinding with GBinding. | Matthew Barnes | 2010-10-14 | 19 | -199/+278 |
| | | | | | | GObject now does property bindings itself. Requires GLib >= 2.26. | ||||
* | Calendar's "Open Web Page" actions doesn't work | Milan Crha | 2010-10-06 | 4 | -4/+4 |
| | |||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2010-10-04 | 3 | -7/+18 |
| | |||||
* | Bug #629462 - Tasks 'Due' filters don't work properly | Milan Crha | 2010-09-29 | 2 | -13/+19 |
| | |||||
* | Adapt to Camel API changes. | Matthew Barnes | 2010-09-28 | 1 | -1/+1 |
| | |||||
* | Add a GCancellable to EActivity. | Matthew Barnes | 2010-09-19 | 5 | -5/+10 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | EActivity now uses a GCancellable to manage cancellations, instead of having its own redundant cancellation API. API changes are as follows: + e_activity_get_cancellable() + e_activity_set_cancellable() - e_activity_cancel() - e_activity_is_cancelled() - e_activity_get_allow_cancel() - e_activity_set_allow_cancel() EActivity's "cancelled" signal remains, but only as a repeater for GCancellable::cancelled signals. It should not be emitted directly. The presence of a GCancellable implies that cancellation is allowed. EActivity does not create its own default GCancellable, it has to be given one. If a CamelOperation (cast as a GCancellable) is given, EActivity will configure itself to listen for status updates from the CamelOperation and propagate the information to its own "primary-text" and "percent" properties. These changes allowed me to start cleaning up some of the incredibly convoluted logic in mail-mt.c -- in particular, mail_operation_status() is completely gone now. mail-mt.c is still in a transitional state -- much more significant changes coming soon. | ||||
* | Bug #346438 - Error dialog too wide. | Vibha Yadav | 2010-09-14 | 1 | -10/+10 |
| | | | | | The patch suggests displaying the calendar name and group instead of uri for the source of error. | ||||
* | Coding style and whitespace cleanups. | Matthew Barnes | 2010-09-12 | 1 | -1/+1 |
| | |||||
* | Re-work my GtkDialog:has-separator workaround. | Matthew Barnes | 2010-09-11 | 1 | -2/+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 Barnes | 2010-09-11 | 1 | -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 Barnes | 2010-08-29 | 7 | -14/+23 |
| | |||||
* | Add e_load_cal_source_async(). | Matthew Barnes | 2010-08-24 | 6 | -331/+376 |
| | | | | | | | | | | | | | | | | | Similar to e_load_book_source_async() in libedataserverui (and may wind up there eventually). This replaces e_auth_new_cal_from_source(). void e_load_cal_source_async (ESource *source, ECalSourceType source_type, icaltimezone *default_zone, GtkWindow *parent, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data); ECal * e_load_cal_source_finish (ESource *source, GAsyncResult *result, GError **error); | ||||
* | Fix more non-removal of signals on user_data object distruction by | Michael Meeks | 2010-08-21 | 1 | -36/+36 |
| | | | | using g_signal_connect_object in many places; fixes bgo#627525# | ||||
* | Defer the load / creation of configuration UI with changes to | Michael Meeks | 2010-08-11 | 1 | -23/+11 |
| | | | | | | | | | e_preferences_window to take factory callbacks and store a reference to the shell. - This makes start-up substantially faster, particularly on Atom (eg.). Remove a number of idle handlers used to create these UIs in the first instance, cleaning the code. | ||||
* | use g_signal_connect_object to improve reliability | Michael Meeks | 2010-08-05 | 1 | -40/+40 |
| | |||||
* | Bug 625624 - Customizations of contacts views forgotten | Matthew Barnes | 2010-07-30 | 2 | -2/+8 |
| | | | | Found similar bugs in EShellMemoContent and EShellTaskContent. | ||||
* | Migrate ~/.evolution to XDG base directories. | Matthew Barnes | 2010-07-27 | 1 | -5/+10 |
| | | | | | Migration runs just before the main loop starts. It's just a sequence of local directory and file renames. | ||||
* | Report error to user when fails to open calendar/task/memo list | Milan Crha | 2010-07-16 | 3 | -0/+36 |
| | |||||
* | Clean up "ensure_sources" backend routines. | Matthew Barnes | 2010-07-16 | 3 | -205/+55 |
| | | | | | | | | | Remove redundant logic (we call e_source_list_ensure_group() and then proceed to do the same thing it just did), and use "local:" as the base URI for the "On This Computer" group. This requires commit 9e0845207b39f256f7e81d388741ed30a764ea7b in Evolution-Data-Server to work properly. | ||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2010-07-12 | 3 | -12/+24 |
| | |||||
* | Bug #623204 - Be able to report detailed errors from backends | Milan Crha | 2010-07-09 | 7 | -64/+64 |
| | |||||
* | Migrate from CamelException to GError. | Matthew Barnes | 2010-07-09 | 1 | -1/+1 |
| | |||||
* | Bug #621770 - Bottom-left calendar too big | Milan Crha | 2010-06-25 | 1 | -1/+0 |
| | |||||
* | EShellContent: Add a focus_search_results() method. | Matthew Barnes | 2010-06-25 | 3 | -0/+43 |
| | | | | | This gives EShellSearchbar something concrete to call to direct focus away from itself instead of tabbing forward and hoping for the best. | ||||
* | Bug 622633 - Can't launch Evolution from clock applet | Matthew Barnes | 2010-06-25 | 2 | -1/+86 |
| | |||||
* | Bug #611165 - Use memo start date from a calendar view, if active | Milan Crha | 2010-06-24 | 3 | -4/+8 |
| | |||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2010-06-20 | 1 | -2/+4 |
| | |||||
* | Bug 613038 - Preview pane size not remembered | Matthew Barnes | 2010-05-29 | 2 | -26/+64 |
| | | | | | | | Converted size restoration of all preview panes to be triggered by EShellWindow::shell-view-created signal. The signal is emitted when the view is fully initialized and visible. Shell views can use that as a trigger for restoring pane sizes from GConf. | ||||
* | Fix critical warning in calendar express mode. | Matthew Barnes | 2010-05-28 | 1 | -13/+9 |
| | |||||
* | Bug 619904 - Mnemonic issues in express mode | Matthew Barnes | 2010-05-28 | 1 | -1/+1 |
| | |||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2010-05-27 | 3 | -5/+14 |
| | |||||
* | Some post-merge cleanup. | Matthew Barnes | 2010-05-27 | 1 | -22/+5 |
| | |||||
* | Merge branch 'express2' | Matthew Barnes | 2010-05-27 | 9 | -96/+240 |
|\ | |||||
| * | Coding style and whitespace cleanup. | Matthew Barnes | 2010-05-25 | 5 | -27/+26 |
| | | |||||
| * | Fix compiler warnings. | Matthew Barnes | 2010-05-25 | 2 | -72/+77 |
| | | |||||
| * | Merge branch 'gnome-2-30' into express2 | Matthew Barnes | 2010-05-25 | 1 | -0/+7 |
| |\ | |||||
| | * | Create the source groups required to ensure local adresssbooks and calendars ↵ | Chenthill Palanisamy | 2010-05-20 | 1 | -0/+7 |
| | | | | | | | | | | | | are created | ||||
| * | | Merge commit 'origin/express2' into express2 | Michael Meeks | 2010-05-19 | 2 | -10/+28 |
| |\ \ | |||||
| | * | | Merge branch 'gnome-2-30' into express2 | Matthew Barnes | 2010-05-17 | 2 | -10/+28 |
| | |\| | |||||
| | | * | Bug 615745 - New task pop up in calendar day view doesn't work | Matthew Barnes | 2010-05-14 | 2 | -10/+28 |
| | | | | |||||
| * | | | hide meeting creation if we have no accounts configured, for Evo | Michael Meeks | 2010-05-19 | 2 | -0/+7 |
| |/ / | | | | | | | | | | calendar in standalone mode | ||||
| * | | Handle adding 'X' close button on the menu bar. Restore adding the same | Srinivasa Ragavan | 2010-05-11 | 1 | -0/+26 |
| | | | | | | | | | | | | for adding in calendar since it doesn't have a toolbar. | ||||
| * | | Add 'add new calendar' to the side pane like annum. | Srinivasa Ragavan | 2010-04-27 | 1 | -1/+31 |
| | | | |||||
| * | | Handle the side pane's date navigator size. Set a minimum size of 150px | Srinivasa Ragavan | 2010-04-27 | 1 | -2/+3 |
| | | | | | | | | | | | | | | | and make sure it doesn't get smaller than that. Also pick the pane position from the right place. | ||||
| * | | fix build snafu (urk)MEEGO_1_0 | Michael Meeks | 2010-04-23 | 1 | -1/+1 |
| | | | |||||
| * | | add defines to ease MeeGo building | Michael Meeks | 2010-04-23 | 1 | -0/+10 |
| | | | |||||
| * | | Merge commit 'origin/gnome-2-30' into express2 | Michael Meeks | 2010-04-22 | 2 | -1/+88 |
| |\| | |||||
| | * | Bug 596601 (bnc) - monitor system timezone changes in evolution | Chenthill Palanisamy | 2010-04-16 | 2 | -1/+88 |
| | | | |||||
| * | | Merge commit 'origin/express2' into express2 | Michael Meeks | 2010-04-20 | 1 | -27/+0 |
| |\ \ | |||||
| | * | | Get rid of custom quit for calendar and instead use the shell | Srinivasa Ragavan | 2010-04-19 | 1 | -27/+0 |
| | | | | |||||
| * | | | add proxy support to auto-configuration | Michael Meeks | 2010-04-20 | 1 | -1/+2 |
| |/ / | |||||
| * | | Just close the window and not the entire shell | Srinivasa Ragavan | 2010-04-19 | 1 | -3/+8 |
| | | | |||||
| * | | Remove /apps/evolution/calendar/date_navigator/show_week_numbers | Federico Mena Quintero | 2010-04-18 | 2 | -5/+1 |
| | | | | | | | | | | | | Signed-off-by: Federico Mena Quintero <federico@novell.com> | ||||
| * | | Use a single /apps/evolution/calendar/display/show_week_numbers | Federico Mena Quintero | 2010-04-18 | 2 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We have two preferences for showing week numbers in various places. We will combine these to be a single preference. This change replaces /apps/evolution/calendar/display/day_view_show_week_number with a general /apps/evolution/calendar/display/show_week_numbers. We'll deal with the other preference in subsequent commits. Signed-off-by: Federico Mena Quintero <federico@novell.com> | ||||
| * | | Merge commit 'origin/express2' into express2 | Michael Meeks | 2010-04-15 | 3 | -0/+9 |
| |\ \ | |||||
| | * | | Merge branch 'gnome-2-30' into express2 | Matthew Barnes | 2010-04-13 | 3 | -0/+9 |
| | |\| | |||||
| | | * | Bug #611646 - Calendar shows recurring birthdays incorrectly | Milan Crha | 2010-04-13 | 3 | -0/+9 |
| | | | | |||||
| * | | | remove custom close / searchbar hiding hacks for express mode, | Michael Meeks | 2010-04-15 | 1 | -4/+0 |
| |/ / | | | | | | | | | | use the new / stock shell versions now. | ||||
| * | | remove special case for calendar | Michael Meeks | 2010-04-12 | 1 | -11/+0 |
| | | | |||||
| * | | Hide searchbar in calendar view in express mode. | Srinivasa Ragavan | 2010-04-07 | 1 | -1/+5 |
| | | | |||||
| * | | Fix mismatched quotes. | Matthew Barnes | 2010-04-07 | 5 | -5/+5 |
| | | | |||||
| * | | Simplify the search UI for express mode. | Matthew Barnes | 2010-04-07 | 3 | -8/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For express mode: - Move the search bar up to the toolbar. - Hide the "filter" combo box and lock down the first item. - Hide the "scope" combo box and lock down the first item. (This is the combo box with "Current Folder" only in the mailer.) - EShellView owns the search bar widget now instead of EShellContent. - Insert several nasty hacks that will likely come back to bite me. Conflicts: doc/reference/shell/eshell-sections.txt | ||||
| * | | Add extensions to configure calender widgets. | Matthew Barnes | 2010-04-07 | 17 | -5/+760 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make ECalendarItem, ECalendarView, ECalModel, EDateEdit, EMeetingStore, and EMeetingTimeSelector extensible and register extensions to automatically bind every instance to the appropriate EShellSettings. Conflicts: calendar/gui/gnome-cal.c modules/calendar/e-cal-shell-content.c | ||||
| * | | Redo Calendar for express mode. Just design/layout changes. | Srinivasa Ragavan | 2010-04-07 | 4 | -76/+151 |
| |/ | |||||
| * | Bug 614926 - Memos and Tasks accelerators switched since 2.28 | Matt McCutchen 2 | 2010-04-07 | 2 | -2/+2 |
| | | |||||
| * | Bug #613352 - Changed time range not propagated to calendar | Milan Crha | 2010-04-01 | 1 | -2/+4 |
| | | |||||
| * | Bug #613356 - Calendar doesn't save Task/Memo table state | Milan Crha | 2010-04-01 | 3 | -12/+75 |
| | | |||||
* | | Fix compiler warnings. | Matthew Barnes | 2010-05-22 | 1 | -0/+2 |
| | | |||||
* | | Create the source groups required to ensure local adresssbooks and calendars ↵ | Chenthill Palanisamy | 2010-05-20 | 1 | -0/+7 |
| | | | | | | | | are created | ||||
* | | Bug 615745 - New task pop up in calendar day view doesn't work | Matthew Barnes | 2010-05-14 | 2 | -10/+28 |
| | | |||||
* | | Bug #607257 - Add checks for event->comp_data != NULL | Milan Crha | 2010-05-14 | 3 | -3/+38 |
| | | |||||
* | | Coding style and whitespace cleanup. | Matthew Barnes | 2010-05-02 | 7 | -35/+137 |
| | | |||||
* | | Camel is now GObject-based. | Matthew Barnes | 2010-04-24 | 1 | -1/+1 |
| | | |||||
* | | Use accessor functions instead direct access (GSEAL work) | Javier Jardón | 2010-04-13 | 2 | -2/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Still remaining: GtkAccessible::widget GtkAssistant::forward GtkAssistant::back GtkObject::flags GtkTreeStore::stamp The GtkAssistant fields are related to bug #596428. We don't need accessor functions so much as the enhancement described there implemented. https://bugzilla.gnome.org/show_bug.cgi?id=615613 | ||||
* | | Bug #611646 - Calendar shows recurring birthdays incorrectly | Milan Crha | 2010-04-13 | 3 | -0/+9 |
| | | |||||
* | | Giant leap towards GSEAL compliance. | Matthew Barnes | 2010-04-08 | 1 | -2/+3 |
| | | |||||
* | | Bug 614926 - Memos and Tasks accelerators switched since 2.28 | Matt McCutchen 2 | 2010-04-07 | 2 | -2/+2 |
| | | |||||
* | | Adapt to Camel API changes. | Matthew Barnes | 2010-04-04 | 1 | -1/+1 |
| | | |||||
* | | Only #include Camel's top-level header. | Matthew Barnes | 2010-04-03 | 3 | -2/+3 |
| | | |||||
* | | Bug #325121 - Do not translate developer strings in g_param_spec_* | Milan Crha | 2010-04-02 | 8 | -28/+28 |
| | | |||||
* | | Bug #613352 - Changed time range not propagated to calendar | Milan Crha | 2010-04-01 | 1 | -2/+4 |
| | | |||||
* | | Bug #613356 - Calendar doesn't save Task/Memo table state | Milan Crha | 2010-04-01 | 3 | -12/+75 |
| | | |||||
* | | Hide searchbar in calendar view in express mode. | Srinivasa Ragavan | 2010-03-30 | 1 | -1/+5 |
| | | |||||
* | | Drop support for migrating from Evolution < 2.0. | Matthew Barnes | 2010-03-30 | 2 | -1047/+3 |
| | | | | | | | | | | | | | | 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. | ||||
* | | Fix mismatched quotes. | Matthew Barnes | 2010-03-29 | 5 | -5/+5 |
| | | |||||
* | | Simplify the search UI for express mode. | Matthew Barnes | 2010-03-27 | 3 | -8/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For express mode: - Move the search bar up to the toolbar. - Hide the "filter" combo box and lock down the first item. - Hide the "scope" combo box and lock down the first item. (This is the combo box with "Current Folder" only in the mailer.) - EShellView owns the search bar widget now instead of EShellContent. - Insert several nasty hacks that will likely come back to bite me. | ||||
* | | Close only the current window than the entire shell. | Srinivasa Ragavan | 2010-03-23 | 1 | -3/+8 |
| | | |||||
* | | Add extensions to configure calender widgets. | Matthew Barnes | 2010-03-20 | 17 | -5/+759 |
| | | | | | | | | | | | | Make ECalendarItem, ECalendarView, ECalModel, EDateEdit, EMeetingStore, and EMeetingTimeSelector extensible and register extensions to automatically bind every instance to the appropriate EShellSettings. | ||||
* | | Redo Calendar for express mode. Just design/layout changes. | Srinivasa Ragavan | 2010-03-20 | 4 | -77/+152 |
|/ | |||||
* | Fix a couple compiler warnings. | Matthew Barnes | 2010-03-16 | 1 | -1/+1 |
| | |||||
* | Bug 612792 - Crash when trying to delete WebDav addressbook | Matthew Barnes | 2010-03-15 | 3 | -3/+3 |
| | |||||
* | Fix GnomeCalendar lifecycle; not being a widget meant we didn't | Michael Meeks | 2010-03-14 | 1 | -3/+1 |
| | | | | | | | get a gtk_widget_destroy invocation, which meant we left some callbacks registered, long after our child 'views' were destroyed causing sudden death in update_marcus_bains_line_cb, manipulating views. | ||||
* | Some more directories relocated on windows | Fridrich Strba | 2010-03-11 | 3 | -0/+6 |
| | |||||
* | Bug 611727 - Date navigator marks dates for inactive calendars | Matthew Barnes | 2010-03-10 | 1 | -0/+4 |
| | |||||
* | Bug 611873 - Make triple-clicking a shortcut for "Show Only This ..." | Matthew Barnes | 2010-03-06 | 3 | -45/+6 |
| | | | | Requires e_source_selector_select_exclusive() from libedataserverui. | ||||
* | Bug #529331 - Deletes appointments when moving to the same calendar | Milan Crha | 2010-02-25 | 2 | -6/+21 |
| | |||||
* | Bug 609836 - Add translator comments to ambiguous strings | Matthew Barnes | 2010-02-17 | 3 | -0/+18 |
| | |||||
* | Bug 609403 - Doesn't restore window size always | Matthew Barnes | 2010-02-10 | 3 | -257/+248 |
| | |||||
* | Add DnD support to e-selection.c. | Matthew Barnes | 2010-02-09 | 2 | -22/+30 |
| | | | | | | Avoid listing calendar and directory targets explicitly, so that e-selection.c contains the one and only master list. Still need to figure out how to centralize "text/x-source-vcard". | ||||
* | Fix some dead assignments. | Matthew Barnes | 2010-02-08 | 3 | -6/+0 |
| | |||||
* | Implement account-wide search scope in mail. | Matthew Barnes | 2010-02-07 | 3 | -48/+30 |
| | | | | Also, let EShellSearchbar handle search state persistence. | ||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2010-01-31 | 1 | -1/+1 |
| | |||||
* | Improve sidebar and ECalModel interaction. | Matthew Barnes | 2010-01-30 | 9 | -120/+657 |
| | | | | | Restores the "default client" behavior from 2.28, so that "Click to Add" task and memo fields work properly. | ||||
* | Sidebar cleanups for Memos and Tasks. | Matthew Barnes | 2010-01-30 | 2 | -45/+41 |
| | | | | | | | Kill the EMemoTable::user-created signal and connect directly to ECalModel::row-appended in e_memo_shell_view_private.c. Same goes for tasks. | ||||
* | Remove a bunch of dead code in GnomeCalendar. | Matthew Barnes | 2010-01-30 | 1 | -24/+0 |
| | |||||
* | Make authentication functionality available | Gustavo Noronha Silva | 2010-01-27 | 8 | -18/+18 |
| | | | | | | | This involves renaming the calendar auth-related functions to have a prefix, and shipping the headers. Part of https://bugzilla.gnome.org/show_bug.cgi?id=608175 | ||||
* | Give all preview panes a search bar. | Matthew Barnes | 2010-01-18 | 12 | -90/+160 |
| | | | | Use Shift+Ctrl+F as the accelerator for consistency with the mailer. | ||||
* | Fix some potential null pointer dereferences. | Matthew Barnes | 2010-01-16 | 3 | -6/+12 |
| | | | | Caught by the Clang Static Analyzer. | ||||
* | Remove dead assignments found by clang. | Matthew Barnes | 2010-01-16 | 12 | -59/+3 |
| | |||||
* | Cleanup delete actions in shell views. | Matthew Barnes | 2010-01-11 | 11 | -262/+38 |
| | |||||
* | Bug 606250 - Remove usage of deprecated GTK+ symbols | Matthew Barnes | 2010-01-08 | 1 | -2/+2 |
| | | | | Several GtkWidget macros were recently deprecated. | ||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2010-01-05 | 2 | -44/+69 |
| | |||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2010-01-04 | 3 | -14/+31 |
| | |||||
* | Compiler and linker flag cleanups. | Matthew Barnes | 2009-12-28 | 1 | -2/+2 |
| | |||||
* | Rename ECalendarTable to ETaskTable. | Matthew Barnes | 2009-12-27 | 9 | -106/+105 |
| | | | | | Since ECalendarTable was only used for tasks anyway, and ETaskTable pairs nicely with EMemoTable. | ||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2009-12-26 | 10 | -33/+89 |
| | |||||
* | Introduce ESelectable and EFocusTracker. | Matthew Barnes | 2009-12-26 | 17 | -556/+12 |
| | | | | | | | | | | | | | | | | | | EFocusTracker tracks the input focus within a window and helps keep the sensitivity of "selectable" actions in the main menu up-to-date. Selectable actions include Cut, Copy, Paste, Select All and Delete. EFocusTracker has built-in support for widgets that implement the GtkEditable interface such as GtkEntry and GtkTextView. It also supports custom widgets that implement the ESelectable interface, which is a subset of GtkEditable and can apply to anything that displays selectable content (esp. tree views and ETables). This commit integrates EFocusTracker with EShellWindow, CompEditor, EMsgComposer, and ESignatureManager. It also bumps the GtkHTML requirement to 2.29.5 to utilize the new GtkhtmlEditor:html constructor property. | ||||
* | Bug #605192 - New memo window has start date as None | Milan Crha | 2009-12-23 | 1 | -0/+16 |
| | |||||
* | Bug 596947 - Calendar view forgets memo pane height | Matthew Barnes | 2009-12-20 | 1 | -3/+4 |
| | |||||
* | Refactor the EShell search API. | Matthew Barnes | 2009-12-19 | 12 | -53/+156 |
| | | | | | | | | | | | | | | | | | Move the search interface to a new widget: EShellSearchbar The current search rule is now stored in EShellView, and the search context in EShellViewClass similar to GalViewCollection (since it's class-specific, not instance-specific). Also add a couple new signals to EShellView: "clear-search" and "custom-search" ("custom" refers to an advanced search or a saved search -- something more complex than a quick search). Still working out a few kinks. The search entry is clearly trying to be too many things. We need a different way of indicating that you're looking at search results. Perhaps a search results banner similar to Nautilus. | ||||
* | Bug #603342 - Memory leak fixes | Milan Crha | 2009-12-15 | 1 | -4/+6 |
| | |||||
* | Bug #499322 - Use extension for "Save as" suggested file name | Milan Crha | 2009-12-10 | 5 | -5/+20 |
| | |||||
* | Kill ETableScrolled. | Matthew Barnes | 2009-12-08 | 11 | -130/+134 |
| | | | | | ETableScrolled is nothing but a GtkScrolledWindow containing an ETable. It adds nothing of value and actually makes customizing ETable harder. | ||||
* | Port all error code to use GObject-ified EAlert / EAlertDialog | Jonathon Jongsma | 2009-12-08 | 6 | -6/+6 |
| | | | | | | The changes are mainly including the e-alert-header.h header instead of just e-alert.h. This allows us to include e-alert.h in non-UI situations when necessary. | ||||
* | Rename EError to EAlert to match general use better | Jonathon Jongsma | 2009-12-01 | 9 | -15/+15 |
| | | | | | | | | | | 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 | ||||
* | port modules/ to new EError API. | Jonathon Jongsma | 2009-12-01 | 6 | -9/+9 |
| | | | | | | This should be everything now. https://bugzilla.gnome.org/show_bug.cgi?id=602963 | ||||
* | Bug 494394 - No way for the user to refresh a calendar | Milan Crha | 2009-11-30 | 15 | -3/+174 |
| | |||||
* | Bug #558030 - Convert meeting to appointment popup menu option | Milan Crha | 2009-11-26 | 3 | -5/+58 |
| | |||||
* | Bug #591330 - Do not clear task preview every minute | Milan Crha | 2009-11-26 | 6 | -8/+8 |
| | |||||
* | Bug 602704 - Actions->Purge in task view doesn't work | Matthew Barnes | 2009-11-26 | 3 | -4/+60 |
| | |||||
* | Bug 602907 - Cannot delete meetings or appointments in list view | Matthew Barnes | 2009-11-25 | 1 | -0/+8 |
| | |||||
* | Fix typos in e_cal_shell_content_paste_clipboard(). | Matthew Barnes | 2009-11-21 | 1 | -2/+2 |
| | |||||
* | Bug #602081 - Runtime warnings when going to Tasks | Milan Crha | 2009-11-20 | 1 | -6/+7 |
| | |||||
* | Bug #579599 - Let the Advanced Search work again | Milan Crha | 2009-11-19 | 12 | -170/+158 |
| | |||||
* | Disallow renaming a non-deletable ESource. | Matthew Barnes | 2009-11-19 | 3 | -3/+3 |
| | | | | This is a partial solution to bug #600397. | ||||
* | Bug #602098 - No progress notification from GnomeCalendar | Milan Crha | 2009-11-18 | 1 | -2/+5 |
| | |||||
* | Bug 589153 - Use GtkBuilder instead of libglade | Matthew Barnes | 2009-11-17 | 1 | -1/+1 |
| | |||||
* | Bug 600397 - Delete option enabled for undeletable ESource | Matthew Barnes | 2009-11-14 | 9 | -27/+94 |
| | |||||
* | Bug 601767 - Delete action in calendar view has glitches | Matthew Barnes | 2009-11-14 | 2 | -4/+12 |
| | |||||
* | Bug 601785 - Menu glitches in memo and task view | Matthew Barnes | 2009-11-14 | 8 | -4/+34 |
| | |||||
* | EWebView popup menu enhancements. | Matthew Barnes | 2009-11-14 | 4 | -38/+96 |
| | | | | Bumps the GtkHtml dependency to 3.29.2 for gtk_html_unselect_all(). | ||||
* | Simplify clipboard handling in addressbook. | Matthew Barnes | 2009-11-12 | 1 | -1/+1 |
| | |||||
* | Simplify clipboard handling in calendar. | Matthew Barnes | 2009-11-12 | 3 | -10/+16 |
| | |||||
* | Bug 601516 - Calendar views missing from calendar popup menu | Matthew Barnes | 2009-11-11 | 2 | -15/+25 |
| | | | | This also fixes a couple other popup menu glitches. | ||||
* | Kill more redundant save dialogs and related utilities. | Matthew Barnes | 2009-11-11 | 5 | -5/+5 |
| | |||||
* | Bug #593751 - Show correct context menu in calendar views | Milan Crha | 2009-11-11 | 4 | -16/+164 |
| | |||||
* | Convert some "Save As" actions to run asynchronously. | Matthew Barnes | 2009-11-08 | 8 | -38/+119 |
| | | | | | | | | | | This introduces e-shell-utils for miscellaneous utility functions that integrate with the shell or shell settings. First function is e_shell_run_save_dialog(), which automatically remembers the selected folder in the file chooser dialog. Also, kill some redundant save dialog functions, as well as some write-this-string-to-disk functions that block. | ||||
* | Bug 600402 - Clear search is always enabled in calendar/contact/task | Matthew Barnes | 2009-11-04 | 3 | -12/+3 |
| | |||||
* | Cleanup and rename filter classes. | Matthew Barnes | 2009-10-27 | 3 | -12/+12 |
| | |||||
* | Bug #598519 - Cannot open task/memo by double click in calendar day view | Milan Crha | 2009-10-27 | 1 | -0/+12 |
| | |||||
* | Fix a potential calendar crash. | Matthew Barnes | 2009-10-24 | 1 | -2/+1 |
| | |||||
* | Bug #596860 - Duplicate event gets shown in calendar view | Milan Crha | 2009-10-16 | 1 | -2/+0 |
| | | | | Interim/partial solution. | ||||
* | Bug 597533 - e_file_dialog_save() does not pass parent window | Matthew Barnes | 2009-10-07 | 5 | -5/+35 |
| | |||||
* | Bug 596848 - Use per-target CPPFLAGS in automake files | H.Habighorst | 2009-10-01 | 1 | -4/+5 |
| | |||||
* | Bug #596753 - Autocompletion addressbooks not remembered | Milan Crha | 2009-09-30 | 3 | -0/+3 |
| | | | | And select page in Edit->Preferences based on the active view. | ||||
* | Bug 594534 - Can't select calendar for a new appointment | Matthew Barnes | 2009-09-29 | 1 | -0/+27 |
| | |||||
* | GN-bug #593617 - GroupWise plugins are not built | Milan Crha | 2009-09-23 | 1 | -1/+50 |
| | |||||
* | Bug 595119 - Crash while trying to add a new category in contact | Matthew Barnes | 2009-09-21 | 3 | -6/+6 |
| | |||||
* | Typo fix | Andre Klapper | 2009-09-21 | 1 | -1/+1 |
| | |||||
* | Restore translation context (NC) for three strings | Andre Klapper | 2009-09-21 | 2 | -2/+2 |
| | |||||
* | Typo fix | Andre Klapper | 2009-09-21 | 1 | -1/+1 |
| | |||||
* | Goodbye libgnome and libgnomeui!! | Matthew Barnes | 2009-09-19 | 1 | -0/+2 |
| | |||||
* | Bug 593646 - Starting in day view does not restore panels correctly | Matthew Barnes | 2009-09-10 | 1 | -1/+16 |
| | |||||
* | Finish killing Bonobo. | Matthew Barnes | 2009-09-09 | 8 | -59/+25 |
| | |||||
* | Whitespace cleanup. | Matthew Barnes | 2009-09-05 | 1 | -1/+0 |
| | |||||
* | Bug 593881 - Category icons do not appear in preview pane | Matthew Barnes | 2009-09-03 | 2 | -1/+51 |
| | |||||
* | Bug #593762 - Event creation window has start date as Today | Milan Crha | 2009-09-03 | 1 | -43/+47 |
| | |||||
* | Introduce an EShellView::execute-search signal. | Matthew Barnes | 2009-09-03 | 11 | -531/+445 |
| | | | | | | | | | | | | This addresses bug #593896 but is also a cleaner design than before. It introduces an EShellView::execute-search signal and renames the "search-execute" action to "search-quick" to clarify that it's only meant for the "quick" search bar in the main window. Shell view subclasses should implement the execute_search() method to actually execute a search. e_shell_view_execute_search() emits the new signal. | ||||
* | Bug #593761 - Wrong dir for calendar local sources | Milan Crha | 2009-09-02 | 6 | -183/+77 |
| | | | | | | | | | | | | | | - using _get_data_dir, not _get_config_dir in calendar's and similar ensure_sources functions - current executable version is stored in gconf, thus not every start is migrating done - applied changes which were using e_source_list_ensure_group calls - e_source_list_sync is called at the end of those ensure_sources, as it didn't work to me to see the Personal source after start when I had no "On this computer" group (the group was added, but the source wasn't) | ||||
* | Relax the EBinding API to reduce GObject casting. | Matthew Barnes | 2009-09-02 | 9 | -44/+44 |
| | | | | | Also make it more fault-tolerant by warning about non-existent property names instead of just crashing. | ||||
* | Disable classic/vertical options when preview is hidden. | Matthew Barnes | 2009-09-02 | 3 | -0/+17 |
| | |||||
* | Bug 593613 - Doesn't differentiate an appointment and meeting button click | Matthew Barnes | 2009-09-01 | 1 | -0/+3 |
| | |||||
* | Get EConfig and EEvent hooks working again. | Matthew Barnes | 2009-09-01 | 3 | -11/+20 |
| | | | | | | | | | | | | | There were a number of problems: - Walk the GType tree to find EPluginHook subclasses, instead of just registering the immediate children. - Some EConfig and EEvent subclasses were not being configured properly (particularly the mail and calendar subclasses). - Add preference window pages after the main loop starts to make sure all plugins and plugin hooks are installed first. | ||||
* | Simplify EPlugin loading at startup. | Matthew Barnes | 2009-08-30 | 9 | -16/+801 |
| | | | | | | | | | | | | | - 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. | ||||
* | Re-enable more calendar code. | Matthew Barnes | 2009-08-28 | 1 | -2/+5 |
| | |||||
* | Fix calendar pane positioning. | Matthew Barnes | 2009-08-28 | 2 | -8/+8 |
| | |||||
* | Add vertical view to Memos and Tasks. | Matthew Barnes | 2009-08-28 | 8 | -73/+310 |
| | |||||
* | More panel resizing goodness. | Matthew Barnes | 2009-08-27 | 2 | -4/+4 |
| | |||||
* | Fix resize behavior of main window panes. | Matthew Barnes | 2009-08-27 | 3 | -6/+6 |
| | | | | | Now that I finally understand how the "resize" and "shrink" child properties in GtkPaned work. Was a real brain teaser for some reason. | ||||
* | Exit if no command-line URIs are handled. | Matthew Barnes | 2009-08-25 | 2 | -16/+20 |
| | |||||
* | Handle calendar URIs from the command line. | Matthew Barnes | 2009-08-25 | 3 | -4/+151 |
| | |||||
* | Fix migration errors. | Matthew Barnes | 2009-08-23 | 3 | -6/+3 |
| | |||||
* | More GnomeCalendar cleanup. | Matthew Barnes | 2009-08-19 | 1 | -6/+32 |
| | |||||
* | Trim more fat off the GnomeCalendar API. | Matthew Barnes | 2009-08-19 | 3 | -8/+162 |
| | | | | Oh and hey look, I can see events now! | ||||
* | Remove duplicate handlers for date navigator signals. | Matthew Barnes | 2009-08-18 | 1 | -1/+7 |
| | |||||
* | Fix compiler warnings and deprecated GTK+ API usage. | Matthew Barnes | 2009-08-16 | 9 | -17/+21 |
| | |||||
* | Get the calendar view popup menu working. | Matthew Barnes | 2009-08-16 | 4 | -15/+710 |
| | |||||
* | Track the timezone in one place: ECalModel | Matthew Barnes | 2009-08-13 | 1 | -12/+3 |
| | |||||
* | Add new preferences missed during the 2.27.90 merge. | Matthew Barnes | 2009-08-13 | 2 | -5/+5 |
| | |||||
* | Make switching between calendar views work. | Matthew Barnes | 2009-08-13 | 4 | -15/+39 |
| | |||||
* | Get the backup-restore plugin working. | Matthew Barnes | 2009-08-12 | 1 | -2/+0 |
| | |||||
* | Get the itip-formatter plugin working. | Matthew Barnes | 2009-08-12 | 8 | -54/+202 |
| | |||||
* | Get the calendar-weather plugin working. | Matthew Barnes | 2009-08-12 | 1 | -1/+1 |
| | |||||
* | Allow calendar to be written as a external app and split the huge .so to | Srinivasa Ragavan | 2009-08-12 | 1 | -1/+1 |
| | | | | a share private lib and component lib. | ||||
* | Bug #203853 - Cut/Copy key bindings don't work in day and week views | Milan Crha | 2009-08-11 | 1 | -0/+9 |
| | |||||
* | Bug #420513 - Be able to notify about meeting only new attendees | Milan Crha | 2009-08-11 | 4 | -4/+4 |
| | |||||
* | More refactoring of settings management. | Matthew Barnes | 2009-08-09 | 9 | -55/+87 |
| | |||||
* | More refactoring of settings management. | Matthew Barnes | 2009-08-06 | 2 | -110/+0 |
| | |||||
* | Fix a typo. | Matthew Barnes | 2009-08-06 | 1 | -1/+1 |
| | |||||
* | Replace more "config" classes with property bindings. | Matthew Barnes | 2009-08-06 | 14 | -252/+840 |
| | |||||
* | Simplify binding EShellSettings properties to GConf keys. | Matthew Barnes | 2009-08-01 | 2 | -168/+31 |
| | |||||
* | Add properties to calendar classes. | Matthew Barnes | 2009-07-31 | 2 | -13/+340 |
| | | | | | So we can bind them to EShellSettings and kill off EDayViewConfig and similar GConf notification classes. | ||||
* | Trimming redundancy. | Matthew Barnes | 2009-07-29 | 2 | -5/+30 |
| | |||||
* | Merge commit 'EVOLUTION_2_27_5' into kill-bonobo | Matthew Barnes | 2009-07-28 | 1 | -1/+1 |
| | |||||
* | Start re-enabling parts of the calendar. | Matthew Barnes | 2009-07-28 | 1 | -30/+15 |
| | |||||
* | Get GnomeCalendar and the a11y stuff building. | Matthew Barnes | 2009-07-28 | 2 | -5/+47 |
| | |||||
* | Kill CalSearchBar. | Matthew Barnes | 2009-07-28 | 3 | -7/+156 |
| | | | | Move calendar search logic to ECalShellView. | ||||
* | Re-enable building GnomeCalendar, except it doesn't yet. | Matthew Barnes | 2009-07-26 | 3 | -164/+61 |
| | | | | Also, start trimming the API down a bit. Lots of redundancy there. | ||||
* | Move "user_created" signal emission to ECalendarView. | Matthew Barnes | 2009-07-24 | 1 | -0/+22 |
| | |||||
* | Some minor fixes before I dive into calendar again. | Matthew Barnes | 2009-07-24 | 1 | -16/+72 |
| | |||||
* | Fix excessive whitespace. | Matthew Barnes | 2009-07-14 | 3 | -3/+0 |
| | |||||
* | Implement the shutdown protocol and stub in session management. | Matthew Barnes | 2009-07-11 | 3 | -6/+0 |
| | | | | | The shutdown protocol is modelled after online/offline preparation. Session management code is copied from libegg. Not yet used. | ||||
* | Fix "make distcheck" errors and other build cleanups. | Matthew Barnes | 2009-07-01 | 1 | -1/+1 |
| | |||||
* | Radically reorganize source code. | Matthew Barnes | 2009-06-25 | 48 | -0/+17243 |
- Collect all shell modules into a new top-level 'modules' directory: $(top_srcdir)/modules/addressbook $(top_srcdir)/modules/calendar $(top_srcdir)/modules/mail Nothing is allowed to link to these, not plugins nor other modules. THIS SOLVES BUG #571275 AND OPENS THE DOOR TO PORTING TO MAC OS X. - Mimic the libevolution-mail-shared library from master (except drop the "shared" suffix) and have libevolution-mail-importers and all mail-related plugins link to it. - Discard the a11y subdirectories and have the files live alongside their counterpart widgets. |