platform/upstream/glib.git
12 years agogitignore
Ryan Lortie [Mon, 19 Dec 2011 18:37:06 +0000 (13:37 -0500)]
gitignore

12 years agoDrop public menu APIs from GApplication
Ryan Lortie [Mon, 19 Dec 2011 15:47:45 +0000 (10:47 -0500)]
Drop public menu APIs from GApplication

This is moving to Gtk, but we don't want to do it all right now.

12 years agoDrop the GApplication menu test
Ryan Lortie [Mon, 19 Dec 2011 15:47:28 +0000 (10:47 -0500)]
Drop the GApplication menu test

12 years agoUpdated Spanish translation
Daniel Mustieles [Mon, 19 Dec 2011 16:13:11 +0000 (17:13 +0100)]
Updated Spanish translation

12 years agogsettings-tool: allow specifying custom schema dirs
Giovanni Campagna [Sat, 17 Dec 2011 19:08:50 +0000 (20:08 +0100)]
gsettings-tool: allow specifying custom schema dirs

It happens that one wants to customize settings for plugins or
shell extensions, that installing schemas in nonstandard locations.
This patch adds the --schemadir option to gsettings, and ensure
that the appropriate schema is found.

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

12 years agogdesktopappinfo: Use "Keywords" instead of "X-GNOME-Keywords"
Florian Müllner [Mon, 19 Dec 2011 13:52:10 +0000 (14:52 +0100)]
gdesktopappinfo: Use "Keywords" instead of "X-GNOME-Keywords"

The field has now been standardized, so drop the prefix.

12 years agoTeach gtk-doc about G_GNUC_WARN_UNUSED_RESULT
Matthias Clasen [Mon, 19 Dec 2011 12:45:43 +0000 (07:45 -0500)]
Teach gtk-doc about G_GNUC_WARN_UNUSED_RESULT

12 years agoGApplication: receiving end of GRemoteActionGroup
Ryan Lortie [Sat, 17 Dec 2011 05:52:57 +0000 (00:52 -0500)]
GApplication: receiving end of GRemoteActionGroup

Use the fact that the action group exporter now speaks to
GRemoteActionGroup to get the platform data into GApplicion without
hacks.

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

12 years agoaction group exporter: kill GApplication hackery
Ryan Lortie [Sat, 17 Dec 2011 05:26:11 +0000 (00:26 -0500)]
action group exporter: kill GApplication hackery

Use the GRemoteActionGroup interface, if available, instead.

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

12 years agointroduce GRemoteActionGroup
Ryan Lortie [Sat, 17 Dec 2011 05:17:08 +0000 (00:17 -0500)]
introduce GRemoteActionGroup

This interfaceifies the extra functions that were on GDBusActionGroup
for dealing with platform data.

The two main benefits of doing this:

  - no longer have to do a silly song and dance in GApplication to avoid
    calling GDBusActionGroup API from non-dbus-aware code

  - the interface can be reused by the action group exporter to avoid
    ugly and unbindable hook callbacks

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

12 years agoGApplication: send platform data for actions again
Ryan Lortie [Sat, 17 Dec 2011 03:24:03 +0000 (22:24 -0500)]
GApplication: send platform data for actions again

Use the _full variants of the GDBusActionGroup API to send platform data
for action invocations once again.

12 years agoGDBusActionGroup: add _full variants of activation
Ryan Lortie [Sat, 17 Dec 2011 03:23:30 +0000 (22:23 -0500)]
GDBusActionGroup: add _full variants of activation

This allows the platform_data to be explicitly specified.

12 years agoRevert "GDBusActionGroup: add static platform registration"
Ryan Lortie [Sat, 17 Dec 2011 02:25:57 +0000 (21:25 -0500)]
Revert "GDBusActionGroup: add static platform registration"

This reverts commit fcc9902e98a6a6568a1150441c8680fd4615d437.

12 years agoGApplication: emit signals on action changes
Ryan Lortie [Fri, 16 Dec 2011 16:39:24 +0000 (11:39 -0500)]
GApplication: emit signals on action changes

Now that we're a GActionMap the story about propagating signals from our
(now-constant) internal action group is vastly simplified.  If someone
calls g_application_set_action_group() then signals will stop working --
but this function is deprecated and they never worked before, so no big
loss there.

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

12 years agowindows XP threads: fix hilariously obvious race
Ryan Lortie [Thu, 15 Dec 2011 18:27:27 +0000 (13:27 -0500)]
windows XP threads: fix hilariously obvious race

I tried to do a double-checked lock without the double check.

Rodrigo Rivas Costa caught the problem and suggested the (obviously
correct) fix.

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

12 years agoGDBusActionGroup: add static platform registration
Ryan Lortie [Wed, 14 Dec 2011 18:31:27 +0000 (13:31 -0500)]
GDBusActionGroup: add static platform registration

We provide a mechanism by which a 'platform' (eg: Gtk) can register some
hook functions to be called to collect platform-data at the point of
sending an outgoing action activation request and also to inform the
platform of this data on incoming requests (before and after dispatching
the actual request).

This can be used for forwarding timestamp and startup-notification
information (as is presently done in GApplication) but the before/after
hook could also be used for acquiring/releasing the Gdk lock or other
similar things.

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

12 years agoAdded API g_queue_free_full().
Ravi Sankar Guntur [Wed, 14 Dec 2011 14:47:54 +0000 (20:17 +0530)]
Added API g_queue_free_full().

g_queue_free_full(), to free a Queue including its dynamically-allocated elements.
On similar lines to List and Slist.

void  g_queue_free_full  (GQueue  *queue,  GDestroyNotify    free_func);

Test case covering g_queue_free_full() is added.
Added export symbol to glib.symbols.

Closes Bug: https://bugzilla.gnome.org/show_bug.cgi?id=657433

Signed-off-by: Ravi Sankar Guntur <ravi.g@samsung.com>
12 years agoGDBusActionGroup: Fix a typo in docs
Colin Walters [Thu, 15 Dec 2011 14:47:15 +0000 (09:47 -0500)]
GDBusActionGroup: Fix a typo in docs

12 years agoconfigure.ac: robustify netlink.h check
Dan Winship [Wed, 14 Dec 2011 15:19:13 +0000 (10:19 -0500)]
configure.ac: robustify netlink.h check

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

12 years agoGBytes: add a size argument to g_bytes_get_data
Stef Walter [Fri, 9 Dec 2011 17:19:24 +0000 (18:19 +0100)]
GBytes: add a size argument to g_bytes_get_data

 * An out size argument so that this is more easily bindable
   by gobject-introspection.

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

12 years agoInitialize service_loop before running the service thread
Chris Coulson [Wed, 14 Dec 2011 14:00:56 +0000 (14:00 +0000)]
Initialize service_loop before running the service thread

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

12 years agomenu markup: tolerate not having a hash table of objects
Matthias Clasen [Thu, 15 Dec 2011 02:05:38 +0000 (21:05 -0500)]
menu markup: tolerate not having a hash table of objects

Various places in the code were assuming that the hash table was always
available. Fix this, and also avoid leaking strings now that the hash
table may be NULL.

Based on a patch by Simon McVittie, bug 666167

12 years agog_array_free, g_ptr_array_free: decrement refcount if not the last ref
Simon McVittie [Wed, 14 Dec 2011 16:56:15 +0000 (16:56 +0000)]
g_array_free, g_ptr_array_free: decrement refcount if not the last ref

foo_free is conceptually "worth" one unref; not decrementing the
refcount here means the GArray or GPtrArray wrapper (but not its
contents) would leak in the following call sequence:

    p = g_ptr_array_new ();
    g_ptr_array_ref (p);
    g_ptr_array_free (p, TRUE);
    g_ptr_array_unref (p);

Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=666113
Reviewed-by: Emmanuele Bassi <ebassi@linux.intel.com>
12 years agoGArray, GPtrArray: factor out the actual freeing
Simon McVittie [Wed, 14 Dec 2011 16:53:24 +0000 (16:53 +0000)]
GArray, GPtrArray: factor out the actual freeing

Depending how the array is freed, we may want to free the underlying
array (the "segment"), the struct wrapper or both.

Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=666113
Reviewed-by: Emmanuele Bassi <ebassi@linux.intel.com>
12 years agog_key_file_get_string_list: don't leak the pieces on error
Simon McVittie [Wed, 14 Dec 2011 16:46:56 +0000 (16:46 +0000)]
g_key_file_get_string_list: don't leak the pieces on error

Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=666113
Reviewed-by: Emmanuele Bassi <ebassi@linux.intel.com>
12 years agotls-interaction test: use a weak pointer instead of a deliberate use-after-free
Simon McVittie [Tue, 13 Dec 2011 18:18:27 +0000 (18:18 +0000)]
tls-interaction test: use a weak pointer instead of a deliberate use-after-free

Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=666115
Reviewed-by: Dan Winship <danw@gnome.org>
12 years agogdbus tests: remove buggy use of GMainLoop
Ryan Lortie [Wed, 14 Dec 2011 01:54:24 +0000 (20:54 -0500)]
gdbus tests: remove buggy use of GMainLoop

g_main_loop_quit() only quits mainloops that are currently running --
not ones that may run in the future.  The way the gdbus-threading tests
are written can possibly result in a call to g_main_loop_quit() before
g_main_loop_run() has started.

The mainloops aren't actually used for anything other than signalling
the completion of the threads, so just use g_thread_join() for that.

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

12 years agotwo test fixes for ARM
Ryan Lortie [Wed, 14 Dec 2011 14:32:11 +0000 (09:32 -0500)]
two test fixes for ARM

First, some ARM systems are not fast enough to meet the 30 second
deadline in gwakeuptest.c, so increase that to 60.

Second, we have some signed/unsigned woes in the gparam transform tests.

12 years agoPlug some leaks in the GIO tests
Simon McVittie [Tue, 13 Dec 2011 18:18:07 +0000 (18:18 +0000)]
Plug some leaks in the GIO tests

Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=666115
Reviewed-by: Matthias Clasen <mclasen@redhat.com>
12 years agohash test: avoid leaking various keys and values
Simon McVittie [Tue, 13 Dec 2011 14:46:02 +0000 (14:46 +0000)]
hash test: avoid leaking various keys and values

Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=666115
Reviewed-by: Matthias Clasen <mclasen@redhat.com>
12 years agoGOptionContext test: free all arguments, not just the remaining ones
Simon McVittie [Mon, 12 Dec 2011 18:56:21 +0000 (18:56 +0000)]
GOptionContext test: free all arguments, not just the remaining ones

On success, g_option_context_parse alters argv by removing options that
it understood, so g_strfreev is insufficient. Instead, take a shallow
copy and free all of the arguments in that, then free the array argv
but not its contents.

Also, improve the checks in error cases, by checking that argv has
not been altered in this way.

Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=666115
Reviewed-by: Matthias Clasen <mclasen@redhat.com>
12 years agovarious GLib tests: plug memory leaks
Simon McVittie [Tue, 13 Dec 2011 19:01:42 +0000 (19:01 +0000)]
various GLib tests: plug memory leaks

These don't really matter, since it's test code, but they do obscure
real leaks in the library.

Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=666115
Acked-by: Matthias Clasen <mclasen@redhat.com>
12 years agotestglib: test_file_functions: don't close fd if it's -1
Simon McVittie [Mon, 12 Dec 2011 15:55:59 +0000 (15:55 +0000)]
testglib: test_file_functions: don't close fd if it's -1

Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=666115
Reviewed-by: Matthias Clasen <mclasen@redhat.com>
12 years agoRevert "g_menu_markup_start_element: tolerate not having a hash table of objects"
Simon McVittie [Wed, 14 Dec 2011 12:39:06 +0000 (12:39 +0000)]
Revert "g_menu_markup_start_element: tolerate not having a hash table of objects"

This reverts commit bcdb60641196f98482b5e17fcc96a92589deba35,
accidentally pushed before it was reviewed.

12 years agog_menu_markup_start_element: tolerate not having a hash table of objects
Simon McVittie [Wed, 14 Dec 2011 12:31:31 +0000 (12:31 +0000)]
g_menu_markup_start_element: tolerate not having a hash table of objects

I don't know whether this is the right fix, but gio/tests/gmenumodel
crashes out, which can't be right.

12 years agog_variant_byteswap: don't leak serialised.data
Simon McVittie [Mon, 12 Dec 2011 18:58:03 +0000 (18:58 +0000)]
g_variant_byteswap: don't leak serialised.data

Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=666113
Reviewed-by: Matthias Clasen <mclasen@redhat.com>
12 years agoGDBusActionGroup: don't leak param_str
Simon McVittie [Tue, 13 Dec 2011 18:16:55 +0000 (18:16 +0000)]
GDBusActionGroup: don't leak param_str

Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=666113
Reviewed-by: Matthias Clasen <mclasen@redhat.com>
12 years agog_data_set_internal: avoid use-after-free if datalist is in dataset
Simon McVittie [Tue, 13 Dec 2011 14:44:18 +0000 (14:44 +0000)]
g_data_set_internal: avoid use-after-free if datalist is in dataset

Removing the last thing in a dataset frees the dataset, and if the
datalist was in a dataset, we can't safely unlock it after the dataset
has been freed. Unlock it sooner.

Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=666113
Reviewed-by: Matthias Clasen <mclasen@redhat.com>
12 years agog_strcompress: check that source is non-NULL rather than just crashing
Simon McVittie [Mon, 12 Dec 2011 18:37:10 +0000 (18:37 +0000)]
g_strcompress: check that source is non-NULL rather than just crashing

Calling this function with a NULL argument is considered to be invalid,
but one of the regression tests does it anyway (to watch it crash), which
seems a good indication that it's expected to be somewhat common.
Let's check it rather than segfaulting.

Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=666113
Reviewed-by: Emmanuele Bassi <ebassi@linux.intel.com>
Reviewed-by: Matthias Clasen <mclasen@redhat.com>
12 years agog_dbus_action_group_changed: don't leak iterator and its contents
Simon McVittie [Tue, 13 Dec 2011 18:17:13 +0000 (18:17 +0000)]
g_dbus_action_group_changed: don't leak iterator and its contents

Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=666113
Reviewed-by: Emmanuele Bassi <ebassi@linux.intel.com>
12 years agoGKeyFile: free group comments when the group is removed
Simon McVittie [Mon, 12 Dec 2011 18:35:14 +0000 (18:35 +0000)]
GKeyFile: free group comments when the group is removed

These were leaked. Valgrind was sad.

Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=666113
Reviewed-by: Emmanuele Bassi <ebassi@linux.intel.com>
12 years agog_hmac_get_string: don't allocate and leak an unused buffer
Simon McVittie [Mon, 12 Dec 2011 18:34:47 +0000 (18:34 +0000)]
g_hmac_get_string: don't allocate and leak an unused buffer

Also document why we're not actually using the buffer for anything.

Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=666113
Reviewed-by: Emmanuele Bassi <ebassi@linux.intel.com>
12 years agog_hmac_copy: initialize the refcount
Simon McVittie [Mon, 12 Dec 2011 15:54:50 +0000 (15:54 +0000)]
g_hmac_copy: initialize the refcount

In practice, the uninitialized refcount will typically mean that the copy is
never freed, and leaks.

Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Bug: https://bugzilla.gnome.org/show_bug.cgi?id=666113
Reviewed-by: Emmanuele Bassi <ebassi@linux.intel.com>
12 years agoAdd an explicit deprecation note to g_thread_init
Matthias Clasen [Wed, 14 Dec 2011 12:16:04 +0000 (07:16 -0500)]
Add an explicit deprecation note to g_thread_init

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

12 years agoAdd another menu parser test
Matthias Clasen [Wed, 14 Dec 2011 05:10:34 +0000 (00:10 -0500)]
Add another menu parser test

This one concerns itself with objects.

12 years agoGMenuModel: Flesh out the docs some more
Matthias Clasen [Wed, 14 Dec 2011 04:16:25 +0000 (23:16 -0500)]
GMenuModel: Flesh out the docs some more

12 years agoGMenu: purge references to GMenuProxy from the docs
Matthias Clasen [Wed, 14 Dec 2011 04:06:16 +0000 (23:06 -0500)]
GMenu: purge references to GMenuProxy from the docs

12 years agodocumentation fixes
Stef Walter [Wed, 14 Dec 2011 04:00:16 +0000 (23:00 -0500)]
documentation fixes

Fixes for gtk-doc warnings.

http://bugzilla.gnome.org/show_bug.cgi?id=66469

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

12 years agoImprove GNetworkMonitor docs
Matthias Clasen [Tue, 13 Dec 2011 17:56:20 +0000 (12:56 -0500)]
Improve GNetworkMonitor docs

Make sure we get signal and property docs, and mention
the extension point in the overview.

12 years agognetworkmonitornetlink.c: Fix compilation on RHEL 6.2
Christophe Fergeau [Mon, 12 Dec 2011 14:06:41 +0000 (15:06 +0100)]
gnetworkmonitornetlink.c: Fix compilation on RHEL 6.2

When trying to compile glib master on a RHEL 6.2 system, it fails with:

make[4]: Entering directory `/home/teuf/gnome/src/glib/gio'
  CC     libgio_2_0_la-gnetworkmonitornetlink.lo
In file included from gnetworkmonitornetlink.c:25:
/usr/include/linux/netlink.h:35: error: expected specifier-qualifier-list before 'sa_family_t'
gnetworkmonitornetlink.c: In function 'g_network_monitor_netlink_initable_init':
gnetworkmonitornetlink.c:99: error: 'struct sockaddr_nl' has no member named 'nl_family'
gnetworkmonitornetlink.c:100: error: 'struct sockaddr_nl' has no member named 'nl_pid'
gnetworkmonitornetlink.c:100: error: 'struct sockaddr_nl' has no member named 'nl_pad'
gnetworkmonitornetlink.c:101: error: 'struct sockaddr_nl' has no member named 'nl_groups'
make[4]: *** [libgio_2_0_la-gnetworkmonitornetlink.lo] Error 1

sa_family_t is defined in sys/socket.h, this commit makes sure this header is included before netlink.h

This fixes bgo bug #666001

12 years agobump version
Ryan Lortie [Tue, 13 Dec 2011 14:16:51 +0000 (09:16 -0500)]
bump version

12 years agoUpdate VS property sheets
Chun-wei Fan [Tue, 13 Dec 2011 04:12:48 +0000 (12:12 +0800)]
Update VS property sheets

"Install" the newly-added public headers in GLib and GIO, such as the ones
for GMenuModel, etc.

12 years agoFix wording
Alexandre Franke [Mon, 12 Dec 2011 19:36:29 +0000 (20:36 +0100)]
Fix wording

délai épuisé has been replaced with délai dépassé

12 years agoglib 2.31.4 2.31.4
Ryan Lortie [Mon, 12 Dec 2011 18:28:24 +0000 (13:28 -0500)]
glib 2.31.4

12 years agoGActionGroupExporter: stop using signal IDs
Ryan Lortie [Mon, 12 Dec 2011 18:28:09 +0000 (13:28 -0500)]
GActionGroupExporter: stop using signal IDs

GDBusConnection recently changed to dispatching its GDestroyNotify calls
from an idle instead of on-the-spot.  Under the previous regime, we
would destroy-notify the action group export of a GtkApplicationWindow
at the point it was removed from the application (ie: slightly before
being disposed).

With the destroy notify now deferred to an idle, the window has already
been disposed, so the signal handlers have already been disconnected.

Avoid the problem by dropping our use of signal IDs and just do
g_signal_handlers_disconnect_by_func(), which doesn't complain if there
is no connection.

12 years agoGMenuMarkup parser: small typo fix in docs
Ryan Lortie [Mon, 12 Dec 2011 18:13:42 +0000 (13:13 -0500)]
GMenuMarkup parser: small typo fix in docs

12 years agoMore clearly define 'named menu' in the XML parser
Ryan Lortie [Mon, 12 Dec 2011 18:08:48 +0000 (13:08 -0500)]
More clearly define 'named menu' in the XML parser

This is when menus have id='' attributes.

12 years agoGMenu parser: use G_MARKUP_COLLECT_BOOLEAN
Ryan Lortie [Mon, 12 Dec 2011 18:07:04 +0000 (13:07 -0500)]
GMenu parser: use G_MARKUP_COLLECT_BOOLEAN

...instead of trying to parse the boolean for ourselves.

12 years agoupdate maintainers in glib.doap
Ryan Lortie [Mon, 12 Dec 2011 15:43:54 +0000 (10:43 -0500)]
update maintainers in glib.doap

(at request of sysadmin team)

12 years agoGApplication: fix a copy-paste error
Matthias Clasen [Mon, 12 Dec 2011 06:44:41 +0000 (01:44 -0500)]
GApplication: fix a copy-paste error

Activating an action must not turn into a change-state request.

12 years agoRearrange GApplication long desc a bit
Matthias Clasen [Mon, 12 Dec 2011 05:01:20 +0000 (00:01 -0500)]
Rearrange GApplication long desc a bit

12 years agoExpand actiongroup docs a bit more
Matthias Clasen [Mon, 12 Dec 2011 05:00:16 +0000 (00:00 -0500)]
Expand actiongroup docs a bit more

12 years agoFix an assertion when activating apps a second time
Matthias Clasen [Sun, 11 Dec 2011 17:05:23 +0000 (12:05 -0500)]
Fix an assertion when activating apps a second time

This was causing the following critical when running bloatpad twice:
GLib-CRITICAL **: g_hash_table_insert_internal: assertion `hash_table != NULL' failed

12 years agoAdd some more since tags
Matthias Clasen [Sun, 11 Dec 2011 03:14:34 +0000 (22:14 -0500)]
Add some more since tags

12 years agoAdd a since tag
Matthias Clasen [Sun, 11 Dec 2011 02:55:11 +0000 (21:55 -0500)]
Add a since tag

12 years agoFix since tag
Matthias Clasen [Sun, 11 Dec 2011 02:49:10 +0000 (21:49 -0500)]
Fix since tag

12 years agoWhitespace fixes
Matthias Clasen [Sun, 11 Dec 2011 02:46:13 +0000 (21:46 -0500)]
Whitespace fixes

And add some missing since tags.

12 years agoAdd g_application_set/get_default to the docs
Matthias Clasen [Sun, 11 Dec 2011 02:42:49 +0000 (21:42 -0500)]
Add g_application_set/get_default to the docs

12 years agoAdd since tags
Matthias Clasen [Sun, 11 Dec 2011 01:47:22 +0000 (20:47 -0500)]
Add since tags

12 years agoClean up GApplication docs
Ryan Lortie [Sat, 10 Dec 2011 22:21:53 +0000 (17:21 -0500)]
Clean up GApplication docs

Clean up the docs for GApplication and related classes.

I'm no longer writing documentation for the structure type of classes
and interfaces.  See https://bugzilla.gnome.org/show_bug.cgi?id=665926
for discussin on the correct way forward on this point.

Also: stop putting gtk-doc comments in installed headers.

12 years agoGDate: gtk-doc fixup
Ryan Lortie [Sat, 10 Dec 2011 19:06:18 +0000 (14:06 -0500)]
GDate: gtk-doc fixup

12 years agoUpdated Korean translation
Seong-ho, Cho [Sat, 10 Dec 2011 14:32:23 +0000 (23:32 +0900)]
Updated Korean translation

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

12 years agogfile: Don't use C++ keyword "template" as variable name
Colin Walters [Fri, 9 Dec 2011 16:13:23 +0000 (11:13 -0500)]
gfile: Don't use C++ keyword "template" as variable name

This breaks autotestkeyword.cc from gtk+.

12 years agogdbus-codegen: fix typo in generated documentation
Aleksander Morgado [Fri, 9 Dec 2011 11:11:53 +0000 (12:11 +0100)]
gdbus-codegen: fix typo in generated documentation

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

12 years agoGFile: add g_file_new_temp
Thomas Hindoe Paaboel Andersen [Thu, 8 Dec 2011 22:17:07 +0000 (23:17 +0100)]
GFile: add g_file_new_temp

A convenience function that creates a temporary file and returns
a GFile and GFileIOStream for it.

The file is created using g_file_open_tmp.

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

12 years agoCosmetic doc change
Matthias Clasen [Fri, 9 Dec 2011 13:01:12 +0000 (08:01 -0500)]
Cosmetic doc change

12 years agoUpdated POTFILES.in
Piotr Drąg [Fri, 9 Dec 2011 11:55:40 +0000 (12:55 +0100)]
Updated POTFILES.in

12 years agoGApplication: Make ::startup run-first
Matthias Clasen [Fri, 9 Dec 2011 04:44:30 +0000 (23:44 -0500)]
GApplication: Make ::startup run-first

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

12 years agoUpdates
Matthias Clasen [Fri, 9 Dec 2011 03:00:24 +0000 (22:00 -0500)]
Updates

12 years agogio.symbols fixes
Ryan Lortie [Thu, 8 Dec 2011 22:52:10 +0000 (17:52 -0500)]
gio.symbols fixes

12 years agoGDBusActionGroup: make API just like GDBusMenuModel
Ryan Lortie [Thu, 8 Dec 2011 22:49:01 +0000 (17:49 -0500)]
GDBusActionGroup: make API just like GDBusMenuModel

Have one simple _get() API that returns the group immediately, in an
empty state.  The group is initialised on the first attempt to interact
with it.

Leave a secret 'back door' for GApplication to do a blocking
initialisation.

12 years agoGDBusActionGroup: drop ability to 'inject'
Ryan Lortie [Thu, 8 Dec 2011 21:06:01 +0000 (16:06 -0500)]
GDBusActionGroup: drop ability to 'inject'

Also drop the GDBusActionGroupFlags that were only meant to facilitate
injection-based usage.

12 years agoMore documentation fixes
Matthias Clasen [Thu, 8 Dec 2011 05:46:03 +0000 (00:46 -0500)]
More documentation fixes

12 years agoFix up docs
Matthias Clasen [Thu, 8 Dec 2011 05:31:23 +0000 (00:31 -0500)]
Fix up docs

12 years agoDon't use deprecated GApplication api in examples
Matthias Clasen [Thu, 8 Dec 2011 03:31:10 +0000 (22:31 -0500)]
Don't use deprecated GApplication api in examples

12 years agoGDBusMenuModel: become thread-aware
Ryan Lortie [Thu, 8 Dec 2011 02:22:51 +0000 (21:22 -0500)]
GDBusMenuModel: become thread-aware

Allow imports of the same menu on multiple different main contexts at
the same time by creating a separate object for each context.

12 years agomenu threaded test: run the mainloop after export
Ryan Lortie [Thu, 8 Dec 2011 02:10:18 +0000 (21:10 -0500)]
menu threaded test: run the mainloop after export

GDBusConnection now dispatches GDestroyNotify calls back to the
mainloop.  Adding an idle to the mainloop is O(n) in the number of idles
already there.  We therefore need to periodically empty the mainloop to
avoid quadratic behaviour with a very large 'n'.

12 years agoRename GMenuProxy to GDBusMenuModel
Ryan Lortie [Thu, 8 Dec 2011 02:05:38 +0000 (21:05 -0500)]
Rename GMenuProxy to GDBusMenuModel

This improves consistency with GDBusActionGroup.

12 years agoaction exporter: clarify threading situation
Ryan Lortie [Thu, 8 Dec 2011 01:39:23 +0000 (20:39 -0500)]
action exporter: clarify threading situation

Exporting can only be done relative to a particular given main context
and all interaction with the action group must be on that same context.

Fix up the implementation so that the user can specify that context with
the normal (thread default) mechanism and document the limitation on the
API.

Adjust the testcase to adhere to the documentation limitations.  It
passes now.

12 years agoaction exporter: use GSource* instead of source id
Ryan Lortie [Thu, 8 Dec 2011 01:23:41 +0000 (20:23 -0500)]
action exporter: use GSource* instead of source id

Keep track of the GSource* of our event dispatch idle instead of using
source ID.

12 years agoaction exporter: cancel pending events on unexport
Ryan Lortie [Wed, 7 Dec 2011 19:43:50 +0000 (14:43 -0500)]
action exporter: cancel pending events on unexport

If there are events pending when we unexport the action group, free them
and cancel the pending idle.

12 years agoGMenuModel exporter: remove workaround
Ryan Lortie [Wed, 7 Dec 2011 15:35:29 +0000 (10:35 -0500)]
GMenuModel exporter: remove workaround

With Bug 665733 fixed, we can remove the workaround (which was causing
thread safety problems).

12 years agoAdd testcase for threaded menu exporter use
Matthias Clasen [Wed, 7 Dec 2011 05:58:01 +0000 (00:58 -0500)]
Add testcase for threaded menu exporter use

This currently fails

12 years agoAdd a test for multithreaded action group exporter use
Matthias Clasen [Wed, 7 Dec 2011 05:43:49 +0000 (00:43 -0500)]
Add a test for multithreaded action group exporter use

12 years agoGApplication dbus: publish the menus again
Ryan Lortie [Mon, 5 Dec 2011 02:33:55 +0000 (21:33 -0500)]
GApplication dbus: publish the menus again

12 years agoFully implement app-menu and menubar properties
Matthias Clasen [Sun, 4 Dec 2011 03:26:59 +0000 (22:26 -0500)]
Fully implement app-menu and menubar properties

12 years agoGApplication: make menu properties readwrite
Ryan Lortie [Sat, 3 Dec 2011 22:17:13 +0000 (17:17 -0500)]
GApplication: make menu properties readwrite

Otherwise the notify signals won't be emitted.

12 years agomenumodel test: don't get stuck in a loop
Ryan Lortie [Fri, 2 Dec 2011 22:47:34 +0000 (17:47 -0500)]
menumodel test: don't get stuck in a loop

Sometimes randa and randb end up having the same state, causing them to
return the same stream of 'random numbers'.  This is a problem for the
testcase that is looping to find unequal menus.

If we find ourselves in this state, throw one of the random generators
away and recreate it so we have a better chance of getting some unequal
menus.

12 years agomenu/action exporter docs fixup
Ryan Lortie [Fri, 2 Dec 2011 21:50:09 +0000 (16:50 -0500)]
menu/action exporter docs fixup