Matthew Barnes [Sat, 7 May 2011 13:21:44 +0000 (09:21 -0400)]
Rename "name" field of CamelFolderInfo to "display_name".
Long as I'm already breaking the CamelFolderInfo struct, this helps
clarify the "name" field's intended purpose.
Matthew Barnes [Sat, 7 May 2011 12:13:44 +0000 (08:13 -0400)]
Remove "uri" field of CamelFolderInfo.
With this change, Camel no longer deals with folder URIs.
Matthew Barnes [Sat, 7 May 2011 05:01:09 +0000 (01:01 -0400)]
camel_vee_folder_new(): Add argument guards.
Matthew Barnes [Fri, 6 May 2011 17:27:27 +0000 (13:27 -0400)]
CamelVeeStore: Change handling of CHANGE_NOSELECT flag.
Add a CAMEL_FOLDER_NOSELECT flag to the CamelFolderInfo instead of
setting a "noselect" param on the URI. The URI is about to go away.
Matthew Barnes [Fri, 6 May 2011 17:22:59 +0000 (13:22 -0400)]
Remove CAMEL_STORE_SUMMARY_FRAGMENT flag.
Not used anywhere.
Matthew Barnes [Fri, 6 May 2011 17:16:16 +0000 (13:16 -0400)]
CamelSaslPOPB4SMTP: Fix a compiler warning.
Matthew Barnes [Fri, 6 May 2011 17:13:03 +0000 (13:13 -0400)]
CamelFolder: Remove "uri" property.
Also remove camel_folder_get_uri().
Too bad I just added this for 3.0. It was handy at the time, but Camel
won't be using folder URIs anymore. That's Evolution's domain now.
Matthew Barnes [Fri, 6 May 2011 17:07:16 +0000 (13:07 -0400)]
CamelFolderSearch: Hack to deal with "message-location".
This is the one place in Camel that needs to know about Evolution folder
URI formats. It's fine for now; it's marked with a FIXME comment and I'll
clean it up properly later.
Matthew Barnes [Fri, 6 May 2011 15:23:08 +0000 (11:23 -0400)]
Camel: Store UIDs in X-Evolution-Source headers.
CamelStore UIDs are easier to deal with than URLs.
For backward-compatibility, CamelFilterDriver can still handle
X-Evolution-Source headers with URLs.
Matthew Barnes [Fri, 6 May 2011 14:36:15 +0000 (10:36 -0400)]
Remove camel_filter_driver_filter_mbox()
Function is no longer needed since the switch to Maildir.
Dan Vrátil [Thu, 5 May 2011 14:01:43 +0000 (10:01 -0400)]
Bug 332497 - Add Edit -> Available Categories
Split ECategoriesDialog into smaller widgets:
ECategoriesEditor
ECategoriesSelector
ECategoryEditor
Vibha Yadav [Thu, 5 May 2011 07:16:09 +0000 (12:46 +0530)]
Bug 649365 - Creation of new repository evolution-groupwise
Removing groupwise plugin code from evolution.
Please find the evolution-groupwise repository
http://git.gnome.org/browse/evolution-groupwise
Kjartan Maraas [Wed, 4 May 2011 08:56:48 +0000 (10:56 +0200)]
Updated Norwegian bokmål translation
Kjartan Maraas [Fri, 1 Apr 2011 17:04:32 +0000 (19:04 +0200)]
Mark the param spec strings for translation correctly.
Matthew Barnes [Tue, 3 May 2011 15:22:46 +0000 (11:22 -0400)]
Remove camel_store_folder_uri_equal().
Function was not used by Camel or any of its providers. Evolution
now has an equivalent function named e_mail_folder_uri_equal().
Abduxukur Abdurixit [Mon, 2 May 2011 16:04:28 +0000 (18:04 +0200)]
Added UG translation
Abduxukur Abdurixit [Sun, 1 May 2011 21:08:00 +0000 (23:08 +0200)]
Added UG translation
Fran Diéguez [Sat, 30 Apr 2011 21:13:50 +0000 (23:13 +0200)]
Updated galician translations
Daniel Mustieles [Fri, 29 Apr 2011 17:38:10 +0000 (19:38 +0200)]
Updated Spanish translation
Matthew Barnes [Fri, 29 Apr 2011 14:14:01 +0000 (10:14 -0400)]
Fix definition of CamelProvider.url_equal().
Functions of type GCompareFunc are supposed to return -1/0/1 as in
strcmp(). CamelProvider.url_equal() should instead be a GEqualFunc
since it returns TRUE or FALSE.
Function signatures are identical except for the return type, but
gboolean is a type of gint so no changes required for providers.
Matthew Barnes [Fri, 29 Apr 2011 13:11:38 +0000 (09:11 -0400)]
Revise camel_session_get_service_by_url().
Some groupware providers use the same URL for their mail store and mail
transport services, so add a CamelProviderType argument so callers have
to explicitly say which service type they want.
The need for this was discovered in bug #648841 for evolution-mapi.
Milan Crha [Thu, 28 Apr 2011 08:49:24 +0000 (10:49 +0200)]
Bug #648844 - IMAP Error: LIST failed: wildcards not permitted in username
David Woodhouse [Wed, 27 Apr 2011 23:35:56 +0000 (00:35 +0100)]
Bug 628142 - Fix handling of simultaneous get_message requests
Drop the hash table of EFlags completely. It's broken, because the UID
we use as the hash key isn't actually unique; the same UID can exist in
multiple folders. And the lifetime issues on the EFlag weren't cleanly
solvable (yeah, we can add a refcounting wrapper, but ick).
We were *already* using imapx_is_job_in_queue() to check *properly* if
there was an existing fetch. So just implement a simple 'fetch counter'
with a GCond and a corresponding GMutex, bump that count by one each
time any fetch completes, and use the GCond when waiting for a *specific*
fetch to complete, inside a while (imapx_is_job_in_queue()) loop.
Andrej Žnidaršič [Wed, 27 Apr 2011 17:46:52 +0000 (19:46 +0200)]
Updated Slovenian translation
Matthew Barnes [Sat, 23 Apr 2011 13:45:35 +0000 (09:45 -0400)]
Replace CamelSessionThreadMsg with a more modern API.
This introduces camel_session_submit_job() to replace the older
CamelSessionThreadMsg API, providing a simpler mechanism for providers
to initiate low-priority background jobs. Jobs can be submitted from
any thread, but execution of the job is always as follows:
1) A "job-started" signal is emitted from the thread in which the
CamelSession was created. This is typically the same thread that
hosts the global default GMainContext, or "main" thread.
2) The callback function passed to camel_session_submit_job() is invoked
from a different thread where it's safe to call synchronous functions.
3) Once the callback has returned, a "job-finished" signal is emitted
from the same thread as "job-started" was emitted.
4) If a GDestroyNotify callback was passed to camel_session_submit_job(),
it is invoked and passed the callback closure so it can be freed.
The signature of the callback function is easier to work with:
void (*CamelSessionCallback) (CamelSession *session,
GCancellable *cancellable,
gpointer user_data,
GError **error)
The cancellable is actually a CamelOperation, so status messages can be
pushed and popped and progress reported through the CamelOperation API.
The GError pointer is never NULL, so you can safely dereference it in
the callback function to check for errors.
Matthew Barnes [Sat, 23 Apr 2011 00:22:34 +0000 (20:22 -0400)]
Remove unused camel_session_thread_wait().
Matthew Barnes [Fri, 22 Apr 2011 21:10:23 +0000 (17:10 -0400)]
Remove unused CamelTimeoutCallback typedef.
Matthew Barnes [Fri, 22 Apr 2011 13:04:43 +0000 (09:04 -0400)]
CamelStore: Remove a dead assignment.
Matthew Barnes [Fri, 22 Apr 2011 12:49:51 +0000 (08:49 -0400)]
CamelSession: Remove some leftover debug messages.
Matthew Barnes [Fri, 22 Apr 2011 12:48:51 +0000 (08:48 -0400)]
CamelStore: Chain up in the constructed() method
Forgot to add that part yesterday. Nothing works without it.
Matthew Barnes [Tue, 19 Apr 2011 19:32:47 +0000 (15:32 -0400)]
Rework how CamelServices are added to CamelSession.
* Give CamelServices a simple unique ID string. That will be its
identity from now on, not its URL.
* Split adding a CamelService and retrieving a CamelService into two
separate operations. Adding a CamelService requires both a UID and
CamelURL (for now), retrieving a CamelService just requires the UID.
* CamelService now implements the GInitable interface, replacing its
construct() method.
Matthew Barnes [Sun, 17 Apr 2011 23:59:15 +0000 (19:59 -0400)]
Define a boxed GType for CamelURL.
And clean up the header file.
Milan Crha [Wed, 20 Apr 2011 15:24:34 +0000 (17:24 +0200)]
Bug #645498 - [maildir] Fails to show already read messages again
Wouter Bolsterlee [Tue, 19 Apr 2011 19:14:13 +0000 (21:14 +0200)]
Update the translations now that bug #646619 is fixed
Milan Crha [Tue, 19 Apr 2011 10:13:57 +0000 (12:13 +0200)]
Bug #645783 - Return safe paths from CamelService::get_path()
Niki Guldbrand [Tue, 19 Apr 2011 09:18:46 +0000 (11:18 +0200)]
Bug #645239 - Fix build error when enabling kerberos without specifying path
Milan Crha [Mon, 18 Apr 2011 17:14:03 +0000 (19:14 +0200)]
Fix few memory leaks
Milan Crha [Mon, 18 Apr 2011 16:53:50 +0000 (18:53 +0200)]
Bug #646619 - Typo in user-visible string: "defalut" should be "default"
Dan Vrátil [Mon, 18 Apr 2011 16:03:54 +0000 (18:03 +0200)]
Bug #647429 - Hide port-entry for providers without port
Matthew Barnes [Sun, 17 Apr 2011 18:35:38 +0000 (14:35 -0400)]
Fix Gtk-Doc notation in Camel.
Matthew Barnes [Sun, 17 Apr 2011 15:17:50 +0000 (11:17 -0400)]
Seal up CamelService.
And add accessor functions:
camel_service_get_camel_url()
camel_service_get_connection_status()
This change increments libcamel's soname.
Daniel Nylander [Sun, 17 Apr 2011 06:54:49 +0000 (08:54 +0200)]
Updated Swedish translation
Abduxukur Abdurixit [Fri, 15 Apr 2011 22:51:36 +0000 (00:51 +0200)]
Added UG translation
David Woodhouse [Fri, 15 Apr 2011 19:34:47 +0000 (20:34 +0100)]
Pull in translations from Evolution for "On This Computer"
David Woodhouse [Fri, 15 Apr 2011 11:19:00 +0000 (12:19 +0100)]
Bug 647873 [2/2] - e_cal_new_system_foo() should create source in GConf
David Woodhouse [Fri, 15 Apr 2011 11:20:04 +0000 (12:20 +0100)]
Bug 647873 [1/2] - Fix comparison of URI in e_cal_new_from_uri().
If the URI only had a relative_uri property, we should build the full URI
for comparison rather than just skipping it. Otherwise we get false
mismatches.
Daniel Mustieles [Tue, 12 Apr 2011 19:30:25 +0000 (21:30 +0200)]
Updated Spanish translation
David Woodhouse [Sat, 9 Apr 2011 20:39:25 +0000 (21:39 +0100)]
Fix read off end of string in NTLM SSO support
Didn't actually break things, since the base64 decode usually just gave us
an extra few bytes before hitting a character it didn't like and stopping
anyway, but naughty nonetheless. Valgrind told me off for it, and rightly so.
Matthew Barnes [Thu, 7 Apr 2011 20:11:55 +0000 (16:11 -0400)]
Bug 46117 - e-calendar-factory does not exit
David Woodhouse [Sun, 3 Apr 2011 23:01:08 +0000 (00:01 +0100)]
Add support for NTLM single-sign-on using /usr/bin/ntlm_auth
There's a simple test version of ntlm_auth at
http://david.woodhou.se/ntlm_auth_v2.c
David Woodhouse [Sun, 3 Apr 2011 21:04:54 +0000 (22:04 +0100)]
Add asynchronous camel_sasl_try_empty_password()
David Woodhouse [Sun, 3 Apr 2011 20:38:31 +0000 (21:38 +0100)]
Add camel_sasl_try_empty_password_sync() method.
This indicates that a SASL method with the need_password flag can be tried
without providing a password, for single-sign-on using system credentials.
This will be used by NTLM.
Inaki Larranaga Murgoitio [Mon, 4 Apr 2011 12:48:54 +0000 (14:48 +0200)]
Updated Basque language
Jiro Matsuzawa [Sun, 3 Apr 2011 16:14:44 +0000 (01:14 +0900)]
Updated Japanese translation.
Wouter Bolsterlee [Sun, 3 Apr 2011 15:06:40 +0000 (17:06 +0200)]
Updated Dutch translation by Wouter Bolsterlee
Hannie Dumoleyn [Sun, 3 Apr 2011 11:41:33 +0000 (13:41 +0200)]
Updated Dutch translation by Hannie Dumoleyn
Žygimantas Beručka [Sun, 3 Apr 2011 12:15:30 +0000 (15:15 +0300)]
Updated Lithuanian translation
Jordi Serratosa [Sat, 2 Apr 2011 19:11:29 +0000 (21:11 +0200)]
[l10n]Fixes on Catalan translation
Takayuki KUSANO [Sat, 2 Apr 2011 14:30:42 +0000 (23:30 +0900)]
Updated Japanese translation.
David Woodhouse [Fri, 1 Apr 2011 20:53:04 +0000 (21:53 +0100)]
Infer NTLM domain from username; don't assume it matches the server's domain
Kristjan SCHMIDT [Fri, 1 Apr 2011 19:43:33 +0000 (21:43 +0200)]
Add Esperanto translation
David Woodhouse [Tue, 22 Mar 2011 10:11:09 +0000 (10:11 +0000)]
Support NTLMv2 in camel-sasl-ntlm.c
This still isn't good enough; we need to support calling out to
/usr/bin/ntlm_auth to handle the challenge/response *for* us, for
single-sign-on so that we don't need to know the password for ourselves.
Kris Thomsen [Fri, 1 Apr 2011 10:14:31 +0000 (12:14 +0200)]
Updated Danish translation
Matthew Barnes [Wed, 30 Mar 2011 15:08:10 +0000 (11:08 -0400)]
Bug 646200 - Insufficient requirement on libsoup
Require libsoup >= 2.31.2 so we can use the get methods for SoupCookie,
SoupData and SoupURI.
Alexander Shopov [Tue, 29 Mar 2011 21:41:21 +0000 (00:41 +0300)]
Updated Bulgarian translation
Antonio Fernandes C. Neto [Tue, 29 Mar 2011 13:01:37 +0000 (10:01 -0300)]
Updated Brazilian Portuguese translation
Alexander Shopov [Mon, 28 Mar 2011 04:38:50 +0000 (07:38 +0300)]
Updated Bulgarian translation
Alexander Shopov [Mon, 28 Mar 2011 03:16:06 +0000 (06:16 +0300)]
Updated Bulgarian translation
Abduxukur Abdurixit [Sun, 27 Mar 2011 17:22:30 +0000 (19:22 +0200)]
Added UG translation
Luca Ferretti [Wed, 23 Mar 2011 20:48:46 +0000 (21:48 +0100)]
Updated Italian translation
Dan Vráti [Fri, 18 Mar 2011 15:34:37 +0000 (11:34 -0400)]
Bug 418954 - Add a separate entry combo for port numbers
Adds a new field to CamelProvider for listing standard port numbers with
descriptions. Evolution uses this information in its EPortEntry widget.
This breaks ABI in CamelProvider and requires a soname bump.
Matthew Barnes [Tue, 22 Mar 2011 17:57:21 +0000 (13:57 -0400)]
Collect all test code into a top-level "tests" directory
This includes both automated unit tests and standalone demo programs.
Test code is partitioned by library. So far we have:
tests/libebook
tests/libecal
tests/libedata-cal
tests/libedataserver
tests/libedataserverui
This makes for a natural place to put additional E-D-S test code, but
still have it compartmentalized in one place (excluding Camel, which is
still tagging along with E-D-S but is not really part of E-D-S).
Sweta Kothari [Tue, 22 Mar 2011 09:13:35 +0000 (14:43 +0530)]
Updated Gujarati Translations
Matthew Barnes [Mon, 21 Mar 2011 19:00:04 +0000 (15:00 -0400)]
Begin Evolution-Data-Server 3.1 development.
Matthew Barnes [Mon, 21 Mar 2011 14:34:21 +0000 (10:34 -0400)]
Post-release version bump.
Matthew Barnes [Mon, 21 Mar 2011 14:12:37 +0000 (10:12 -0400)]
NEWS update for 2.91.92 release.
Punit Jain [Mon, 21 Mar 2011 03:46:36 +0000 (09:16 +0530)]
Bug 629032 - GW count is not updated while downloading contacts.
Not displaying the contacts while fetching and the contacts count
on the left top is same as the number of contacts displayed in view.
Punit Jain [Mon, 21 Mar 2011 03:44:16 +0000 (09:14 +0530)]
Bug 634663 - e-calendar-factory crashes while retracting a meeting.
We were sending wrong users list. The patch resolves the issue.
David Woodhouse [Sun, 20 Mar 2011 20:09:14 +0000 (20:09 +0000)]
Remove ESoapMessage and ESoapResponse
These are only used by the EWS back end so far, and I want to revamp them
before we include them in a stable release. We have *large* SOAP requests
and responses, containing the full base64-encoded content of entire MIME
messages... we really want zero-copy for that part, and at the moment the
implementation has about three copies — we have to create a base64 string
in memory, pass it to e_soap_message_write_string() which makes a second
copy in the xmlDoc, then it's converted into a flattened buffer which is
passed to libsoup to send...
Just rip it all out for now; we'll keep a local copy in EWS and can add it
back into EDS 3.1 when we have it looking how we want it.
Don't bother with bumping the libedataserver soname for this; nobody was
using these anyway and they've never been in a stable release. Bumping
the soname as this stage of the release would be too painful.
Daniel Korostil [Sun, 20 Mar 2011 17:57:25 +0000 (19:57 +0200)]
Uploaded Ukranian
Daniel Korostil [Sun, 20 Mar 2011 17:26:47 +0000 (19:26 +0200)]
Uploaded Ukranian
Rudolfs Mazurs [Sun, 20 Mar 2011 14:49:53 +0000 (16:49 +0200)]
Updated Latvian translation.
Changwoo Ryu [Sat, 19 Mar 2011 14:05:48 +0000 (23:05 +0900)]
Updated Korean translation
Matthew Barnes [Fri, 18 Mar 2011 16:57:02 +0000 (12:57 -0400)]
Coding style and whitespace cleanup.
Matthew Barnes [Fri, 18 Mar 2011 16:01:48 +0000 (12:01 -0400)]
Fix linking in calendar/libegdbus/Makefile.am
GNOME_PLATFORM_LIBS is too broad. It drags in gtk3, which causes
libecal to link against gtk3, which we definitely don't want. Use
E_DATA_SERVER_LIBS instead.
Thanks to Benjamin Otte for spotting this.
Lele Long [Fri, 18 Mar 2011 10:51:11 +0000 (10:51 +0000)]
Update Simplified Chinese translation.
Chao-Hsiung Liao [Fri, 18 Mar 2011 07:00:57 +0000 (15:00 +0800)]
Updated Traditional Chinese translation(Hong Kong and Taiwan)
Mario Blättermann [Thu, 17 Mar 2011 09:59:21 +0000 (10:59 +0100)]
[l10n] Updated German translation
Sweta Kothari [Thu, 17 Mar 2011 09:52:45 +0000 (15:22 +0530)]
Updated Gujarati Translations
Matej Urbančič [Tue, 15 Mar 2011 21:03:40 +0000 (22:03 +0100)]
Updated Slovenian translation
krishnababu k [Tue, 15 Mar 2011 12:37:18 +0000 (18:07 +0530)]
Updated Telugu Translations
krishnababu k [Tue, 15 Mar 2011 12:34:12 +0000 (18:04 +0530)]
Updated Telugu Translations
Lucian Adrian Grijincu [Mon, 14 Mar 2011 11:53:34 +0000 (12:53 +0100)]
Updated Romanian translation
crenguta bacaoanu [Mon, 14 Mar 2011 10:45:34 +0000 (11:45 +0100)]
Updated Romanian translation
Milan Crha [Mon, 14 Mar 2011 10:21:14 +0000 (11:21 +0100)]
Bug #644532 - Crash when opening ESource with local:/system URI
Milan Crha [Mon, 14 Mar 2011 08:06:29 +0000 (09:06 +0100)]
Ensure backend life-time during inner calls
Matthew Barnes [Sun, 13 Mar 2011 19:29:45 +0000 (15:29 -0400)]
Improve libedataserver API docs (not done yet).
Michael Kotsarinis [Sun, 13 Mar 2011 17:23:09 +0000 (19:23 +0200)]
l10n: Updated Greek translation
Bruce Cowan [Sun, 13 Mar 2011 16:01:43 +0000 (16:01 +0000)]
Updated British English translation
Matthew Barnes [Sat, 12 Mar 2011 19:19:09 +0000 (14:19 -0500)]
Finish documenting the libebackend API.
Starting small; trying to work bottom-up.