aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
Commit message (Collapse)AuthorAgeFilesLines
* e-config: Remove unused functions.Matthew Barnes2012-12-172-5/+3
| | | | | | | | | | | | e_config_add_skip_check() e_config_class_remove_factory() e_config_create_window() e_config_page_get() e_config_page_next() e_config_page_prev() e_config_set_page_is_finish() Also remove E_CONFIG_ASSISTANT and all the assistant support therein.
* e-passwords: Remove unused function parameters.Matthew Barnes2012-12-171-2/+2
|
* Fix compiler warnings.Matthew Barnes2012-12-153-9/+9
|
* Move the contact map widgets to addressbook/gui/widgets.Matthew Barnes2012-12-134-8/+0
| | | | | | | | | | | | Move the supporting widgets for the contact maps feature alongside EABContactDisplay. Removing them from libeutil helps isolate our usage of libchamplain so it's not imposed on the entire application, and even 3rd party software. That libchamplain is an optional dependency only further complicates the matter. Ideally I'd like to somehow isolate this feature in an extension module, but we currently lack sufficient hooks for such an extension. So this arrangement will have to suffice for now.
* Consolidate base utility libraries into libeutil.Matthew Barnes2012-12-1388-298/+132
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Evolution consists of entirely too many small utility libraries, which increases linking and loading time, places a burden on higher layers of the application (e.g. modules) which has to remember to link to all the small in-tree utility libraries, and makes it difficult to generate API documentation for these utility libraries in one Gtk-Doc module. Merge the following utility libraries under the umbrella of libeutil, and enforce a single-include policy on libeutil so we can reorganize the files as desired without disrupting its pseudo-public API. libemail-utils/libemail-utils.la libevolution-utils/libevolution-utils.la filter/libfilter.la widgets/e-timezone-dialog/libetimezonedialog.la widgets/menus/libmenus.la widgets/misc/libemiscwidgets.la widgets/table/libetable.la widgets/text/libetext.la This also merges libedataserverui from the Evolution-Data-Server module, since Evolution is its only consumer nowadays, and I'd like to make some improvements to those APIs without concern for backward-compatibility. And finally, start a Gtk-Doc module for libeutil. It's going to be a project just getting all the symbols _listed_ much less _documented_. But the skeletal structure is in place and I'm off to a good start.
* Bug #449081 - Drop read-only calendar error messageMilan Crha2012-12-042-29/+1
|
* Avoid gdk_display_get_pointer().Matthew Barnes2012-12-011-7/+11
| | | | Use gdk_device_get_position().
* Avoid GtkStyle-based "paint" functions.Matthew Barnes2012-12-011-19/+20
| | | | | | | | | | | Use GtkStyleContext-based "render" functions instead. gtk_paint_arrow() --> gtk_render_arrow() gtk_paint_box() --> gtk_render_background() gtk_paint_expander() --> gtk_render_expander() gtk_paint_flat_box() --> gtk_render_background() gtk_paint_shadow() --> gtk_render_frame() gtk_paint_vline() --> gtk_render_line()
* Avoid gdk_keyboard_grab/ungrab() and gdk_pointer_grab/ungrab().Matthew Barnes2012-12-014-15/+132
| | | | | | | Use gdk_device_grab() and gdk_device_ungrab() instead. In some cases this requires stashing the grabbed device so it can be ungrabbed outside of an GdkEvent handler.
* Address couple issues found by a Coverity scanMilan Crha2012-11-3012-26/+35
|
* Fix Copy&Paste error found by Coverity scanMilan Crha2012-11-301-1/+1
|
* Add a GdkDevice parameter to gnome_canvas_item_grab().Matthew Barnes2012-11-301-5/+16
| | | | | GnomeCanvas will stash the GdkDevice and reuse it in the subsequent gnome_canvas_item_ungrab() call.
* EDayView: Fix a typo.Matthew Barnes2012-11-301-1/+1
|
* AlarmQueue: Forgot to add this to the previous commit.Matthew Barnes2012-11-301-7/+7
|
* Avoid using GdkEventButton directly in certain places.Matthew Barnes2012-11-308-148/+295
| | | | | | | | | | | | Prefer dealing with GdkEvent pointers and using accessor functions like gdk_event_get_button(). This is complicated by the fact that some GtkWidget method declarations still use GdkEventButton pointers, and synthesizing button events pretty much requires direct GdkEventButton access. But GDK seems to be nudging itself toward sealing the GdkEvent union. Likely to happen in GDK4. Mainly clean up signal handlers and leave method overrides alone for now.
* EWeekView: Remove disabled debug output.Matthew Barnes2012-11-301-28/+0
| | | | | | Adding temporary printf() calls to aid in debugging is fine, but leaving them in the code permanently is not useful, especially when maintenance duties are passed on to others.
* EDayView: Remove disabled debug output.Matthew Barnes2012-11-301-80/+3
| | | | | | Adding temporary printf() calls to aid in debugging is fine, but leaving them in the code permanently is not useful, especially when maintenance duties are passed on to others.
* Avoid gtk_tree_view_get_vadjustment().Matthew Barnes2012-11-291-3/+3
| | | | Use gtk_scrollable_get_vadjustment() instead.
* Identify calendar/memo/task sources in error messagesMilan Crha2012-11-271-20/+34
|
* Bug #687974 - No displaying of extended free/busy (XFB) informationChristian Hilberg2012-11-267-16/+385
|
* Bug #674678 - Event notification uses wrong app nameMilan Crha2012-11-221-2/+3
|
* Bug #687997 - No email sent for shared memosMilan Crha2012-11-122-3/+30
|
* Coding style and whitespace cleanup.Matthew Barnes2012-11-1170-2620/+3552
|
* Bug #656143 - Stop using deprecated Gtk[HV]Box(Class)Dominique Leuenberger2012-11-071-2/+2
|
* Replace deprecated soup_message_headers_get() with ↵Milan Crha2012-11-061-1/+1
| | | | soup_message_headers_get_list()
* Replace deprecated GLib symbols (as of GLib 2.34.x)Milan Crha2012-11-067-52/+56
|
* Prefer e_source_registry_check_enabled().Matthew Barnes2012-10-261-3/+3
| | | | | Prefer e_source_registry_check_enabled() over e_source_get_enabled() for most instances where we want to exclude disabled data sources.
* Bug #588959 - Expanding appointment crashes EvolutionVibha Yadav2012-10-191-0/+5
|
* Add format checker (in compile time) to e_notice()Milan Crha2012-10-171-5/+2
|
* Fails to import calendar events due to used incorrect enum valuesMilan Crha2012-09-141-2/+2
|
* Autocompletion in meeting editor doesn't workMilan Crha2012-09-141-1/+11
|
* Bug #680611 - Hibernation shifts alarm notification timeMilan Crha2012-09-123-2/+47
|
* Calendar's Work Week view could left empty after startMilan Crha2012-09-111-1/+2
| | | | | | | | | | When Evolution started in the Calendar view with Work Week view selected it left the view empty, because the Work Week view was not set focused. This change was not made, because GnomeCalendar has set Work Week view as a default view, thus gnome_calendar_set_view() just returned for "no change made" on the view type. Checking also 'in_focus' property of the view makes sure the initialization will be done as expected.
* Bug #683736 - Calendar work week view drops Monday's entriesMilan Crha2012-09-112-15/+21
|
* evolution-alarm-notify: Save changes in LastNotifiedMilan Crha2012-08-311-0/+15
| | | | Thus they persist between alarm notify process runs.
* Bug #682678 - Entering the end date for a recurring event is very difficultMilan Crha2012-08-312-8/+15
|
* Make sure evolution-alarm-notify is running on Evolution's startMilan Crha2012-08-302-12/+29
|
* Bug #586186 - Calendar print uses too small fontConrad Steenberg2012-08-301-68/+135
|
* Bug #681669 - 'Select today' in work week view goes to wrong weekMilan Crha2012-08-251-8/+8
|
* Bug #678476 - Critical warnings on calendar factory consoleMilan Crha2012-08-211-2/+8
|
* Fix all 'may be used uninitialized' compiler warningsDan Vrátil2012-08-201-2/+2
|
* Fix typo. Fixes bug #682214Andre Klapper2012-08-201-1/+1
|
* Coding style and whitespace cleanup.Matthew Barnes2012-08-2028-108/+107
|
* EDayView: Hide tooltip on context menu popupMilan Crha2012-08-101-14/+20
|
* Bug #676785 - Enables wrong calendar after saving appointmentMilan Crha2012-08-104-9/+12
|
* Bug #559815 - Empty Reminders editor when opened second timeMilan Crha2012-08-081-1/+15
|
* Remove all GDK threads usage.Matthew Barnes2012-08-062-13/+2
| | | | | | | | | | | | According to [1], we don't need to worry about GDK's global lock since we don't call gdk_threads_init() or gdk_threads_set_lock_functions(). The GDK threads API is being aggressively deprecated by GTK+ developers so let's just abandon it entirely. I've never really understood when you're supposed to use it or not use it anyway, so it's good to be rid of this confusion. [1] https://mail.gnome.org/archives/desktop-devel-list/2012-August/msg00005.html
* e-memo-shell-view-actions.c: Support deleting remote resources.Matthew Barnes2012-08-031-0/+7
|
* e-task-shell-view-actions.c: Support deleting remote resources.Matthew Barnes2012-08-031-0/+7
|
* e-cal-shell-view-actions.c: Support deleting remote resources.Matthew Barnes2012-08-031-0/+7
|
* calendar.error.xml: Remove GroupWise-specific errors.Matthew Barnes2012-08-031-5/+0
|
* calendar.error.xml: Fix indentation.Matthew Barnes2012-08-031-301/+301
|
* Remove "modal" attribute from error.xml files.Matthew Barnes2012-08-031-3/+3
| | | | | The "modal" attribute is ignored nowadays anyway, but these should have never been modal to begin with.
* Bug #680666 - Contacts/Tasks/Memos preview pane does not follow theme colorsDan Vrátil2012-08-021-18/+61
|
* Disable CompEditor when saving changesMilan Crha2012-07-171-2/+6
|
* Bug #653529 - Alarm Notification window events list is too smallMilan Crha2012-07-132-288/+319
|
* Make alarm notifications work againMilan Crha2012-07-131-10/+21
|
* Preset timeout on SoupSession-s to 90 secondsMilan Crha2012-07-112-0/+2
|
* Fix error XML definitions with one button.Matthew Barnes2012-07-051-10/+0
| | | | | Don't need an "OK" button because EAlert already adds an [X] button to dismiss the alert. So we wind up seeing [ OK ] [X], which looks silly.
* Coding style and whitespace cleanup.Matthew Barnes2012-06-252-2/+1
|
* Adapt to EContact API change.Matthew Barnes2012-06-252-2/+2
| | | | E_CONTACT_BOOK_URI -> UID.
* Reduce usage of g_type_class_peek_parent().Matthew Barnes2012-06-254-21/+9
| | | | G_DEFINE_TYPE macros define a static "parent_class" variable.
* all: don't set draw_background to FALSE on ETextCosimo Cecchi2012-06-181-4/+0
|
* Do not call g_object_notify() when property didn't changeMilan Crha2012-06-1819-2/+158
|
* Remove the last remaining usage of GConfMilan Crha2012-06-153-8/+0
|
* Move ECalSourceConfig to /widgets/misc.Matthew Barnes2012-06-153-473/+0
| | | | | | ECalSourceConfig drags in no additional dependencies, and although we do publish a libevolution-calendar.so, this keeps all the ESource config UI in one place so it can more easily be moved to Evolution-Data-Server.
* Bump minimum libnotify version to 0.7.Matthew Barnes2012-06-081-4/+0
| | | | | | GNOME has included libnotify 0.7.x since GNOME 3.0. It's still an optional dependency for Evolution, but if you're gonna use it you'll need a GNOME3-era release.
* Adapt to single-include E-D-S libraries.Matthew Barnes2012-06-0493-243/+106
|
* Adapt calendar/gui to the new ESource API.Matthew Barnes2012-06-0351-1460/+1241
|
* Adapt AlarmNotify to the new ESource API.Matthew Barnes2012-06-035-518/+138
|
* Adapt calendar/importers to the new ESource API.Matthew Barnes2012-06-031-38/+40
|
* Add ESourceConfig widget.Matthew Barnes2012-06-033-0/+473
| | | | Base class for building address book and calendar configuration dialogs.
* Refactor CompEditor pages to isolate EAccount usage.Matthew Barnes2012-06-031-0/+7
| | | | | Hide EAccount usage behind a generic API so EAccount can be replaced more easily.
* Reduce diff noise with 'account-mgmt' branch.Matthew Barnes2012-06-038-17/+18
| | | | One last time.
* Fix memory leaks around gtk_tree_model_get() functionMilan Crha2012-05-311-0/+4
|
* Bug #675863 - Cannot load webview.css from Tasks/MemosDan Vrátil2012-05-171-2/+2
|
* Bug #671585 - e-week-view.c: Use page_increment for smooth scrollingVolker Sobek2012-05-161-1/+1
| | | | | | Otherwise 4 smooth scroll events with a delta_y of 1.0 are required to scroll the view by a month if the setting 'Scroll Month View by a week' is disabled.
* Bug #671585 - Add support for smooth scrolling devicesMilan Crha2012-05-152-2/+38
|
* Whitespace cleanups.Matthew Barnes2012-05-133-5/+4
|
* Bug #559710 - Do not close Event/Task/Memo editor on saveMilan Crha2012-05-111-4/+58
|
* Spell checking for 'Summary' in Event/Task/Memo editorsMilan Crha2012-05-107-32/+84
|
* Bug #668988 - Handle a "minutes" entry greater than 59 intelligentlyMilan Crha2012-04-261-0/+29
|
* Bug #668769 - Recurrence editor weekday items slightly croppedMilan Crha2012-04-242-7/+7
|
* Bug #668768 - Copy&paste of appointment occurrence creates two appointmentsMilan Crha2012-04-241-8/+1
|
* Fix possible memory leaks of GError structuresMilan Crha2012-04-235-6/+13
|
* Adapt to libedataserver[ui] changes.Matthew Barnes2012-04-2213-44/+96
|
* Bug #584143 - Global Search Function withing CalendarMilan Crha2012-04-112-0/+7
|
* Add more missing linker flags.Matthew Barnes2012-04-101-0/+3
|
* Bug #670967 - Moving event in offline modeVibha Yadav2012-04-041-0/+5
| | | | Missed error message for previous commit.
* Whitespace cleanup.Matthew Barnes2012-04-026-21/+21
| | | | | Replace 8-space indentation with tab characters, and various other automated cleanups.
* WebKit port - port addressbook, calendar and update composer to keep working ↵Dan Vrátil2012-03-292-53/+39
| | | | with GtkHtml
* Bug #659756 - Initialize dbus-glib threading for GConfMilan Crha2012-03-162-0/+7
|
* Fix possible use of uninitialized variableMilan Crha2012-03-151-1/+1
|
* Bug #664326 - Buttons to handle exceptions in event is always disabledMilan Crha2012-03-091-1/+1
|
* Bug #664323 - Too late initialization of Gnome/GailCanvas ATK supportMilan Crha2012-03-091-0/+6
|
* Bug 671703 (bnc) - Handle cut-paste appointments better. Delete the ↵Chenthill Palanisamy2012-03-052-57/+112
| | | | appointment after a successful paste
* Add missing linker flags.Matthew Barnes2012-03-041-0/+1
|
* Redo Filters/Search folder editors to use a shared non ui based library forSrinivasa Ragavan2012-03-031-0/+1
| | | | making search folders running remotely.
* Move EAlert* and e-xml-utils references from other part of the code to ↵Srinivasa Ragavan2012-03-037-8/+8
| | | | libevolution-utils.
* Bug #670934 - Was saving ESourceList first, rather than lastMilan Crha2012-03-011-3/+3
|
* Bug #661265 - Move to Calendar breaks google:// URIMilan Crha2012-02-221-9/+1
|
* Bug #670512 - Crash in ecp_set_target at e-cal-config.c:93Milan Crha2012-02-211-4/+2
|
* Coding style and whitespace cleanup.Matthew Barnes2012-02-2071-1492/+1261
|
* Use same mnemonic for 'Categories' button in Task editor as in all other ↵Andre Klapper2012-02-181-1/+1
| | | | dialogs as it does not collide with other mnemonics
* Bug 670280 - Remove "Recent Documents" attachment featureMatthew Barnes2012-02-171-37/+0
| | | | | | | GTK's file chooser dialog provides one-click access to recently used documents now, so we can remove the redundancy from Evolution's mail composer main menu and calendar component editor main menu and leave it at "Insert -> Attachment".
* Bug #663110 - Crash on copy events between calendarsMilan Crha2012-02-171-4/+0
|
* Bug #320976 - Remember last New button choice in Calendar viewMilan Crha2012-02-174-3/+27
|
* Bug #332043 - Free/Busy Colors Causing User ConfusionMilan Crha2012-02-161-2/+2
|
* Bug #655955 - Harmonize mnemonic for New > Shared Memo > OrganizerMilan Crha2012-02-161-1/+2
|
* Fix broken Help menu entry in Task Editor after Mallard transition.Andre Klapper2012-02-151-1/+1
|
* Fix broken Help menu entry in Memo Editor after Mallard transition.Andre Klapper2012-02-151-1/+1
|
* Fix broken Help menu entry in Appointment Editor after Mallard transition.Andre Klapper2012-02-151-1/+1
|
* Bug #591436 - Add -avoid-version to LDFLAGSH. Habighorst2012-02-152-2/+2
|
* Coding style and whitespace cleanup.Matthew Barnes2012-01-195-15/+15
|
* Introduce libemail-engine and libemail-utils.Matthew Barnes2012-01-196-46/+68
| | | | | | | These libraries are bound for E-D-S so they live at the lowest layer of Evolution for now -- even libeutil can link to them (but please don't). This is the first step toward moving mail handing to a D-Bus service.
* Bug #667119 - Hard to change Attendee role in meeting editorMilan Crha2012-01-111-9/+35
|
* Inherit smaller time division from preferences in day calendar printoutMilan Crha2012-01-041-21/+41
|
* Bug #353743 - Add Print button to meeting notification dialogMilan Crha2012-01-0319-4/+62
|
* Remove unnecessary #include <e-util/e-dialog-widgets.h>Matthew Barnes2011-12-245-5/+0
|
* Remove e_dialog_append_list_store_text().Matthew Barnes2011-12-243-33/+84
| | | | Silly function. Do it manually or use a GtkComboBoxText.
* Remove e_dialog_editable_get().Matthew Barnes2011-12-245-77/+59
| | | | | Silly function. Use gtk_entry_get_text() for a const string or else gtk_editable_get_chars() for an allocated string.
* Remove e_dialog_editable_set().Matthew Barnes2011-12-245-20/+43
| | | | Silly function. Use gtk_entry_set_text().
* Bug #612257 - Sanitize widgets in alarm notification dialogMilan Crha2011-12-231-11/+15
|
* Bug #582649 - Toggle for coloring today and overdue tasksMilan Crha2011-12-143-5/+151
|
* Bug #666106 - libical 0.47 handles CATEGORIES as multiple parametersMilan Crha2011-12-141-20/+49
|
* Bug #577322 - Rename of a system ESource doesn't persistMilan Crha2011-12-071-1/+15
|
* Bug #664634 - Deadlock when processing completed tasks filterMilan Crha2011-11-242-107/+139
|
* Miscellaneous cleanups.Matthew Barnes2011-11-2318-22/+9
|
* Miscellaneous cleanups.Matthew Barnes2011-11-231-4/+5
|
* Fix compiler warnings.Matthew Barnes2011-11-232-2/+1
|
* Migrate ECalConfig* code to use GSettingsRodrigo Moya2011-11-172-4/+4
|
* Merge branch 'master' into wip/gsettingsRodrigo Moya2011-11-175-59/+133
|\
| * Bug #661126 - Meeting Free/busy dialog dates don't follow localeMilan Crha2011-11-163-48/+48
| |
| * Bug #664016 - [evolution-alarm-notify] Try reconnect offline calendarsMilan Crha2011-11-152-11/+85
| |
* | Remove unused config_data_get_conf_clientRodrigo Moya2011-11-092-9/+0
| |
* | Merge branch 'master' into wip/gsettingsRodrigo Moya2011-11-081-0/+4
|\|
| * Call e_gdbus_templates_init_main_thread() in main()Milan Crha2011-11-071-0/+4
| |
| * Trivial little cleanups.Matthew Barnes2011-10-191-1/+1
| | | | | | | | | | | | To synchronize with the "wip/gsettings" branch. Mostly just removing unneeded "gconf-bridge.h" includes.
| * Bug #661549 - Avoid fetching from backend when calculating summaryMilan Crha2011-10-181-16/+24
| |
* | Bug #661549 - Avoid fetching from backend when calculating summaryMilan Crha2011-10-191-16/+24
| |
* | Merge branch 'master' into wip/gsettingsRodrigo Moya2011-10-141-1/+18
|\|
| * Downstream bug Bnc#688711 unable to book resourceVeerapuram Varadhan2011-10-141-1/+18
| |
* | Use a GPtrArray instead of GArray to build the array string to use for ↵Rodrigo Moya2011-10-131-6/+6
| | | | | | | | g_settings_set_strv
* | NULL-terminate arrays that we pass to g_settings_set_strvRodrigo Moya2011-10-132-0/+2
| |
* | Merge branch 'master' into wip/gsettingsRodrigo Moya2011-10-132-8/+11
|\|
| * Bug 661399 - Crash when hovering over calendar entryMatthew Barnes2011-10-122-8/+11
| |
* | Last bits of calendar-config migrated to GSettingsRodrigo Moya2011-10-106-65/+49
| |
* | Port calendar importer to GSettingsRodrigo Moya2011-10-101-5/+5
| |
* | Merge branch 'master' into wip/gsettingsRodrigo Moya2011-10-101-6/+4
|\|
| * EAttachmentPaned: Add "resize-toplevel" property.Matthew Barnes2011-10-061-5/+2
| | | | | | | | | | | | | | | | | | Similiar to the new GtkExpander:resize-toplevel property in GTK+ 3.2, but adapted to the fact that EAttachmentPaned's expander has no direct child widget, and instead acts on the child widget in the lower pane. CompEditor now uses this to fix the weird vertical resizing behavior when its attachment bar is expanded and then collapsed again.
| * GtkApplication has some new EShell-like features.Matthew Barnes2011-10-061-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I pushed a few EShell features up to GtkApplication for GTK+ 3.2, so we can now trim off the redundancies in EShell. 1) GtkApplication has a new "window-added" signal which replaces EShell's own "window-created" signal. 2) GtkApplication has a new "window-removed" signal which replaces EShell's own "window-destroyed" signal. 3) gtk_application_get_windows() now returns a list of windows sorted by most recently focused, replacing e_shell_get_watched_windows(). 4) GtkApplication now provides enough hooks to subclasses that we can remove e_shell_watch_window() and call gtk_application_add_window() directly.
* | First successful buildRodrigo Moya2011-10-063-21/+26
| |
* | Merge from masterRodrigo Moya2011-10-0562-437/+488
|\|
| * Simplify library dependency flags.Matthew Barnes2011-10-054-24/+25
| | | | | | | | | | | | | | | | | | We have a confusing array of nearly-identical CFLAGS/LIBS definitions in configure.ac. Time to simplify. Instead let's just have one definition that includes all the libraries provided by Evolution-Data-Server (incl. Camel). That, in combination with GNOME_PLATFORM, gives us most of what we need for compliation and linking, and we can sprinkle definitions for additional library dependencies in Makefile.am's as needed.
| * Fix few 'may be used uninitialized' compiler warningsMilan Crha2011-09-302-3/+3
| |
| * Bug #656378 attachment name corruptionPunit Jain2011-09-301-2/+4
| |
| * Remove Ctrl + l ( ) character from source filesPaul Menzel2011-09-3028-65/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | From ccc980da1fd84ebfca25cf8caf9a5d62333099fc Mon Sep 17 00:00:00 2001 From: Paul Menzel <paulepanter@users.sourceforge.net> Date: Wed, 28 Sep 2011 10:18:18 +0200 Subject: [PATCH] Remove Ctrl + l ( ) character from source files The following commits git show aac3f2c8 git show 1510304c git show 13cabd9e git show 350a7a33 git show 9b7cc54d git show e6972011 git show 1d3a7938 git show 934524b9 git show b2954936 git show a7f677b5 git show 4369c400 git show d509f47a git show a6d5818f git show c3876df7 git show 4583098b git show 2831ada5 git show 4e1bce59 git show 1609f699 git show 4e4c1676 git show d6fade43 among others(?) introduced several occurrences of Ctrl + l ( ). Probably this was caused by the used editor. These control characters can be searched for using the following command [1]. $ git grep ^L [1] http://unstableme.blogspot.com/2009/10/grep-and-print-control-characters-in.html
| * Bug #632619 - Recurring events can clutter month viewMilan Crha2011-09-291-0/+19
| |
| * Bug #659517 - Calendar reminds of old events following upgradeMilan Crha2011-09-291-8/+17
| |
| * Miscellaneous cleanups from the account-mgmt branch.Matthew Barnes2011-09-2729-333/+419
| | | | | | | | | | Reducing diff noise so I can see important changes easier when comparing branches. A few API changes, but nothing that affects functionality.
| * The EExtension framework is now in libebackend.Matthew Barnes2011-09-265-7/+7
| | | | | | | | | | | | | | | | The EModule, EExtensible and EExtension classes as well as the e_type_traverse() function have been moved to Evolution-Data-Server's libebackend library to replace e-data-server-module.c. Now Evolution-Data-Server modules use the same framework as Evolution.
| * Bug #659568 - One day delay in calendar viewMilan Crha2011-09-262-21/+37
| |
| * Bug #659932 - 'Use system time zone' in not honored immediatelyMilan Crha2011-09-261-0/+2
| |
| * Bug #658835 - Color Scheme off in calendarMilan Crha2011-09-261-17/+41
| |
| * Bug #657170 - Disallow creating assigned tasks when not supportedMilan Crha2011-09-263-0/+37
| |
| * Bug #655252 - Need to escape the comp_uid part of a pathMilan Crha2011-09-261-7/+14
| |
| * Bug #659125 - Reference counting issues in calendarMilan Crha2011-09-152-5/+20
| |
| * Bug #655253 - Do not show detached instances twice in a calendarMilan Crha2011-09-151-19/+33
| |
| * Bug 658460 - alarm-notify issues runtime warningMatthew Barnes2011-09-071-0/+9
| | | | | | | | Block the default GApplication.activate() method from running.
| * Coding style and whitespace cleanup.Matthew Barnes2011-09-04113-2860/+3971
| |
| * Changing source in CompEditor blocks UIMilan Crha2011-08-264-114/+275
| |
| * Bug #655708 - Unreadable tooltip for Memo/TaskMilan Crha2011-08-262-2/+16
| |
| * Bug #650839 - Add option for alarms into calendar preferencesMilan Crha2011-08-251-0/+42
| |
| * Bug #656810 - Too strict checking for validity of received calendarsMilan Crha2011-08-181-4/+18
| |
| * Bug #656258 - Critical runtime warning on comp-editor closeMilan Crha2011-08-161-0/+7
| |
| * Coding style and whitespace cleanup.Matthew Barnes2011-08-1322-410/+748
| |
| * EConfig: Broadcast abort/commit events by way of signals.Matthew Barnes2011-08-111-5/+14
| | | | | | | | | | Remove the clumsy abortfunc and commitfunc callback arguments from e_config_add_items().
| * Bug #656136 - Remove time field in task editorMilan Crha2011-08-082-90/+21
| |
| * Bug #655702 - Do not call Lists Groups when they are Lists anywhere elseAndre Klapper2011-08-043-3/+3
| |
| * Remove unneeded semicolonMilan Crha2011-08-031-1/+1
| |
| * Bug #655190 - Sluggish performance interacting with calendar/tasksMilan Crha2011-08-028-61/+176
| |
| * Replace alarm by reminder for UI consistency. Fixes bug #340614Andre Klapper2011-08-0210-24/+24
| |
| * Bug #655255 - Make comp-editor toolbar buttons' tooltips sanerMilan Crha2011-07-272-5/+5
| |
| * Bug #654261 - Importing ics files into Evolution fails silentlyMilan Crha2011-07-251-1/+5
| |
| * Adapt to CamelSession and e-passwords changes.Matthew Barnes2011-07-042-7/+3
| |
| * Bug 652958 - Evolution Account Assistant jumps stepsMatthew Barnes2011-07-011-4/+24
| | | | | | | | | | | | | | The GTK+ patch in bug 653705 is also required for the Account Assistant to work properly under the new GtkAssistant design in GTK+ 3.1. This commit only deals with sidebar ordering issues.
| * Add a bit more error checking and do not leak icalcomponent-sMilan Crha2011-06-305-10/+27
| |
| * Check for cancelled GIO operation error code tooMilan Crha2011-06-281-1/+2
| |
| * Keep opening EClient-s till they report busy errorMilan Crha2011-06-273-9/+70
| |
| * Bug #653154 - Crash when constructing calendar viewMilan Crha2011-06-272-7/+26
| |
| * Postpone ENameSelector loading as much as possibleMilan Crha2011-06-244-0/+27
| | | | | | | | | | Also fixes few memory leaks around ENameSelector and cancels loading of its address books when not needed any more.
| * Bug #646442 - [mail-to-task] Edit event details before adding to calendarDan Vrátil2011-06-235-158/+18
| |
| * Bug #653008 - Preference window for imap accounts is too largeMilan Crha2011-06-236-55/+0
| |
| * Fix typo in a GConf key for alarm-notification dialog timezone settingMilan Crha2011-06-161-1/+1
| |
| * Bug #652620 - Can use uninitialized memory in alarm-notification-dialogMilan Crha2011-06-151-3/+5
| |
| * Do not use deprecated EBook/ECal APIMilan Crha2011-06-1486-2125/+2071
| |
| * Replace G_CONST_RETURN with 'const'.Matthew Barnes2011-06-1010-52/+52
| | | | | | | | GLib is finally dropping this hack.
| * Coding style and whitespace cleanups.Matthew Barnes2011-06-0922-124/+250
| |
| * Bug #643526 - Crash in et_get_n_childrenMilan Crha2011-06-061-3/+1
| |
| * Bug #649310 - Calendar only shows midnight to noonMilan Crha2011-06-021-1/+1
| |
| * Move EPopupMenu to /widgets/table.Matthew Barnes2011-06-012-2/+0
| | | | | | | | | | | | | | | | ETableHeaderItem is the last user of EPopupMenu. Move it to /widgets/table to discourage further use and strip out unused features. The functionality it provides has long since been superseded by GtkUIManager and GtkAction.
| * Including <glib-object.h> directly is rarely needed.Matthew Barnes2011-05-282-3/+0
| |
| * Including <glib.h> directly is rarely needed.Matthew Barnes2011-05-2819-19/+0
| |
| * Bug #646109 - Fix use of include <config.h> to make sure translations workMilan Crha2011-05-2735-14/+105
| |
| * Bug #643819 - Autocomplete the Location fieldDan Vrátil2011-05-231-4/+157
| |
| * Coding style and whitespace cleanup.Matthew Barnes2011-05-2223-183/+328
| |
| * Bug #647785 - Pasting an 24h event in month and week view doesn't workMilan Crha2011-05-171-3/+4
| |
| * bug #648612 crash during drag & drop of recurring eventsPunit Jain2011-05-171-0/+1
| |
| * Bug 649990 - Remove get_font_options() from e-util.c.Matthew Barnes2011-05-171-8/+0
| | | | | | | | | | | | | | | | | | Not only is get_font_options() no longer needed, it's actually doing the wrong thing by reading settings through GConfClient instead of GSettings. But it turns out, thanks to the tighter Cairo integration in GTK3, the widgets that call get_font_options() can be made to work correctly by simply removing this hack. Love it when that happens.
| * Bug #646615 - Bad single formMilan Crha2011-05-161-1/+1
| |
| * Bug #649392 - Improve calendar's "Goto" dialog and move it to dialogsDan Vrátil2011-05-1610-21/+25
| |
| * Bug #243938 - Clicking on week numbers changes work week to week viewMilan Crha2011-05-131-0/+5
| |
| * Coding style cleanups.Matthew Barnes2011-05-0933-154/+154
| |
| * Whitespace and coding style cleanups.Matthew Barnes2011-05-089-20/+39
| |
| * Add itip_get_fallback_identity().Matthew Barnes2011-04-285-38/+48
| | | | | | | | | | Convenience function returns a name + address string from the default mail identity, to be used as a fallback for organizers.
| * Add itip_get_user_identities().Matthew Barnes2011-04-275-125/+105
| | | | | | | | | | Convenience function returns a NULL-terminated array of name + address strings based on registered mail identities.
| * Refactor CompEditor pages to isolate EAccount usage.Matthew Barnes2011-04-273-236/+354
| | | | | | | | | | Hide EAccount usage behind more generic APIs so EAccount can be replaced more easily in the account-mgmt branch.
| * Add itip_address_is_user().Matthew Barnes2011-04-263-18/+37
| | | | | | | | | | Convenience function that checks whether the given email address matches a registered mail identity.
| * itip-utils cleanups.Matthew Barnes2011-04-262-56/+96
| |
| * Add e_meeting_store_find_self().Matthew Barnes2011-04-264-36/+61
| | | | | | | | | | Convenience function that uses registered mail identities to find the user among meeting attendees.
| * Remove redundant EAccountList utilities.Matthew Barnes2011-04-268-40/+24
| | | | | | | | | | Kill itip_addresses_get() and itip_addresses_get_default(), and use e_get_account_list() and e_get_default_account() instead.
| * CompEditor cleanups.Matthew Barnes2011-04-268-746/+768
| | | | | | | | Random cleanups from the account-mgmt branch, to reduce diff noise.
| * Bug #502188 - Store 'Remember password' for calendarsMilan Crha2011-04-211-4/+38
| |
| * Bug 647698 - Selected calendar doesnt authenticate after offline/onlineMatthew Barnes2011-04-141-17/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When I wrote e_load_cal_source_async() it didn't occur to me that a calendar backend may emit "auth-required" after the initial connection attempt. And because I was passing the allocated context data for the asynchronous load operation to e_cal_set_auth_func(), meaning the data gets freed at the end of the load operation, I was then calling e_cal_set_auth_func(cal, NULL, NULL) after the initial authentication was complete so that the ECal would not try to access the freed context data after the load operation finished. But that turned out to break the case of switching to offline mode, then back to online mode. Most calendar backends need to re-authenticate when they come back online. This commit instead passes data to the authentication function by way of g_object_set_data_full() so that the authentication function can be left in place for the duration of the ECal instance. Note that e_cal_set_auth_func() lacks a GDestroyNotify argument for the user data passed to it, which rules out passing any kind of allocated data structure. This is an API design flaw, in my opinion. But g_object_set_data_full() *does* take a GDestroyNotify argument.
| * Move translator comments so they get picked upAndre Klapper2011-04-051-13/+13
| |
| * Fix alignment of extra widgets in EAlertDialogs.Matthew Barnes2011-03-251-1/+1
| | | | | | | | | | | | | | Add e_alert_dialog_get_content_area(), which returns the GtkVBox containing the primary and secondary labels. Use this instead of gtk_dialog_get_content_area() to maintain the dialog's left margin beneath the image.
| * Port AlarmNotify to GtkApplication.Matthew Barnes2011-03-253-79/+52
| |
| * Bug #637641 - Crash on audio alarms with invalid file URI setMilan Crha2011-03-091-13/+16
| |
| * Bug 644166 - Add style class to primary toolbarsMatthew Barnes2011-03-081-0/+4
| | | | | | | | | | Requires GTK+ >= 3.0.2 since GTK_STYLE_CLASS_PRIMARY_TOOLBAR is a very recent addition.
| * Coding style and whitespace cleanup.Matthew Barnes2011-03-0635-48/+117
| |
| * Remove unused cal_comp_process_source_list_drop().Matthew Barnes2011-03-022-191/+0
| |
| * Fix Gtk-Doc comment notation.Matthew Barnes2011-03-0211-66/+87
| | | | | | | | Seeing lots of what I assume to be doxygen syntax in comment blocks.
| * Bug #614480 - Avoid using G_TYPE_INSTANCE_GET_PRIVATE repeatedlyMilan Crha2011-02-2534-232/+105
| |
| * Bug #642954 - Doesn't commit/abort sequence on modification errorMilan Crha2011-02-241-4/+3
| |
| * Bug #550867 - Showing location in meetingsMilan Crha2011-02-232-20/+54
| |
| * Coding style and whitespace cleanup.Matthew Barnes2011-02-192-4/+9
| |
| * Bug #639043 - Alarm notify snooze time not properly adjustableChris Hemsing2011-02-182-16/+65
| |
| * Order matters, process master object first, then detached instancesMilan Crha2011-02-181-2/+40
| |
| * Fix few memory leaksMilan Crha2011-02-153-0/+17
| |
| * Remove NULL checks for GObject methods.Matthew Barnes2011-02-1325-67/+50
| | | | | | | | | | As of GLib 2.28 all GObject virtual methods, including constructed(), are safe to chain up to unconditionally. Remove unnecessary checks.
| * Bug 641756 - Fix warnings from GCC 4.6Kjartan Maraas2011-02-095-25/+2
| | | | | | | | GCC learned how to find dead assignments.
| * Bug #641011 - Ugly appointment editing windowsMilan Crha2011-02-031-2/+6
| |
| * Bug #635144 - Using external editor duplicates signatureMilan Crha2011-02-021-2/+2
| |
| * More whitespace cleanup.Matthew Barnes2011-01-3132-409/+410
| |
| * Coding style and whitespace cleanup.Matthew Barnes2011-01-3012-137/+301
| |
| * Adapt EWeekView + widgets to latest gtk+-3.0 API.Matthew Barnes2011-01-264-62/+25
| |
| * Adapt EDayView + widgets to latest gtk+-3.0 API.Matthew Barnes2011-01-264-137/+46
| |
| * Adapt EMeetingTimeSel to latest gtk+-3.0 API.Vibha Yadav2011-01-262-58/+36
| |
| * Bug #640522 - Set minimal height on Description fields in event editorsMilan Crha2011-01-263-0/+3
| |
| * Fix minor compiler warningsMatthew Barnes2011-01-261-1/+1
| |