aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mail-to-task
Commit message (Collapse)AuthorAgeFilesLines
* message_list_get_selected: Give the returned array a free func.Matthew Barnes2013-06-151-4/+4
| | | | | | The returned UID array now has a built-in "free" function for its elements and should be released by callers with g_ptr_array_unref() rather than em_utils_uids_free() or some equivalent.
* Add e_mail_reader_ref_folder().Matthew Barnes2013-06-151-3/+1
| | | | Replaces e_mail_reader_get_folder().
* Rename libemformat to libevolution-mail-formatter.Matthew Barnes2013-05-281-1/+1
| | | | | | To make Evolution's shared libraries more consistent. Also add an evolution-mail-formatter documentation module.
* Rename libeshell to libevolution-shell.Matthew Barnes2013-05-281-1/+1
| | | | | | To make Evolution's shared libraries more consistent. Also rename the documentation module to evolution-shell.
* Rename libeutil to libevolution-util.Matthew Barnes2013-05-281-1/+1
| | | | | | To make Evolution's shared libraries more consistent. Also rename the documentation module to evolution-util.
* Bug 697632 - [mail-to-task] Invalid unref of a CamelFolderSamarjit Adhikari2013-05-121-3/+1
| | | | | | | | | | | | e_mail_reader_get_folder() does not return a new CamelFolder reference, yet mail_to_event() was acting as though it does. This caused a crash after the function ran and Evolution tried to use the folder again. Truth be told, e_mail_reader_get_folder() really *should* return a new reference to ensure the CamelFolder is not finalized while it's in use. But we would need to rename the function to e_mail_reader_ref_folder() to reflect the change in semantics, and I suspect the function is used in a great many places.
* Remove conditionals from GtkUIManager definitions.Matthew Barnes2013-04-011-4/+0
|
* 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
|
* Use e_cal_client_connect().Matthew Barnes2013-01-301-29/+28
| | | | Instead of e_client_utils_open_new() or e_cal_client_new().
* Bug #692783 - [mail-to-task] Crash on edit prompt cancelMilan Crha2013-01-301-1/+0
|
* Move the contact map widgets to addressbook/gui/widgets.Matthew Barnes2012-12-131-2/+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-132-11/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 #502516 - Avoid "source" string in user visible dialogsMilan Crha2012-12-041-3/+3
|
* Coding style and whitespace cleanup.Matthew Barnes2012-11-111-24/+36
|
* Replace deprecated GLib symbols (as of GLib 2.34.x)Milan Crha2012-11-061-19/+19
|
* Remove all references to JavaScriptCore and use of JavaScriptDan Vrátil2012-08-091-3/+2
| | | | | | | | | | JavaScript is disabled in EWebView, so any attempt to evaluate a JavaScript code will fail. We are using DOM bindings instead to interact with the document. This commit removes some helper functions created in the early days of WebKit port which are not used anymore and also fixes mail-to-task plugin, which was relying on some JavaScript.
* Bug 678397 - Move "mail-to-task" actions to a submenuMatthew Barnes2012-06-212-28/+34
| | | | Shortens the Message menu a little for low screen resolutions.
* Mail formatter rewrite - convert some plugins to modulesDan Vrátil2012-06-061-1/+0
| | | | | | | | | | 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.
* Adapt to single-include E-D-S libraries.Matthew Barnes2012-06-041-8/+2
|
* Adapt mail-to-task plugin to the new ESource API.Matthew Barnes2012-06-031-82/+105
|
* WebKit port - port pluginsDan Vrátil2012-03-292-11/+6
|
* Coding style and whitespace cleanup.Matthew Barnes2012-02-201-6/+10
|
* Bug #659396 - Missing plural handling for "You have selected %d mails to..."Milan Crha2012-02-161-5/+15
|
* Add missing linker flags.Matthew Barnes2012-01-191-1/+2
|
* Introduce libemail-engine and libemail-utils.Matthew Barnes2012-01-192-9/+15
| | | | | | | 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.
* Miscellaneous cleanups.Matthew Barnes2011-11-231-2/+6
|
* Bug #664018 - Cannot create task/memo from a mailMilan Crha2011-11-221-6/+3
|
* Trivial little cleanups.Matthew Barnes2011-10-191-1/+0
| | | | | | To synchronize with the "wip/gsettings" branch. Mostly just removing unneeded "gconf-bridge.h" includes.
* Simplify library dependency flags.Matthew Barnes2011-10-051-5/+5
| | | | | | | | | 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.
* Miscellaneous cleanups from the account-mgmt branch.Matthew Barnes2011-09-271-2/+4
| | | | | Reducing diff noise so I can see important changes easier when comparing branches. A few API changes, but nothing that affects functionality.
* Bug #655252 - Need to escape the comp_uid part of a pathMilan Crha2011-09-261-7/+14
|
* Coding style and whitespace cleanup.Matthew Barnes2011-09-041-18/+29
|
* [mail-to-task] Uses incorrect function to free array of message uidsMilan Crha2011-08-261-5/+5
|
* Changing source in CompEditor blocks UIMilan Crha2011-08-261-0/+14
|
* Bug #655551 - [mail-to-task] Pick organizer based on selected folder's storeMilan Crha2011-08-261-4/+11
|
* Bug #655549 - [mail-to-task] Ignores cancel of source select dialogMilan Crha2011-08-261-0/+2
|
* Bug #646442 - [mail-to-task] Edit event details before adding to calendarDan Vrátil2011-06-231-212/+327
|
* Do not use deprecated EBook/ECal APIMilan Crha2011-06-142-47/+52
|
* Bug #646109 - Fix use of include <config.h> to make sure translations workMilan Crha2011-05-271-1/+1
|
* Coding style cleanups.Matthew Barnes2011-05-091-2/+2
|
* Do not leak attachments in a mail viewMilan Crha2011-03-021-0/+1
|
* Move more account utilities to e-account-utils.c.Matthew Barnes2010-10-191-1/+0
|
* Coding style and whitespace cleanup.Matthew Barnes2010-10-041-1/+1
|
* Adapt to Camel API changes.Matthew Barnes2010-09-281-2/+2
|
* Pass GCancellable to Camel.Matthew Barnes2010-09-281-1/+4
|
* Bug #629132 - set_attachments: assertion failed.Punit Jain2010-09-131-4/+5
| | | | | [mail-to-task] CRITICAL **: set_attachments: assertion `status.uris != NULL' failed Uri was actually a path.
* Bug 624128 - Folder -> Subscriptions is always enabledMatthew Barnes2010-07-121-6/+2
|
* Migrate from CamelException to GError.Matthew Barnes2010-07-091-1/+1
|
* Add translator comments in mail-to-task pluginMilan Crha2010-06-031-0/+18
|
* Keep chipping away at direct GtkHTML usage.Matthew Barnes2010-06-011-6/+6
| | | | | | | | | | EMFormatHTML now holds a sealed EWebView instead of a public GtkHTML, accessible through em_format_html_get_web_view(). Rename e_mail_reader_get_html_display() to e_mail_reader_get_formatter() and have it return an EMFormatHTML instead of an EMFormatHTMLDisplay, since that's usually the type you want (or else an EMFormat, but never an EMFormatHTMLDisplay).
* Camel is now GObject-based.Matthew Barnes2010-04-241-1/+1
|
* Adapt to Camel API changes.Matthew Barnes2010-04-131-6/+7
|
* Adapt to Camel API changes.Matthew Barnes2010-04-041-5/+5
|
* Generate ChangeLog files for tarball releases.Matthew Barnes2010-04-031-241/+0
| | | | Remove old ChangeLog files that predate our switch to git.
* Only #include Camel's top-level header.Matthew Barnes2010-04-031-8/+0
|
* Alter UI conditional syntax to be more familiar cpp style, whichMichael Meeks2010-03-231-5/+5
| | | | avoids the need for intltool changes.
* Disable a chunk of UI from the mail-to-task pluginMichael Meeks2010-03-141-0/+4
| | | | | | Allow plugins to disable chunks of their UI - *NB* requires patched intltool, that doesn't elide comments in XML Remove some debug
* Revert "Without this evo 2.28.2 will not link/run at all"Matthew Barnes2010-01-291-1/+0
| | | | | | | This reverts commit 013ce5b70e85d6c9008cebd1d5efbe87a539d445. Looks like it was meant for gnome-2-28 branch. In any case it contains unresolved merge conflicts which breaks compilation.
* Without this evo 2.28.2 will not link/run at allFridrich Strba2010-01-281-0/+1
| | | | | | The change is needed: 1) To export the right symbols from the right dummy import library so that the loader does not look for symbols where they are not 2) Export that comp_editor_registry using a getter function for win32 so that we don't have to decorate the data string so that the autoexport works again
* Make authentication functionality availableGustavo Noronha Silva2010-01-271-1/+1
| | | | | | | 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
* Compiler and linker flag cleanups.Matthew Barnes2009-12-281-2/+2
|
* Expand the EMailReader interface so it's easier to use.Matthew Barnes2009-12-021-7/+5
| | | | | | | | Adds the following methods: CamelFolder * (*get_folder) (EMailReader *reader); const gchar * (*get_folder_uri) (EMailReader *reader); GPtrArray * (*get_selected_uids) (EMailReader *reader);
* Merge bits and pieces of the anjal-evo-2-30 branch.Matthew Barnes2009-12-011-3/+4
|
* Add e_attachment_store_load_async().Matthew Barnes2009-11-201-19/+22
| | | | | | | This is a convenience function for adding multiple attachments to a store and loading them concurrently. Also included: e_attachment_store_load_finish()
* More build failures due to missing internal lib dependenciesJonathon Jongsma2009-11-121-0/+1
|
* Kill more redundant save functions.Matthew Barnes2009-11-081-54/+107
|
* Bug #523335 - [mail-to-task] EnhancementsMilan Crha2009-10-151-6/+54
|
* Bug 596848 - Use per-target CPPFLAGS in automake filesH.Habighorst2009-10-011-6/+11
|
* Goodbye libgnome and libgnomeui!!Matthew Barnes2009-09-191-0/+2
|
* Fix crashes in mail-to-task plugin.Matthew Barnes2009-09-131-14/+9
|
* Bug 594863 - Message body doesn't allow right click pop up menuMatthew Barnes2009-09-131-0/+16
|
* Bug 594284 - FTBFS: missing linksDiego Escalante Urrelo2009-09-061-0/+2
|
* Get the mailing-list-actions plugin working.Matthew Barnes2009-09-052-59/+102
| | | | | | | Also get mail-to-task working for the message browser window. Came up with a new technique for managing actions and action groups in the process. Also gave the EMailReader interface an "update-actions" signal for plugins to connect to.
* Bug #593648 - mail-to-task used full path in .eplug fileMilan Crha2009-08-311-1/+1
| | | | just a part-of-bug, this doesn't fix whole bug.
* Coding style and whitespace cleanup.Matthew Barnes2009-08-301-3/+3
|
* Bug #584030 - [Mail-To-Task] improve duplicate handling and suchMilan Crha2009-08-122-18/+296
|
* Kill EMMenu and EMPopup.Matthew Barnes2009-08-101-2/+0
| | | | | Also finish adapting Templates plugin to EPluginUI. It was still leaning pretty hard on EMPopup.
* Fix "make distcheck" errors and other build cleanups.Matthew Barnes2009-07-012-2/+1
|
* Get the "mail-to-task" plugin working again.Matthew Barnes2009-06-264-190/+195
| | | | | This one was more challenging. It exposed some flaws in the new shell design and in EPluginUI, which is good because they're fixed now.
* Stop abusing forward declarations.Matthew Barnes2009-06-192-2/+3
|
* Prefer GLib basic types over C types.Matthew Barnes2009-05-271-44/+44
|
* Remove trailing whitespace, again.Matthew Barnes2009-05-271-3/+3
|
* Bug 523216 – User-oriented plugin descriptionsMatthew Barnes2009-05-221-2/+2
|
* Use Behdad's brilliant git.mk to generate .gitignore files.Matthew Barnes2009-05-021-0/+2
|
* Be able to save mail to event, meeting, task or memoMilan Crha2009-04-254-96/+306
| | | | ** Fix for bug #342296
* ** Fix for bug #576696Milan Crha2009-03-262-1/+15
| | | | | | | | | | | | | 2009-03-26 Milan Crha <mcrha@redhat.com> ** Fix for bug #576696 * plugins/mail-to-task/mail-to-task.c: (set_attendees): * plugins/mail-to-meeting/mail-to-meeting.c: (add_attendee_cb): Set mandatory properties. svn path=/trunk/; revision=37477
* Remove a trailing space after the line continuation backslash.Tor Lillqvist2009-01-292-1/+6
| | | | | | | | | | 2009-01-28 Tor Lillqvist <tml@novell.com> * Makefile.am: Remove a trailing space after the line continuation backslash. svn path=/trunk/; revision=37146
* Use also EVOLUTION_CALENDAR_CFLAGS.Milan Crha2009-01-212-0/+5
| | | | | | | | | | | | | 2009-01-21 Milan Crha <mcrha@redhat.com> * plugins/import-ics-attachments/Makefile.am: * plugins/backup-restore/Makefile.am: * plugins/mail-to-meeting/Makefile.am: * plugins/startup-wizard/Makefile.am: * plugins/mail-to-task/Makefile.am: Use also EVOLUTION_CALENDAR_CFLAGS. svn path=/trunk/; revision=37116
* ** Fixes bug #558726 (patch by Frederic van Starbmann)Matthew Barnes2008-11-012-1/+8
| | | | | | | | | | | | | | 2008-10-31 Matthew Barnes <mbarnes@redhat.com> ** Fixes bug #558726 (patch by Frederic van Starbmann) * mail/em-format-html.c (emfh_multipart_related_check): * plugins/mail-to-task/mail-to-task.c (do_mail_to_task): * plugins/plugin-manager/plugin-manager.c (eppm_enable_toggled): Fix several potential format string crashes. svn path=/trunk/; revision=36709
* License ChangesSankarasivasubramanian Pasupathilingam2008-08-272-6/+29
| | | | svn path=/trunk/; revision=36116
* Use NO_UNDEFINED. Link with more libraries. To generate dlls on Windows.Bharath Acharya2008-08-122-1/+12
| | | | | | | | | | 2008-08-12 Bharath Acharya <abharath@novell.com> * Makefile.am: Use NO_UNDEFINED. Link with more libraries. To generate dlls on Windows. svn path=/trunk/; revision=35960
* ** Fix for bug #318089Milan Crha2008-06-192-39/+70
| | | | | | | | | | | | 2008-06-18 Milan Crha <mcrha@redhat.com> ** Fix for bug #318089 * mail-to-task.c: (convert_to_task): Ask for destination source only when have more than one writable source defined. svn path=/trunk/; revision=35646
* ** Fix for bug #353807Milan Crha2007-11-232-2/+28
| | | | | | | | | | | | 2007-11-23 Milan Crha <mcrha@redhat.com> ** Fix for bug #353807 * mail-to-task.c: (do_mail_to_task): Notice user if any error occur during opening calendar, calendar is readonly or when add fails. svn path=/trunk/; revision=34576
* ** Remove trailing whitespace from source code.Matthew Barnes2007-11-151-21/+21
| | | | | | | | | 2007-11-14 Matthew Barnes <mbarnes@redhat.com> ** Remove trailing whitespace from source code. svn path=/trunk/; revision=34537
* ** Fix for bug #334675Milan Crha2007-11-052-4/+81
| | | | | | | | | | | | | | | | | | | | 2007-11-05 Milan Crha <mcrha@redhat.com> ** Fix for bug #334675 * plugins/mail-to-task/mail-to-task.c: (do_mail_to_task), (text_contains_nonwhitespace), (get_selected_text), (convert_to_task), (org_gnome_mail_to_task), (org_gnome_mail_to_task_menu): When selected only one message, then try to use selected text in preview as description, instead of whole message body. * Requires newer GthHtml (API extended, since revision 8614). * mail/em-folder-view.c: (emfv_message_reply): Leak fix. svn path=/trunk/; revision=34497
* ** Fix for bug #353779Milan Crha2007-11-052-3/+10
| | | | | | | | | | | | | | | 2007-11-05 Milan Crha <mcrha@redhat.com> ** Fix for bug #353779 * mail-to-meeting/org-gnome-mail-to-meeting.eplug.xml: Allow convert more than one mail to meeting with one click. * mail-to-task/org-gnome-mail-to-task.eplug.xml: Allow convert more than one mail to task with one click. svn path=/trunk/; revision=34493
* 2007-09-07 mcrha Fix for bug #473903Milan Crha2007-09-072-1/+8
| | | | svn path=/trunk/; revision=34192
* ** Fix for bug #468804Wang Xin2007-08-221-1/+5
| | | | | | | | | | | 2007-08-22 Wang Xin <jedy.wang@sun.com> ** Fix for bug #468804 * plugins/mail-to-task/mail-to-task.c: Handle NUll pointer. svn path=/trunk/; revision=34063
* 2007-08-16 mcrha Part of fix for bug #350539Milan Crha2007-08-162-0/+10
| | | | svn path=/trunk/; revision=34017
* ** Fix for bug #455799Hiroyuki Ikezoe2007-08-041-5/+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
* Committed on behalf of Gilles Dartiguelongue <dartigug@esiee.fr>Sankar P2007-04-022-1/+9
| | | | | | | | | | | | | 2007-04-02 Sankar P <psankar@novell.com> * Committed on behalf of Gilles Dartiguelongue <dartigug@esiee.fr> Code Cleanup. Fixes part of #301149 svn path=/trunk/; revision=33354
* Fixes #310489Chenthill Palanisamy2006-07-312-4/+35
| | | | svn path=/trunk/; revision=32448
* Fixes #332605. Multipart message handling. (set_attachments): NewHiroyuki Ikezoe2006-06-062-2/+109
| | | | | | | | | | | | | | 2006-06-06 Hiroyuki Ikezoe <poincare@ikezoe.net> Fixes #332605. * mail-to-task.c: (set_description): Multipart message handling. (set_attachments): New function. Set attachment files to a task. (clean_name): New function. from plugins/save-attachments/save-attachments.c. svn path=/trunk/; revision=32083
* added a bug id which was fixed with the previous patch.Chenthill Palanisamy2006-03-101-1/+1
| | | | svn path=/trunk/; revision=31679
* included the header file, authentication.hChenthill Palanisamy2006-03-041-0/+1
| | | | svn path=/trunk/; revision=31638
* fixes #330974.Chenthill Palanisamy2006-03-042-2/+11
| | | | svn path=/trunk/; revision=31637
* reverting the previous commit.Chenthill Palanisamy2006-02-012-3/+10
| | | | svn path=/trunk/; revision=31394
* Make this place a bit more quietKjartan Maraas2006-01-281-3/+3
| | | | svn path=/trunk/; revision=31328
* Add some much needed ego to NCLUDES ;-)Harish Krishnaswamy2006-01-171-1/+1
| | | | | | | | 2006-01-17 Harish Krishnaswamy <kharish@novell.com> * Makefile.am : Add some much needed ego to NCLUDES ;-) svn path=/trunk/; revision=31222
* Enumerate files for BUILT_SOURCES macro as plugin_DATA now includes staticHarish Krishnaswamy2006-01-162-2/+8
| | | | | | | | | | 2006-01-16 Harish Krishnaswamy <kharish@novell.com> * Makefile.am: Enumerate files for BUILT_SOURCES macro as plugin_DATA now includes static files from the source tree. svn path=/trunk/; revision=31214
* ** Fixes bug #323011Srinivasa Ragavan2006-01-145-17/+85
| | | | | | | | | | | | | | | 2006-01-14 Srinivasa Ragavan <sragavan@novell.com> ** Fixes bug #323011 * Makefile.am: Added org-gnome-mail-to-task.xml to build * mail-to-task.c (convert_to_task), (org_gnome_mail_to_task), (org_gnome_mail_to_task_menu): Added Code to handle menu. * org-gnome-mail-to-task.eplug.xml: Added plug to show Convert to Task menu item under Message menu. * org-gnome-mail-to-task.xml: Added UI files for menu item. svn path=/trunk/; revision=31179
* fixes #274433Chenthill Palanisamy2005-12-212-2/+23
| | | | svn path=/trunk/; revision=30920
* Re-implemented this funciton. (add_attendee_cb): Removed this callbackMubeen Jukaku2005-11-112-16/+31
| | | | | | | | | | | 2005-10-11 Mubeen Jukaku <jmubeen@novell.com> * mail-to-task.c (set_attendees): Re-implemented this funciton. (add_attendee_cb): Removed this callback because of above change. Fixes bug #301081 svn path=/trunk/; revision=30600
* fixes 315752.Chenthill Palanisamy2005-10-032-13/+84
| | | | svn path=/trunk/; revision=30475
* use the right type for attendees.Not Zed2005-08-242-1/+5
| | | | | | | | 2005-08-23 Not Zed <NotZed@Ximian.com> * mail-to-task.c (add_attendee_cb): use the right type for attendees. svn path=/trunk/; revision=30229
* Fixed built_sources && cleanfiles for generated filesMichael Zucci2005-05-122-0/+7
| | | | svn path=/trunk/; revision=29327
* fix names so that intltool will parse as xmlMichael Zucci2005-05-063-4/+9
| | | | | | | remove use of e-error-tool tag xml for translations where appropriate svn path=/trunk/; revision=29304
* clean up author/descriptions for various plugins.Björn Torkelsson2005-02-252-2/+7
| | | | | | | | 2005-02-24 Björn Torkelsson <torkel@acc.umu.se> * clean up author/descriptions for various plugins. svn path=/trunk/; revision=28889
* new function to correctly retrieve the body of the message.Rodrigo Moya2005-01-152-18/+46
| | | | | | | | | | 2005-01-14 Rodrigo Moya <rodrigo@novell.com> * mail-to-task.c (set_description): new function to correctly retrieve the body of the message. (do_mail_to_task): call set_description. svn path=/trunk/; revision=28406
* fixed description and added author's info, to display correctly on theRodrigo Moya2004-11-032-2/+8
| | | | | | | | | 2004-11-04 Rodrigo Moya <rodrigo@novell.com> * org-gnome-mail-to-task.eplug.in: fixed description and added author's info, to display correctly on the plugin manager. svn path=/trunk/; revision=27819
* revert rodrigo's last fix, it should actually work now, i hope.Not Zed2004-11-032-1/+6
| | | | | | | | | 2004-11-03 Not Zed <NotZed@Ximian.com> * org-gnome-mail-to-task.eplug.in: revert rodrigo's last fix, it should actually work now, i hope. svn path=/trunk/; revision=27816
* Dist .eplug.in filesJP Rosevear2004-11-022-0/+6
| | | | svn path=/trunk/; revision=27781
* fix folder view popup id again.Rodrigo Moya2004-10-292-2/+6
| | | | | | | | 2004-10-29 Rodrigo Moya <rodrigo@novell.com> * org-gnome-mail-to-task.eplug.in: fix folder view popup id again. svn path=/trunk/; revision=27769
* fix folder view popup id.Not Zed2004-10-282-1/+5
| | | | | | | | 2004-10-28 Not Zed <NotZed@Ximian.com> * org-gnome-mail-to-task.eplug.in: fix folder view popup id. svn path=/trunk/; revision=27754
* new functions. (do_mail_to_task): set attendees and organizer on the taskRodrigo Moya2004-10-222-1/+63
| | | | | | | | | | 2004-10-21 Rodrigo Moya <rodrigo@novell.com> * mail-to-task.c (set_attendees, set_organizer): new functions. (do_mail_to_task): set attendees and organizer on the task from the recipients in the mail message. svn path=/trunk/; revision=27686
* use correct icon.Rodrigo Moya2004-10-222-1/+5
| | | | | | | | 2004-10-21 Rodrigo Moya <rodrigo@novell.com> * org-gnome-mail-to-task.eplug.in: use correct icon. svn path=/trunk/; revision=27685
* fixed to make the plugin show up in the correct place.Rodrigo Moya2004-10-222-2/+7
| | | | | | | | | 2004-10-21 Rodrigo Moya <rodrigo@novell.com> * org-gnome-mail-to-task.eplug.in: fixed to make the plugin show up in the correct place. svn path=/trunk/; revision=27684
* implemented plugin for converting selected mails to tasks.Rodrigo Moya2004-10-225-0/+154
2004-10-21 Rodrigo Moya <rodrigo@novell.com> * mail-to-task.c: implemented plugin for converting selected mails to tasks. svn path=/trunk/; revision=27682