aboutsummaryrefslogtreecommitdiffstats
path: root/modules/itip-formatter/itip-view.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove ECalShellSettings.Matthew Barnes2013-03-171-15/+32
| | | | | | | | EShellSettings predates GSettings and is no longer necessary. GSettings allows binding GObject properties to GSettings keys, with optional mapping functions. That fulfills the purpose of EShellSettings.
* Use e_source_registry_list_enabled() where appropriate.Matthew Barnes2013-03-171-12/+3
|
* [itip-formatter] Reference a view when searching for a calendarTomas Popela2013-03-051-1/+2
| | | | | | | There were printed warnings on console, which may cause crashes, when the meeting invitation was inside an attached message. By adding a reference to the view it'll not disappear before the search is done with it.
* EMailPartItip: Remove redundant client cache.Matthew Barnes2013-02-281-37/+0
| | | | EClientCache already serves this purpose.
* ItipView: Use EClientCache to obtain calendar clients.Matthew Barnes2013-02-281-3/+25
|
* ItipView: Replace "registry" property with "client-cache".Matthew Barnes2013-02-281-91/+131
| | | | Obtain the ESourceRegistry with e_client_cache_ref_registry().
* Bug #693625 - [itip-formatter] Save button insensitive for multiple eventsMilan Crha2013-02-261-0/+2
|
* Bug #694170 - Accepted invitation not removed from Inbox when it shouldMilan Crha2013-02-221-3/+1
|
* G_PRIORITY_HIGH_IDLE is sufficient to beat GTK+ redraws.Matthew Barnes2013-02-091-2/+4
| | | | | | GTK+ uses (G_PRIORITY_HIGH_IDLE + 20) for redrawing operations, which is actually a slightly lower priority than G_PRIORITY_HIGH_IDLE. Therefore for our purpose, G_PRIORITY_HIGH_IDLE is sufficient.
* Add comments around g_idle_add() changesMilan Crha2013-02-091-0/+1
|
* Bug #683867 - Schedule actions with higher idle priorityMichel Dänzer2013-02-091-1/+1
|
* Revert "Bug #683867 - Schedule actions with higher idle priority"Matthew Barnes2013-02-081-1/+1
| | | | | | | | | This reverts commit 2b507716b257e6ef98dae8463180dbe718eb7b64. The commit contains not a single comment as to why these custom priority values are being used. The rationale needs to be documented in the code, either at each call point or preferrably at a centralized priority value definition.
* Bug #683867 - Schedule actions with higher idle priorityMichel Dänzer2013-02-081-1/+1
|
* Fix up error handling around e_book/cal_client_connect_finish().Matthew Barnes2013-01-311-15/+8
|
* Use e_cal_client_connect().Matthew Barnes2013-01-301-19/+15
| | | | Instead of e_client_utils_open_new() or e_cal_client_new().
* Consolidate base utility libraries into libeutil.Matthew Barnes2012-12-131-10/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 #687999 - 'Open calendar' in invitation email does nothingMilan Crha2012-11-121-50/+25
|
* Coding style and whitespace cleanup.Matthew Barnes2012-11-111-19/+24
|
* Bug #687442 - Magic spacebar avoids iTip formatter comment writeMilan Crha2012-11-021-6/+6
|
* 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.
* [itip-formatter] Do not include empty values in a printoutMilan Crha2012-09-121-22/+38
|
* [itip-formatter] May not send replies on meeting request mailsMilan Crha2012-09-101-1/+1
|
* [itip-formatter] Cancel pending event searches when any foundMilan Crha2012-09-101-3/+37
|
* Coding style and whitespace cleanup.Matthew Barnes2012-08-201-79/+118
|
* Remove GroupWise specific code from itip-formatterMilan Crha2012-08-131-54/+0
| | | | | | | | This had been removing meeting invitations from mail folders when they were added to calendars which had set "save-schedules", but it removed them only from summary, thus server had the message still there, only users didn't see them. As a comment said, this belongs to GroupWise mail provider anyway, thus I removed it.
* Bug #681400 - Fix build against WebKitGtk+ 1.9.6Dan Vrátil2012-08-081-2/+10
|
* Bug #679404 - Read colors for message preview from Gtk themeDan Vrátil2012-07-271-8/+5
|
* Bug #679049 - [itip-formatter] Cannot reply to meeting invitationDan Vrátil2012-07-181-8/+43
|
* Bug #548778 - Use original location when replying in Search FolderMilan Crha2012-07-111-1/+1
|
* ItipView should hold a reference to underlaying WebKitDOMDocumentDan Vrátil2012-06-081-1/+2
|
* Bug #670876 - Missing mnemonics for buttons for vcard attached to emailDan Vrátil2012-06-081-43/+4
|
* Mail formatter rewrite - convert some plugins to modulesDan Vrátil2012-06-061-0/+6137
audio-inline, itip-formatter, prefer-plain, tnef-attachments and vcard-inline plugins were converted to modules so that they can fit into concept of the new formatter. Every module still installs .eplug file, because there is no suitable API at the moment to register plugins to the plugins dialog and to extend the Preferences dialog.