Skip to content
This repository has been archived by the owner on Nov 17, 2020. It is now read-only.

Commit

Permalink
2.15.4
Browse files Browse the repository at this point in the history
svn path=/trunk/; revision=6402
  • Loading branch information
Matthias Clasen committed Jan 29, 2008
1 parent 7b432e9 commit fb5ddf6
Show file tree
Hide file tree
Showing 100 changed files with 10,768 additions and 12,171 deletions.
2 changes: 2 additions & 0 deletions ChangeLog
@@ -1,5 +1,7 @@
2008-01-28 Matthias Clasen <mclasen@redhat.com>

* === Released 2.15.4 ===

* NEWS: Updates

2008-01-28 Matthias Clasen <mclasen@redhat.com>
Expand Down
4 changes: 2 additions & 2 deletions INSTALL
@@ -1,8 +1,8 @@
Simple install procedure
========================

% gzip -cd glib-2.15.3.tar.gz | tar xvf - # unpack the sources
% cd glib-2.15.3 # change to the toplevel directory
% gzip -cd glib-2.15.4.tar.gz | tar xvf - # unpack the sources
% cd glib-2.15.4 # change to the toplevel directory
% ./configure # run the `configure' script
% make # build GLIB

Expand Down
2 changes: 2 additions & 0 deletions NEWS
Expand Up @@ -7,6 +7,8 @@ Overview of Changes from GLib 2.15.3 to GLib 2.15.4
- g_file_copy has an async variant now
- Drives and volumes now have API to get identifiers
like Hal UDIs or UUIDs.
- There is now a registration API to let modules register
extensions they provide, such as volume monitor implementations

* Bugs fixed:
511807 g_time_val_to_iso8601() uses MT-unsafe gmtime() function
Expand Down
2 changes: 1 addition & 1 deletion README
@@ -1,7 +1,7 @@
General Information
===================

This is GLib version 2.15.3. GLib is the low-level core
This is GLib version 2.15.4. GLib is the low-level core
library that forms the basis for projects such as GTK+ and GNOME. It
provides data structure handling for C, portability wrappers, and
interfaces for such runtime functionality as an event loop, threads,
Expand Down
4 changes: 4 additions & 0 deletions docs/reference/ChangeLog
@@ -1,3 +1,7 @@
2008-01-28 Matthias Clasen <mclasen@redhat.com>

* === Released 2.15.4 ===

2008-01-27 Matthias Clasen <mclasen@redhat.com>

* glib/tmpl/trees-nary.sgml: Move docs inline
Expand Down
11 changes: 11 additions & 0 deletions docs/reference/gio/gio-sections.txt
Expand Up @@ -81,6 +81,8 @@ g_file_set_display_name_finish
g_file_delete
g_file_trash
g_file_copy
g_file_copy_async
g_file_copy_finish
g_file_move
g_file_make_directory
g_file_make_symbolic_link
Expand Down Expand Up @@ -820,6 +822,13 @@ g_volume_mount_finish
g_volume_can_eject
g_volume_eject
g_volume_eject_finish
G_VOLUME_IDENTIFIER_KIND_HAL_UDI
G_VOLUME_IDENTIFIER_KIND_LABEL
G_VOLUME_IDENTIFIER_KIND_NFS_MOUNT
G_VOLUME_IDENTIFIER_KIND_UNIX_DEVICE
G_VOLUME_IDENTIFIER_KIND_UUID
g_volume_enumerate_identifiers
g_volume_get_identifier
<SUBSECTION Standard>
G_VOLUME
G_IS_VOLUME
Expand Down Expand Up @@ -847,6 +856,8 @@ g_drive_is_media_check_automatic
g_drive_is_media_removable
g_drive_eject
g_drive_eject_finish
g_drive_enumerate_identifiers
g_drive_get_identifier
<SUBSECTION Standard>
G_DRIVE
G_IS_DRIVE
Expand Down
6 changes: 2 additions & 4 deletions docs/reference/glib/tmpl/main.sgml
Expand Up @@ -784,22 +784,20 @@ It can also return a @timeout_ value which should be the maximum timeout
(in milliseconds) which should be passed to the poll() call.
The actual timeout used will be -1 if all sources returned -1, or it will
be the minimum of all the @timeout_ values returned which were >= 0.

@check: Called after all the file descriptors are polled.
The source should return %TRUE if it is ready to be dispatched.
Note that some time may have passed since the previous prepare function was
called, so the source should be checked again here.

@dispatch: Called to dispatch the event source, after it has returned %TRUE in
either its @prepare or its @check function. The @dispatch function is
passed in a callback function and data. The callback function may be
%NULL if the source was never connected to a callback using
g_source_set_callback(). The @dispatch function should call the
callback function with @user_data and whatever additional parameters are
needed for this type of event source.

@finalize: Called when the source is finalized.

@closure_callback:
@closure_marshal:

<!-- ##### STRUCT GSourceCallbackFuncs ##### -->
<para>
Expand Down
98 changes: 49 additions & 49 deletions docs/reference/glib/tmpl/trees-nary.sgml
Expand Up @@ -93,7 +93,7 @@ fields
</para>

@src:
@data:
@data:
@Returns:


Expand All @@ -116,7 +116,7 @@ fields
@parent:
@position:
@node:
@Returns:
@Returns:


<!-- ##### FUNCTION g_node_insert_before ##### -->
Expand All @@ -125,9 +125,9 @@ fields
</para>

@parent:
@sibling:
@sibling:
@node:
@Returns:
@Returns:


<!-- ##### FUNCTION g_node_insert_after ##### -->
Expand All @@ -137,7 +137,7 @@ fields

@parent:
@sibling:
@node:
@node:
@Returns:


Expand All @@ -148,7 +148,7 @@ fields

@parent:
@node:
@Returns:
@Returns:


<!-- ##### FUNCTION g_node_prepend ##### -->
Expand All @@ -158,7 +158,7 @@ fields

@parent:
@node:
@Returns:
@Returns:


<!-- ##### MACRO g_node_insert_data ##### -->
Expand All @@ -167,48 +167,48 @@ fields
</para>

@parent:
@position:
@position:
@data:
@Returns:
@Returns:


<!-- ##### MACRO g_node_insert_data_before ##### -->
<para>

</para>

@parent:
@sibling:
@parent:
@sibling:
@data:
@Returns:
@Returns:


<!-- ##### MACRO g_node_append_data ##### -->
<para>

</para>

@parent:
@data:
@Returns:
@parent:
@data:
@Returns:


<!-- ##### MACRO g_node_prepend_data ##### -->
<para>

</para>

@parent:
@data:
@Returns:
@parent:
@data:
@Returns:


<!-- ##### FUNCTION g_node_reverse_children ##### -->
<para>

</para>

@node:
@node:


<!-- ##### FUNCTION g_node_traverse ##### -->
Expand Down Expand Up @@ -258,9 +258,9 @@ If the function returns %TRUE, then the traversal is stopped.
</para>

@node:
@flags:
@func:
@data:
@flags:
@func:
@data:


<!-- ##### USER_FUNCTION GNodeForeachFunc ##### -->
Expand All @@ -279,8 +279,8 @@ passed to g_node_children_foreach().

</para>

@node:
@Returns:
@node:
@Returns:


<!-- ##### FUNCTION g_node_find ##### -->
Expand All @@ -289,20 +289,20 @@ passed to g_node_children_foreach().
</para>

@root:
@order:
@order:
@flags:
@data:
@Returns:
@Returns:


<!-- ##### FUNCTION g_node_find_child ##### -->
<para>

</para>

@node:
@node:
@flags:
@data:
@data:
@Returns:


Expand All @@ -311,9 +311,9 @@ passed to g_node_children_foreach().

</para>

@node:
@data:
@Returns:
@node:
@data:
@Returns:


<!-- ##### FUNCTION g_node_child_position ##### -->
Expand All @@ -323,24 +323,24 @@ passed to g_node_children_foreach().

@node:
@child:
@Returns:
@Returns:


<!-- ##### MACRO g_node_first_child ##### -->
<para>

</para>

@node:
@Returns:
@node:
@Returns:


<!-- ##### FUNCTION g_node_last_child ##### -->
<para>

</para>

@node:
@node:
@Returns:


Expand All @@ -349,9 +349,9 @@ passed to g_node_children_foreach().

</para>

@node:
@n:
@Returns:
@node:
@n:
@Returns:


<!-- ##### FUNCTION g_node_first_sibling ##### -->
Expand All @@ -369,7 +369,7 @@ passed to g_node_children_foreach().
</para>

@node:
@Returns:
@Returns:


<!-- ##### MACRO g_node_prev_sibling ##### -->
Expand All @@ -378,16 +378,16 @@ passed to g_node_children_foreach().
</para>

@node:
@Returns:
@Returns:


<!-- ##### FUNCTION g_node_last_sibling ##### -->
<para>

</para>

@node:
@Returns:
@node:
@Returns:


<!-- ##### MACRO G_NODE_IS_LEAF ##### -->
Expand All @@ -396,16 +396,16 @@ passed to g_node_children_foreach().
</para>

@node:
@Returns:
@Returns:


<!-- ##### MACRO G_NODE_IS_ROOT ##### -->
<para>

</para>

@node:
@Returns:
@node:
@Returns:


<!-- ##### FUNCTION g_node_depth ##### -->
Expand All @@ -422,9 +422,9 @@ passed to g_node_children_foreach().

</para>

@root:
@flags:
@Returns:
@root:
@flags:
@Returns:


<!-- ##### FUNCTION g_node_n_children ##### -->
Expand All @@ -442,7 +442,7 @@ passed to g_node_children_foreach().
</para>

@node:
@descendant:
@descendant:
@Returns:


Expand Down

0 comments on commit fb5ddf6

Please sign in to comment.