platform/upstream/glib-networking.git
11 years agoUpdated Lithuanian translation
Aurimas Černius [Sat, 21 Jul 2012 21:19:08 +0000 (00:19 +0300)]
Updated Lithuanian translation

11 years agoUpdated Spanish translation
Daniel Mustieles [Sat, 21 Jul 2012 16:44:32 +0000 (18:44 +0200)]
Updated Spanish translation

11 years agoUpdated Slovenian translation
Matej Urbančič [Thu, 19 Jul 2012 07:11:51 +0000 (09:11 +0200)]
Updated Slovenian translation

11 years agognutls: handle simultaneous ops, do handshaking in a thread
Dan Winship [Mon, 2 Jul 2012 16:58:02 +0000 (12:58 -0400)]
gnutls: handle simultaneous ops, do handshaking in a thread

Keep separate internal read/write states so that you can do
simultaneous reads/writes (either simultaneous async ops in the same
thread, or simultaneous sync ops in different threads). Add
locking/blocking so that this works correctly even in the presence of
rehandshakes (and add test cases for this).

As part of this, change handshaking so that the I/O part of it always
happens in a separate thread, which has three advantages:

  1. It simplifies GTlsConnectionGnutlsSource by making it not have to
     worry about flipping back and forth between read and write.

  2. (Future) It will let the caller asynchronously handle
     certificate-related functionality that is implemented via
     synchronous callbacks in gnutls.

  3. (Future) We can use g_task_set_return_on_cancel() to allow
     cancellation even during uncancellable PKCS#11 operations.

https://bugzilla.gnome.org/show_bug.cgi?id=656343
https://bugzilla.gnome.org/show_bug.cgi?id=660252

11 years agognutls: reorganize certificate handling
Dan Winship [Tue, 17 Jul 2012 22:47:26 +0000 (18:47 -0400)]
gnutls: reorganize certificate handling

Move some of the code in handshake_internal() out into helper
functions, and move the code from the client and server verify_peer()
implementations into a helper function in gtlsconnection-gnutls.c as
well, to reduce duplication between them.

11 years agognutls: preserve handshake errors
Dan Winship [Sun, 12 Feb 2012 16:30:22 +0000 (11:30 -0500)]
gnutls: preserve handshake errors

If an error occurs during handshake, remember it for later, since the
connection is now essentially broken.

11 years agognutls: use g_clear_object()
Dan Winship [Thu, 28 Jun 2012 15:35:46 +0000 (11:35 -0400)]
gnutls: use g_clear_object()

11 years ago2.33.3 glib-2.33.3
Dan Winship [Mon, 25 Jun 2012 21:36:53 +0000 (17:36 -0400)]
2.33.3

11 years agoUpdated Dutch translation
Wouter Bolsterlee [Mon, 18 Jun 2012 19:07:26 +0000 (21:07 +0200)]
Updated Dutch translation

11 years agoUpdated Dutch translation
Rachid BM [Mon, 18 Jun 2012 19:06:14 +0000 (21:06 +0200)]
Updated Dutch translation

12 years agoRevert "gnutls: Change the GnuTLS priority string from NORMAL to SECURE256"
Dan Winship [Thu, 14 Jun 2012 13:29:54 +0000 (09:29 -0400)]
Revert "gnutls: Change the GnuTLS priority string from NORMAL to SECURE256"

On gnutls 2.12.x, SECURE256 just changes the preferred negotiation
order, but on 3.0.x, it means "disable all non-256-bit ciphers", which
breaks many sites.

This reverts commit 6550c7e9cf928b13ed1d1167004c1f6e16e0173f.

12 years agognutls: Change the GnuTLS priority string from NORMAL to SECURE256
Josh Rickmar [Fri, 8 Jun 2012 16:57:00 +0000 (12:57 -0400)]
gnutls: Change the GnuTLS priority string from NORMAL to SECURE256

Prefer 256-bit AES to 128-bit, like Firefox does

https://bugzilla.gnome.org/show_bug.cgi?id=677717

12 years ago[l10n] Updated Indonesian translation
Dirgita [Thu, 17 May 2012 15:07:41 +0000 (22:07 +0700)]
[l10n] Updated Indonesian translation

12 years agoautogen.sh: Run intltoolize too
Colin Walters [Wed, 9 May 2012 23:00:03 +0000 (19:00 -0400)]
autogen.sh: Run intltoolize too

We need to, since we're using it.

12 years agoautogen.sh: Ensure we have m4 directory
Colin Walters [Wed, 9 May 2012 22:33:24 +0000 (18:33 -0400)]
autogen.sh: Ensure we have m4 directory

This is a regression introduced by the previous commit.

12 years agoautogen.sh: recopy from glib
Dan Winship [Tue, 8 May 2012 19:18:37 +0000 (15:18 -0400)]
autogen.sh: recopy from glib

glib's autogen.sh has been simplified to use autoreconf rather than
doing everything by hand. Copy it here.

Among other things, this fixes us to be able to build with automake
1.12.

https://bugzilla.gnome.org/show_bug.cgi?id=675261

12 years agognutls: fix GTlsConnectionGnutls:use-system-certdb
Dan Winship [Wed, 2 May 2012 13:05:22 +0000 (09:05 -0400)]
gnutls: fix GTlsConnectionGnutls:use-system-certdb

Setting use-system-certdb to FALSE ended up being a no-op, because it
wasn't clearing priv->database_is_unset, so
GTlsConnection:tls-database would end up getting initialized to the
default database later on.

12 years agoUpdated Greek translation
Tom Tryfonidis [Wed, 2 May 2012 09:04:03 +0000 (12:04 +0300)]
Updated Greek translation

12 years ago2.33.2 2.33.2
Dan Winship [Tue, 1 May 2012 13:08:34 +0000 (09:08 -0400)]
2.33.2

12 years agoproxy/gnome: fix to work with no http proxy
Dan Winship [Wed, 25 Apr 2012 01:12:21 +0000 (21:12 -0400)]
proxy/gnome: fix to work with no http proxy

In "manual" mode, the http proxy setting was always being used, even
if it was "". Fix that.

12 years agognutls: remove some unused priv members after previous change
Dan Winship [Tue, 24 Apr 2012 00:53:58 +0000 (20:53 -0400)]
gnutls: remove some unused priv members after previous change

12 years agognutls: Update for pollable stream additions/improvements in glib
Dan Winship [Sat, 31 Mar 2012 16:15:12 +0000 (12:15 -0400)]
gnutls: Update for pollable stream additions/improvements in glib

12 years agoAllow local pac files in pacrunner
Chow Loong Jin [Sat, 14 Apr 2012 20:12:00 +0000 (04:12 +0800)]
Allow local pac files in pacrunner

This fixes bgo#674115

12 years ago2.32.1 2.32.1
Dan Winship [Mon, 16 Apr 2012 19:55:40 +0000 (15:55 -0400)]
2.32.1

12 years agobgo#673944 - Detect /etc/ssl/ca-bundle.pem for openSUSE at configure time
Federico Mena Quintero [Thu, 12 Apr 2012 21:48:17 +0000 (16:48 -0500)]
bgo#673944 - Detect /etc/ssl/ca-bundle.pem for openSUSE at configure time

12 years agoUpdated Odia Translation
ManojKumar Giri [Thu, 5 Apr 2012 12:03:20 +0000 (17:33 +0530)]
Updated Odia Translation

12 years agoUpdated Persian Translations
Arash Mousavi [Sat, 31 Mar 2012 17:58:51 +0000 (22:28 +0430)]
Updated Persian Translations

12 years agoUpdated Marathi Translations
Sandeep Sheshrao Shedmake [Wed, 28 Mar 2012 04:34:01 +0000 (10:04 +0530)]
Updated Marathi Translations

12 years ago[l10n]Updated Catalan (Valencian) translation
Carles Ferrando [Tue, 27 Mar 2012 20:29:26 +0000 (22:29 +0200)]
[l10n]Updated Catalan (Valencian) translation

12 years ago2.32.0 2.32.0
Dan Winship [Mon, 26 Mar 2012 19:09:16 +0000 (15:09 -0400)]
2.32.0

12 years agohindi translation by Chandan Kumar
Rajesh Ranjan [Mon, 26 Mar 2012 11:20:27 +0000 (16:50 +0530)]
hindi translation by Chandan Kumar

12 years agoUpdated Latvian translation.
Rudolfs Mazurs [Sun, 25 Mar 2012 12:12:27 +0000 (15:12 +0300)]
Updated Latvian translation.

12 years agoUpdated Japanese translation.
Takayuki KUSANO [Sat, 24 Mar 2012 16:48:31 +0000 (01:48 +0900)]
Updated Japanese translation.

12 years agoMalayalam translation by Manoj K Mohan
Praveen Arimbrathodiyil [Thu, 22 Mar 2012 17:18:27 +0000 (22:48 +0530)]
Malayalam translation by Manoj K Mohan

12 years agoAdd initial Khmer translation
Seng Sutha [Tue, 20 Mar 2012 10:32:34 +0000 (11:32 +0100)]
Add initial Khmer translation

12 years ago2.31.22 2.31.22
Dan Winship [Mon, 19 Mar 2012 21:50:07 +0000 (17:50 -0400)]
2.31.22

12 years agoUpdated Telugu Translation
Bhuvan Krishna [Mon, 19 Mar 2012 08:23:57 +0000 (13:53 +0530)]
Updated Telugu Translation

12 years agoUpdated Telugu Translation
Sasi Bhushan [Sun, 18 Mar 2012 08:55:09 +0000 (14:25 +0530)]
Updated Telugu Translation

12 years agoUpdated Lithuanian translation
Aurimas Černius [Sat, 17 Mar 2012 16:52:26 +0000 (18:52 +0200)]
Updated Lithuanian translation

12 years agoUpdated Catalan translation
David Planella [Mon, 12 Mar 2012 23:17:27 +0000 (00:17 +0100)]
Updated Catalan translation

12 years agoFinnish translation update from http://l10n.laxstrom.name/wiki/Gnome_3.4 translation...
Timo Jyrinki [Mon, 12 Mar 2012 09:02:15 +0000 (11:02 +0200)]
Finnish translation update from l10n.laxstrom.name/wiki/Gnome_3.4 translation sprint

12 years agoUpdated Portuguese translation
Duarte Loreto [Mon, 12 Mar 2012 00:38:44 +0000 (00:38 +0000)]
Updated Portuguese translation

12 years agoUpdated British English translation
Bruce Cowan [Tue, 6 Mar 2012 15:30:58 +0000 (15:30 +0000)]
Updated British English translation

12 years ago2.31.20 2.31.20
Dan Winship [Mon, 5 Mar 2012 23:06:39 +0000 (18:06 -0500)]
2.31.20

12 years agoAssamese translation completed
Nilamdyuti Goswami [Mon, 5 Mar 2012 14:07:44 +0000 (19:37 +0530)]
Assamese translation completed

12 years ago[l10n] Updated German translation
Mario Blättermann [Sun, 4 Mar 2012 15:06:42 +0000 (16:06 +0100)]
[l10n] Updated German translation

12 years agoUpdated Korean translation
Changwoo Ryu [Sun, 4 Mar 2012 10:01:55 +0000 (19:01 +0900)]
Updated Korean translation

12 years agoUpdated Hungarian translation
Gabor Kelemen [Sun, 4 Mar 2012 02:03:24 +0000 (03:03 +0100)]
Updated Hungarian translation

12 years agoUpdated Polish translation
Piotr Drąg [Sat, 3 Mar 2012 22:48:22 +0000 (23:48 +0100)]
Updated Polish translation

12 years agoUpdated Basque language
Inaki Larranaga Murgoitio [Sat, 3 Mar 2012 13:47:03 +0000 (14:47 +0100)]
Updated Basque language

12 years ago[l10n] Updated Estonian translation
Mattias Põldaru [Thu, 1 Mar 2012 21:41:21 +0000 (23:41 +0200)]
[l10n] Updated Estonian translation

12 years ago[l10n] Updated Estonian translation
Mattias Põldaru [Thu, 1 Mar 2012 19:27:34 +0000 (21:27 +0200)]
[l10n] Updated Estonian translation

12 years agopkcs11: Link libgiopkcs11.la against glib
Kalev Lember [Tue, 28 Feb 2012 10:05:46 +0000 (12:05 +0200)]
pkcs11: Link libgiopkcs11.la against glib

https://bugzilla.gnome.org/show_bug.cgi?id=670956

12 years agoUpdated Russian translation
Yuri Myasoedov [Mon, 27 Feb 2012 07:27:26 +0000 (11:27 +0400)]
Updated Russian translation

12 years agoUpdated Brazilian Portuguese translation
Jonh Wendell [Sun, 26 Feb 2012 17:55:59 +0000 (14:55 -0300)]
Updated Brazilian Portuguese translation

12 years agoUpdated Danish translation
Ask H. Larsen [Mon, 20 Feb 2012 21:30:54 +0000 (22:30 +0100)]
Updated Danish translation

12 years agol10n: Updated Italian translation
Luca Ferretti [Mon, 20 Feb 2012 14:11:45 +0000 (15:11 +0100)]
l10n: Updated Italian translation

12 years agoUpdated Belarusian translation.
Kasia Bondarava [Sat, 18 Feb 2012 20:20:39 +0000 (23:20 +0300)]
Updated Belarusian translation.

12 years agoUpdated Serbian translation
Мирослав Николић [Sun, 12 Feb 2012 19:21:57 +0000 (20:21 +0100)]
Updated Serbian translation

12 years agoUpdated French translation
Claude Paroz [Sat, 11 Feb 2012 10:23:02 +0000 (11:23 +0100)]
Updated French translation

12 years ago2.31.16 2.31.16
Dan Winship [Tue, 7 Feb 2012 14:08:47 +0000 (09:08 -0500)]
2.31.16

12 years ago[l10n] Update Japanese translation
Hideki Yamane [Sun, 5 Feb 2012 02:54:59 +0000 (11:54 +0900)]
[l10n] Update Japanese translation

12 years agotls: fix pkcs11-pin test to handle non-nul-terminated strings
Dan Winship [Mon, 30 Jan 2012 14:06:54 +0000 (09:06 -0500)]
tls: fix pkcs11-pin test to handle non-nul-terminated strings

g_tls_password_get_value() and p11_kit_pin_get_value() return
non-nul-terminated strings, so don't use strcmp() on them.

https://bugzilla.gnome.org/show_bug.cgi?id=668945

12 years agoUpdated Traditional Chinese translation(Hong Kong and Taiwan)
Chao-Hsiung Liao [Sun, 29 Jan 2012 14:59:28 +0000 (22:59 +0800)]
Updated Traditional Chinese translation(Hong Kong and Taiwan)

12 years agognutls: fix an async handshake crash
Dan Winship [Thu, 26 Jan 2012 12:56:51 +0000 (07:56 -0500)]
gnutls: fix an async handshake crash

g_tls_connection_gnutls_handshake_async() would cause a crash if the
handshake either succeeded or failed immediately (rather than getting
an EAGAIN after making partial progress).

https://bugzilla.gnome.org/show_bug.cgi?id=658771

12 years agoUpdated Norwegian bokmål translation
Kjartan Maraas [Tue, 24 Jan 2012 14:18:28 +0000 (15:18 +0100)]
Updated Norwegian bokmål translation

12 years agoUpdated Czech translation
Marek Černocký [Thu, 19 Jan 2012 11:43:05 +0000 (12:43 +0100)]
Updated Czech translation

12 years agoUpdated Bulgarian translation
Alexander Shopov [Sun, 8 Jan 2012 09:01:13 +0000 (11:01 +0200)]
Updated Bulgarian translation

12 years agoUpdated Vietnamese translation
Nguyễn Thái Ngọc Duy [Fri, 6 Jan 2012 09:46:55 +0000 (16:46 +0700)]
Updated Vietnamese translation

12 years agopo/vi: import from Damned Lies
Nguyễn Thái Ngọc Duy [Fri, 6 Jan 2012 09:44:42 +0000 (16:44 +0700)]
po/vi: import from Damned Lies

12 years ago[l10n]Updated Turkish translation
Muhammet Kara [Wed, 4 Jan 2012 08:19:26 +0000 (10:19 +0200)]
[l10n]Updated Turkish translation

12 years ago2.31.6 2.31.6
Dan Winship [Tue, 20 Dec 2011 01:25:33 +0000 (20:25 -0500)]
2.31.6

12 years agognutls: update for g_byte_get_data() change in git master
Dan Winship [Thu, 15 Dec 2011 16:14:16 +0000 (11:14 -0500)]
gnutls: update for g_byte_get_data() change in git master

12 years agoUploaded Ukranian
Daniel Korostil [Sun, 11 Dec 2011 12:59:51 +0000 (14:59 +0200)]
Uploaded Ukranian

12 years agoUpdated Hebrew translation.
Yaron Shahrabani [Sat, 10 Dec 2011 09:54:39 +0000 (11:54 +0200)]
Updated Hebrew translation.

12 years agognutls: revert part of the gcrypt-removing patch
Dan Winship [Sun, 4 Dec 2011 11:59:51 +0000 (12:59 +0100)]
gnutls: revert part of the gcrypt-removing patch

I thought we could get rid of the "keep the module from being
unloaded" hack now, but it appears that we can't.

12 years agognutls: add server-side session cache support
Dan Winship [Sat, 3 Dec 2011 18:32:01 +0000 (19:32 +0100)]
gnutls: add server-side session cache support

https://bugzilla.gnome.org/show_bug.cgi?id=636574

12 years agognutls: reorganize some code to avoid needing forward declarations
Dan Winship [Sat, 3 Dec 2011 15:18:24 +0000 (16:18 +0100)]
gnutls: reorganize some code to avoid needing forward declarations

12 years agoRemove explicit gcrypt references
Dan Winship [Sat, 3 Dec 2011 11:41:23 +0000 (12:41 +0100)]
Remove explicit gcrypt references

gnutls 2.11 allows using nettle instead of gcrypt for crypto, and
gnutls 3.0 only supports nettle. But our gnutls code was making
explicit gcrypt calls to initialize gnutls thread-safety, which meant
we required gcrypt even if gnutls didn't.

Fortunately, gnutls 2.11 fixed this situation by initializing gcrypt
thread-safety by default (when using gcrypt), so we can just remove
all the explicit references to gcrypt from glib-networking (since we
already depend on gnutls 2.11 or later), and it all just works.

https://bugzilla.gnome.org/show_bug.cgi?id=657306

12 years agotls: set GSETTINGS_BACKEND to "memory" in tests
Dan Winship [Thu, 17 Nov 2011 23:57:44 +0000 (18:57 -0500)]
tls: set GSETTINGS_BACKEND to "memory" in tests

To avoid warning messages when testing against a minimal
alternate-prefix install.

12 years agoUpdated Norwegian bokmål translation
Kjartan Maraas [Thu, 1 Dec 2011 17:04:35 +0000 (18:04 +0100)]
Updated Norwegian bokmål translation

12 years agoUpdate Simplified Chinese translation.
Yinghua Wang [Sat, 26 Nov 2011 09:00:29 +0000 (09:00 +0000)]
Update Simplified Chinese translation.

12 years agoUpdated Slovenian translation
Matej Urbančič [Fri, 25 Nov 2011 20:23:27 +0000 (21:23 +0100)]
Updated Slovenian translation

12 years agoUpdated Swedish translation
Daniel Nylander [Fri, 25 Nov 2011 08:54:18 +0000 (09:54 +0100)]
Updated Swedish translation

12 years agoproxy/gnome: use GInetAddressMask
Dan Winship [Tue, 22 Nov 2011 15:11:41 +0000 (10:11 -0500)]
proxy/gnome: use GInetAddressMask

Replace the existing IP address mask matching code with
GInetAddressMask. Also, add a test for IP:port values in ignore_hosts,
which we weren't testing before.

12 years ago2.31.2 2.31.2
Dan Winship [Mon, 21 Nov 2011 23:06:14 +0000 (18:06 -0500)]
2.31.2

12 years agoUpdated Galician translations
Fran Diéguez [Mon, 21 Nov 2011 00:51:47 +0000 (01:51 +0100)]
Updated Galician translations

12 years agoUpdated Spanish translation
Jorge González [Sat, 19 Nov 2011 11:45:23 +0000 (12:45 +0100)]
Updated Spanish translation

12 years agognutls: make GTlsServerConnection error out if given a bad cert
Dan Winship [Sat, 19 Nov 2011 01:25:25 +0000 (20:25 -0500)]
gnutls: make GTlsServerConnection error out if given a bad cert

GTlsServerConnection needs a certificate that has a public key, so
make it fail g_initable_init() if it has a certificate without one.

12 years agognutls: Support unencrypted PKCS#8 keys
Dan Winship [Sat, 19 Nov 2011 00:48:13 +0000 (19:48 -0500)]
gnutls: Support unencrypted PKCS#8 keys

and test that in tls/tests/certificate

https://bugzilla.gnome.org/show_bug.cgi?id=664321

12 years agoUpdated Lithuanian translation
Algimantas Margevičius [Fri, 18 Nov 2011 20:45:54 +0000 (22:45 +0200)]
Updated Lithuanian translation

12 years ago[l10n]Updated Turkish translation
Muhammet Kara [Fri, 18 Nov 2011 14:34:15 +0000 (16:34 +0200)]
[l10n]Updated Turkish translation

12 years agopkcs11: clean up a few merge errors and bits of cruft
Dan Winship [Wed, 16 Nov 2011 14:39:31 +0000 (09:39 -0500)]
pkcs11: clean up a few merge errors and bits of cruft

12 years agoUpdated Galician translations
Fran Diéguez [Sun, 13 Nov 2011 21:20:17 +0000 (22:20 +0100)]
Updated Galician translations

12 years agoUpdated Norwegian bokmål translation
Kjartan Maraas [Sat, 12 Nov 2011 11:04:25 +0000 (12:04 +0100)]
Updated Norwegian bokmål translation

12 years agoconfigure: make the status show correctly when pkcs11 is disabled
Stef Walter [Mon, 7 Nov 2011 17:05:43 +0000 (18:05 +0100)]
configure: make the status show correctly when pkcs11 is disabled

12 years agognutls: Fix unresolved symbol when pkcs11 is disabled
Stef Walter [Mon, 7 Nov 2011 17:03:39 +0000 (18:03 +0100)]
gnutls: Fix unresolved symbol when pkcs11 is disabled

 * Error would occur: libgiognutls.so: undefined symbol: \
g_tls_backend_gnutls_pkcs11_register

12 years agoUpdated Spanish translation
Jorge González [Sun, 6 Nov 2011 12:44:49 +0000 (13:44 +0100)]
Updated Spanish translation

12 years agoUpdated Galician translations
Fran Diéguez [Sun, 6 Nov 2011 01:59:12 +0000 (02:59 +0100)]
Updated Galician translations

12 years ago[l10n] Updated German translation
Wolfgang Stöggl [Sat, 5 Nov 2011 10:11:50 +0000 (11:11 +0100)]
[l10n] Updated German translation