platform/upstream/glib.git
14 years agoBug 608196 - Overflow-safe g_new family
Behdad Esfahbod [Wed, 3 Feb 2010 04:48:42 +0000 (23:48 -0500)]
Bug 608196 - Overflow-safe g_new family

New public API:

g_malloc_n
g_malloc0_n
g_realloc_n
g_try_malloc_n
g_try_malloc0_n
g_try_realloc_n

14 years agoFix API docs for GZlibCompressor and GZlibDecompressor
Felix Riemann [Wed, 24 Feb 2010 11:54:17 +0000 (12:54 +0100)]
Fix API docs for GZlibCompressor and GZlibDecompressor

Corrects the general descriptions and makes the signals and implemented
interfaces appear.

14 years agoGVariantBuilder: loosen assertion check
Ryan Lortie [Wed, 3 Mar 2010 16:36:52 +0000 (11:36 -0500)]
GVariantBuilder: loosen assertion check

Don't check that a GVariantBuilder is fully-valid for use when
performing refcounting operations, as these operations may be occuring
after the builder has already been cleared.

14 years agoGResolver: fix Windows 2000 workaround
Dan Winship [Wed, 3 Mar 2010 13:35:32 +0000 (08:35 -0500)]
GResolver: fix Windows 2000 workaround

Move the <wspiapi.h> include from gwin32resolver.c to
gnetworkingprivate.h, since gthreadedresolver.c needs it too.

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

14 years agoUpdated Norwegian bokmål translation
Kjartan Maraas [Wed, 3 Mar 2010 12:49:10 +0000 (13:49 +0100)]
Updated Norwegian bokmål translation

14 years agoGVariantBuilder: allow for stack allocation
Ryan Lortie [Wed, 3 Mar 2010 08:37:37 +0000 (03:37 -0500)]
GVariantBuilder: allow for stack allocation

14 years agoUpdated Hungarian translation
Gabor Kelemen [Tue, 2 Mar 2010 16:18:52 +0000 (17:18 +0100)]
Updated Hungarian translation

14 years agoUpdated Basque language
Inaki Larranaga Murgoitio [Tue, 2 Mar 2010 11:39:33 +0000 (12:39 +0100)]
Updated Basque language

14 years agoRemove utf8inputstream leftovers in a few other places
Paolo Borelli [Mon, 1 Mar 2010 09:24:43 +0000 (10:24 +0100)]
Remove utf8inputstream leftovers in a few other places

14 years agoRemove GUtf8InputStream for now
Alexander Larsson [Mon, 1 Mar 2010 08:56:02 +0000 (09:56 +0100)]
Remove GUtf8InputStream for now

It turns out that the way this worked did not work out for the current
main usecase (gedit) due to issues with how this is best integrated
with GtkTextView. So, in order to not have to support an unused non-ideal
API forever we remove this before its been in a stable release.

The basic feature seems to have some utility though, so we hope for it
to eventually return in a better form.

14 years agoUpdated Catalan translation
Gil Forcada [Sun, 28 Feb 2010 17:55:54 +0000 (18:55 +0100)]
Updated Catalan translation

14 years agoUpdated Traditional Chinese translation(Hong Kong and Taiwan)
Chao-Hsiung Liao [Sat, 27 Feb 2010 12:40:04 +0000 (20:40 +0800)]
Updated Traditional Chinese translation(Hong Kong and Taiwan)

14 years agoGVariantTypeInfo: fix thread safety bug
Ryan Lortie [Thu, 25 Feb 2010 23:09:23 +0000 (18:09 -0500)]
GVariantTypeInfo: fix thread safety bug

Issue caught by Michael Meeks.  This patch based on his.

GVariantTypeInfo was dropping the reference count on the TypeInfo
structure before removing it from the hash table.  This means that
another thread could come along and grab the value from the hash table
in the meantime.

Solve this by holding the lock on the table before dropping the
reference.

Also: move the hash table initialisation inside of the lock to remove
the standard double-initialisation race plus a more insidious issue
caused by the fact that we free the hash table once it becomes empty.

14 years agoUpdated Portuguese translation
Duarte Loreto [Thu, 25 Feb 2010 02:03:17 +0000 (02:03 +0000)]
Updated Portuguese translation

14 years agoUpdated British English translation
Bruce Cowan [Wed, 24 Feb 2010 15:28:15 +0000 (15:28 +0000)]
Updated British English translation

14 years agoUpdate Russian translation by Yuri Kozlov <yuray@komyakino.ru>
Leonid Kanter [Wed, 24 Feb 2010 08:49:16 +0000 (10:49 +0200)]
Update Russian translation by Yuri Kozlov <yuray@komyakino.ru>

14 years agoinclude gio.h, not giotypes.h
Saleem Abdulrasool [Tue, 23 Feb 2010 23:28:51 +0000 (15:28 -0800)]
include gio.h, not giotypes.h

Including giotypes.h in gfiledescriptor.h causes a compilation failure for users
of the header as giotypes.h may not be included directly.

14 years agoUpdated Lithuanian translation.
Gintautas Miliauskas [Tue, 23 Feb 2010 21:45:09 +0000 (23:45 +0200)]
Updated Lithuanian translation.

14 years agoUpdated Danish translation
Ask H. Larsen [Tue, 23 Feb 2010 21:25:51 +0000 (22:25 +0100)]
Updated Danish translation

14 years agoUpdated German translation
Mario Blättermann [Tue, 23 Feb 2010 21:23:36 +0000 (22:23 +0100)]
Updated German translation

14 years ago.gitignore gcov output (*.gcov, *.gcno, *.gcda)
Ryan Lortie [Tue, 23 Feb 2010 17:49:08 +0000 (12:49 -0500)]
.gitignore gcov output (*.gcov, *.gcno, *.gcda)

14 years agogobject: Don't use G_PARAM_SPEC_VALUE_TYPE when we know the pspec is valid
Edward Hervey [Mon, 7 Dec 2009 10:23:55 +0000 (11:23 +0100)]
gobject: Don't use G_PARAM_SPEC_VALUE_TYPE when we know the pspec is valid

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

14 years agoTest for unexisting files in $TMP and not in $HOME
Emilio Pozuelo Monfort [Tue, 23 Feb 2010 17:19:16 +0000 (18:19 +0100)]
Test for unexisting files in $TMP and not in $HOME

Some buildd environments have an unwritable $HOME, which makes the
test that looks for an unexisting file there fail. Use $TMP instead,
which should be more reliable.

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

14 years agoUpdated Bulgarian translation
Alexander Shopov [Tue, 23 Feb 2010 07:30:39 +0000 (09:30 +0200)]
Updated Bulgarian translation

14 years agoFix backward logic in g_return_if_fail().
Ryan Lortie [Tue, 23 Feb 2010 07:00:11 +0000 (02:00 -0500)]
Fix backward logic in g_return_if_fail().

14 years agoGVariant: Improve test coverage.
Ryan Lortie [Tue, 23 Feb 2010 06:59:57 +0000 (01:59 -0500)]
GVariant: Improve test coverage.

14 years agoDon't fail a couple of tests when running as root
Emilio Pozuelo Monfort [Fri, 19 Feb 2010 18:00:02 +0000 (19:00 +0100)]
Don't fail a couple of tests when running as root

root can access and write to a directory when it doesn't have
exec and write permissions respectively. So expect the tests that
check that to succeed rather than to fail when running as root.

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

14 years agoKeep metadata when files are renamed and trashed
Alexander Larsson [Mon, 22 Feb 2010 11:37:16 +0000 (12:37 +0100)]
Keep metadata when files are renamed and trashed

This fixes https://bugzilla.gnome.org/show_bug.cgi?id=609813

14 years agoGVariantIter, GVariantBuilder
Ryan Lortie [Mon, 22 Feb 2010 05:39:01 +0000 (00:39 -0500)]
GVariantIter, GVariantBuilder

14 years agoRemove redudant check for direct #include gslice.h
Ryan Lortie [Mon, 22 Feb 2010 00:39:33 +0000 (19:39 -0500)]
Remove redudant check for direct #include gslice.h

This was added before we had a standardised header check and not removed
when the standard check was added.

14 years agoBump version
Matthias Clasen [Mon, 22 Feb 2010 02:38:33 +0000 (21:38 -0500)]
Bump version

14 years ago2.23.4 2.23.4
Matthias Clasen [Mon, 22 Feb 2010 02:37:33 +0000 (21:37 -0500)]
2.23.4

14 years agoMore distcheck fixes
Matthias Clasen [Mon, 22 Feb 2010 01:28:34 +0000 (20:28 -0500)]
More distcheck fixes

14 years agoFix some distcheck issues
Matthias Clasen [Mon, 22 Feb 2010 01:11:33 +0000 (20:11 -0500)]
Fix some distcheck issues

14 years agoFix up GFileDescriptorBased docs
Matthias Clasen [Mon, 22 Feb 2010 00:55:02 +0000 (19:55 -0500)]
Fix up GFileDescriptorBased docs

14 years agoAdd indices for 2.24 additions
Matthias Clasen [Mon, 22 Feb 2010 00:48:22 +0000 (19:48 -0500)]
Add indices for 2.24 additions

14 years agoSmall doc fixes
Matthias Clasen [Mon, 22 Feb 2010 00:46:57 +0000 (19:46 -0500)]
Small doc fixes

14 years agoFix up make check
Matthias Clasen [Mon, 22 Feb 2010 00:42:37 +0000 (19:42 -0500)]
Fix up make check

14 years agoMore updates
Matthias Clasen [Mon, 22 Feb 2010 00:17:50 +0000 (19:17 -0500)]
More updates

14 years agoFix a doc typo.
Matthias Clasen [Sun, 21 Feb 2010 22:59:15 +0000 (17:59 -0500)]
Fix a doc typo.

Reported in bug 608063 by Дилян Палаузов.

14 years agoFix the large array test to work
Matthias Clasen [Sun, 21 Feb 2010 21:29:15 +0000 (16:29 -0500)]
Fix the large array test to work

Fix by Sven Herzberg, bug 568760

14 years agoAdd missign single include guards
Matthias Clasen [Sun, 21 Feb 2010 21:12:35 +0000 (16:12 -0500)]
Add missign single include guards

Reported in bug 609530. patch by Christian Dywan.

14 years agoDocumentation improvement
Matthias Clasen [Sun, 21 Feb 2010 21:04:21 +0000 (16:04 -0500)]
Documentation improvement

Document the size requirements on output buffer in g_base64_encode_close.
Patch by Christian Persch, bug 609564.

14 years agoFix build on Solaris 8
Matthias Clasen [Sun, 21 Feb 2010 20:55:10 +0000 (15:55 -0500)]
Fix build on Solaris 8

System header fun. See bug 610131.

14 years agoAdd a pointer to G_DEFINE_INTERFACE
Matthias Clasen [Sun, 21 Feb 2010 20:32:08 +0000 (15:32 -0500)]
Add a pointer to G_DEFINE_INTERFACE

14 years agoFix an oversight
Matthias Clasen [Sun, 21 Feb 2010 20:28:04 +0000 (15:28 -0500)]
Fix an oversight

_Always_ explicitly compare strcmp to 0... this was pointed out in
bug 610484 by Christian Persch.

14 years agoUpdates
Matthias Clasen [Sun, 21 Feb 2010 20:19:06 +0000 (15:19 -0500)]
Updates

14 years agoUpdated Galician Translation
Fran Diéguez [Sat, 20 Feb 2010 21:22:04 +0000 (22:22 +0100)]
Updated Galician Translation

14 years agoUpdated Polish translation
Piotr Drąg [Sat, 20 Feb 2010 21:20:04 +0000 (22:20 +0100)]
Updated Polish translation

14 years ago[gutf8.c] Add a bit of documentation to UNICODE_VALID
Colin Walters [Fri, 19 Feb 2010 21:06:22 +0000 (16:06 -0500)]
[gutf8.c] Add a bit of documentation to UNICODE_VALID

14 years agoMerge the main public API of GVariant
Ryan Lortie [Fri, 19 Feb 2010 15:42:53 +0000 (10:42 -0500)]
Merge the main public API of GVariant

14 years agoUpdate Czech translation
Petr Kovar [Thu, 18 Feb 2010 19:07:56 +0000 (20:07 +0100)]
Update Czech translation

14 years agoMove event support in the inotify backend
Christian Kellner [Thu, 18 Feb 2010 14:49:58 +0000 (15:49 +0100)]
Move event support in the inotify backend

This adds support for G_FILE_MONITOR_SEND_MOVED events when requested by
the user to the inotify backend. Last part to fix bug #547890.
Based heavily on a patch by Martyn Russel <martyn@lanedo.com>.

14 years agoGLocalFileMonitor: Support for GFileMonitorFlags
Christian Kellner [Thu, 18 Feb 2010 14:43:45 +0000 (15:43 +0100)]
GLocalFileMonitor: Support for GFileMonitorFlags

Evaluate and remember GFileMonitorFlags. This is a part of move
event support for fs-monitoring (bug #547890).

14 years agoMove event support for fs-monitoring: Event & flag
Christian Kellner [Thu, 18 Feb 2010 14:40:13 +0000 (15:40 +0100)]
Move event support for fs-monitoring: Event & flag

Add a G_FILE_MONITOR_SEND_MOVED flag indicating the API user
wants to receive the new G_FILE_MOINOTR_EVENT_MOVED event
instead of single CREATED/DELETED events.
First part of bug #547890.

14 years agoEstonian translation updated
Ivar Smolin [Thu, 18 Feb 2010 09:46:06 +0000 (11:46 +0200)]
Estonian translation updated

14 years agoUpdated German translation
Mario Blättermann [Wed, 17 Feb 2010 08:00:04 +0000 (09:00 +0100)]
Updated German translation

14 years agoMake g_type_interface_prerequisites() only return one instantiable type
Benjamin Otte [Wed, 17 Feb 2010 07:45:28 +0000 (08:45 +0100)]
Make g_type_interface_prerequisites() only return one instantiable type

Previously, the code had a heisenbug and could potentially return
superclasses, too. In fact, it was based on the behavior of malloc.

https://bugzilla.redhat.com/show_bug.cgi?id=554678

14 years agoUpdated Slovenian translation
Matej Urbančič [Tue, 16 Feb 2010 11:38:11 +0000 (12:38 +0100)]
Updated Slovenian translation

14 years agoGVariant: create child instance from its own data
Ryan Lortie [Tue, 16 Feb 2010 00:11:58 +0000 (19:11 -0500)]
GVariant: create child instance from its own data

also: white-space fix in the serialiser

14 years agoUpdated Korean translation
Changwoo Ryu [Mon, 15 Feb 2010 18:42:19 +0000 (03:42 +0900)]
Updated Korean translation

14 years agoUpdated Spanish translation
Jorge González [Mon, 15 Feb 2010 16:54:26 +0000 (17:54 +0100)]
Updated Spanish translation

14 years agoUpdated Galician Translation
Fran Diéguez [Mon, 15 Feb 2010 16:10:21 +0000 (17:10 +0100)]
Updated Galician Translation

14 years agoGFile: Support for splice(2) in copy_fallback
Christian Kellner [Sun, 7 Feb 2010 16:23:38 +0000 (17:23 +0100)]
GFile: Support for splice(2) in copy_fallback

The (linux specific) system call splice can be
used to transfer data between file descriptors
whitout copying them into user space.
See bug #604086 for additional details.

14 years agoGLocalFileOutputStream: Implement GFileDescriptorBased
Christian Kellner [Sun, 7 Feb 2010 16:18:06 +0000 (17:18 +0100)]
GLocalFileOutputStream: Implement GFileDescriptorBased

Also convert GLocalFileIOStream to use the new interface to obtain
the file descriptor.

14 years agoGLocalFileInputStream: Implement GFileDescriptorBased
Christian Kellner [Sun, 7 Feb 2010 16:17:44 +0000 (17:17 +0100)]
GLocalFileInputStream: Implement GFileDescriptorBased

14 years agoGFileDescriptorBased: New interface
Christian Kellner [Sun, 7 Feb 2010 13:51:01 +0000 (14:51 +0100)]
GFileDescriptorBased: New interface

New interface for file descriptor based io object. The interface
is only exported on unix based systems. See bug 604086.

14 years agoUpdated Traditional Chinese translation(Hong Kong and Taiwan)
Chao-Hsiung Liao [Mon, 15 Feb 2010 11:15:38 +0000 (19:15 +0800)]
Updated Traditional Chinese translation(Hong Kong and Taiwan)

14 years agoSet result_uncertain in win32 g_content_type_guess implementation
Alexander Larsson [Mon, 15 Feb 2010 09:13:10 +0000 (10:13 +0100)]
Set result_uncertain in win32 g_content_type_guess implementation

Fixes bug #609143

14 years agoUpdated Romanian translation
Lucian Grijincu [Sat, 13 Feb 2010 17:35:42 +0000 (19:35 +0200)]
Updated Romanian translation

14 years agoGVariant: lock before freeing, to avoid assert
Ryan Lortie [Thu, 11 Feb 2010 21:52:20 +0000 (16:52 -0500)]
GVariant: lock before freeing, to avoid assert

14 years agoMove offsets array from interface data member to TypeNode
Benjamin Otte [Thu, 11 Feb 2010 20:08:57 +0000 (21:08 +0100)]
Move offsets array from interface data member to TypeNode

We need to assign offsets when the interface is not yet instantiated.

14 years agoMove prerequisites out of _prot struct
Benjamin Otte [Thu, 11 Feb 2010 20:05:41 +0000 (21:05 +0100)]
Move prerequisites out of _prot struct

Also fix the naming (including typo)

14 years agoadd performance tests to gitignore
Ryan Lortie [Wed, 10 Feb 2010 18:59:14 +0000 (13:59 -0500)]
add performance tests to gitignore

14 years agomake tests not dynamic link against /lib/libglib
Ryan Lortie [Wed, 10 Feb 2010 16:29:12 +0000 (11:29 -0500)]
make tests not dynamic link against /lib/libglib

For some reason, even though the tests are linked against libgobject.la
and libgobject.la mentions libglib.la as a dependency, the tests are
running against the system glib instead of the in-tree one.

Adding the libglib.la file as an explicit LDFLAG fixes it.

14 years agomerge GVariant
Ryan Lortie [Wed, 10 Feb 2010 16:13:06 +0000 (11:13 -0500)]
merge GVariant

14 years agoUpdated Slovenian translation
Matej Urbančič [Wed, 10 Feb 2010 15:34:53 +0000 (16:34 +0100)]
Updated Slovenian translation

14 years agobump version
Matthias Clasen [Tue, 9 Feb 2010 15:35:01 +0000 (10:35 -0500)]
bump version

14 years ago2.23.3 2.23.3
Matthias Clasen [Tue, 9 Feb 2010 15:20:37 +0000 (10:20 -0500)]
2.23.3

14 years agoDoc cleanups
Matthias Clasen [Tue, 9 Feb 2010 14:16:23 +0000 (09:16 -0500)]
Doc cleanups

14 years agoUpdates
Matthias Clasen [Tue, 9 Feb 2010 13:46:50 +0000 (08:46 -0500)]
Updates

14 years agogstrfuncs.h: needs gmacros.h for G_BEGIN_DECLS
Ryan Lortie [Mon, 8 Feb 2010 05:43:17 +0000 (00:43 -0500)]
gstrfuncs.h: needs gmacros.h for G_BEGIN_DECLS

14 years agoUpdated Thai translation.
Theppitak Karoonboonyanan [Mon, 8 Feb 2010 02:57:37 +0000 (09:57 +0700)]
Updated Thai translation.

14 years agoadd missing #include "config.h"
Ryan Lortie [Sun, 7 Feb 2010 20:41:21 +0000 (15:41 -0500)]
add missing #include "config.h"

14 years agoremove #include <glib.h> from some .c files
Ryan Lortie [Sun, 7 Feb 2010 08:14:28 +0000 (03:14 -0500)]
remove #include <glib.h> from some .c files

include individual headers instead

14 years agogurifuncs.c: #include "string.h" -> <string.h>
Ryan Lortie [Sun, 7 Feb 2010 08:08:08 +0000 (03:08 -0500)]
gurifuncs.c: #include "string.h" -> <string.h>

14 years agoGVariantTypeInfo: free hash table when not in use
Ryan Lortie [Sun, 7 Feb 2010 07:52:07 +0000 (02:52 -0500)]
GVariantTypeInfo: free hash table when not in use

14 years agomerge the GVariant serialiser
Ryan Lortie [Fri, 5 Feb 2010 02:18:53 +0000 (21:18 -0500)]
merge the GVariant serialiser

14 years agoGMappedFile: minimal changes to support GBuffer
Ryan Lortie [Fri, 5 Feb 2010 17:37:43 +0000 (12:37 -0500)]
GMappedFile: minimal changes to support GBuffer

Just reorganise the GMappedFile struct to be binary compatible with
GBuffer.  If GBuffer becomes public later then we can revisit this.

14 years agoadd private GBuffer type
Ryan Lortie [Sat, 6 Feb 2010 15:18:07 +0000 (10:18 -0500)]
add private GBuffer type

14 years agoDon't leak filename in g_io_modules_scan_all_in_directory
Tim-Philipp Müller [Fri, 5 Feb 2010 01:14:20 +0000 (01:14 +0000)]
Don't leak filename in g_io_modules_scan_all_in_directory

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

14 years agoFix inconsistent line-endings
Hans Breuer [Sat, 6 Feb 2010 12:22:39 +0000 (13:22 +0100)]
Fix inconsistent line-endings

Apparently CRLF (windows format) was checked in from Linux
causing modified by checkout under windows. See:
http://help.github.com/dealing-with-lineendings/
http://mail.gnome.org/archives/gtk-devel-list/2009-July/msg00041.html

14 years agoDrop empty elements from the VS9 vcproj files
Tor Lillqvist [Sat, 6 Feb 2010 08:40:03 +0000 (10:40 +0200)]
Drop empty elements from the VS9 vcproj files

Dunno if this makes sense, if one lets VS edit the it will put them
back anyway. But it's more pleasing to the eye.

14 years agoUpdated Brazilian Portuguese translation
Jonh Wendell [Fri, 5 Feb 2010 14:09:26 +0000 (11:09 -0300)]
Updated Brazilian Portuguese translation

14 years agorename test: gvarianttype -> gvariant
Ryan Lortie [Fri, 5 Feb 2010 01:27:11 +0000 (20:27 -0500)]
rename test: gvarianttype -> gvariant

More test cases will be added to this file.

14 years agoUpdate Czech translation
Petr Kovar [Thu, 4 Feb 2010 22:54:15 +0000 (23:54 +0100)]
Update Czech translation

14 years agoFurther work on VS9 project files
Tor Lillqvist [Thu, 4 Feb 2010 17:57:38 +0000 (19:57 +0200)]
Further work on VS9 project files

14 years agoClarify use of struct stat on Windows
Tor Lillqvist [Thu, 4 Feb 2010 17:54:50 +0000 (19:54 +0200)]
Clarify use of struct stat on Windows

14 years agoInternally use the _stati64 API explicitly on Windows
Tor Lillqvist [Thu, 4 Feb 2010 17:20:08 +0000 (19:20 +0200)]
Internally use the _stati64 API explicitly on Windows

Avoids warnings and confusion when compiling with MSVC.

14 years agoEnable libtool compatible DLL naming in the VS9 projects
Tor Lillqvist [Thu, 4 Feb 2010 13:24:56 +0000 (15:24 +0200)]
Enable libtool compatible DLL naming in the VS9 projects