glib r6402 - in trunk: . docs/reference docs/reference/gio docs/reference/glib/tmpl gio gmodule gobject gthread po



Author: matthiasc
Date: Tue Jan 29 00:00:31 2008
New Revision: 6402
URL: http://svn.gnome.org/viewvc/glib?rev=6402&view=rev

Log:
2.15.4


Modified:
   trunk/ChangeLog
   trunk/INSTALL
   trunk/NEWS
   trunk/README
   trunk/docs/reference/ChangeLog
   trunk/docs/reference/gio/gio-sections.txt
   trunk/docs/reference/glib/tmpl/main.sgml
   trunk/docs/reference/glib/tmpl/trees-nary.sgml
   trunk/gio/ChangeLog
   trunk/gio/giomodule-priv.h
   trunk/gio/glocalvfs.c
   trunk/gmodule/ChangeLog
   trunk/gobject/ChangeLog
   trunk/gthread/ChangeLog
   trunk/po/ChangeLog
   trunk/po/am.po
   trunk/po/ar.po
   trunk/po/as.po
   trunk/po/az.po
   trunk/po/be.po
   trunk/po/be latin po
   trunk/po/bg.po
   trunk/po/bn.po
   trunk/po/bn_IN.po
   trunk/po/bs.po
   trunk/po/ca.po
   trunk/po/cs.po
   trunk/po/cy.po
   trunk/po/da.po
   trunk/po/de.po
   trunk/po/dz.po
   trunk/po/el.po
   trunk/po/en_CA.po
   trunk/po/en_GB.po
   trunk/po/eo.po
   trunk/po/es.po
   trunk/po/et.po
   trunk/po/eu.po
   trunk/po/fa.po
   trunk/po/fi.po
   trunk/po/fr.po
   trunk/po/ga.po
   trunk/po/gl.po
   trunk/po/gu.po
   trunk/po/he.po
   trunk/po/hi.po
   trunk/po/hr.po
   trunk/po/hu.po
   trunk/po/hy.po
   trunk/po/id.po
   trunk/po/is.po
   trunk/po/it.po
   trunk/po/ja.po
   trunk/po/ka.po
   trunk/po/kn.po
   trunk/po/ko.po
   trunk/po/ku.po
   trunk/po/lt.po
   trunk/po/lv.po
   trunk/po/mg.po
   trunk/po/mk.po
   trunk/po/ml.po
   trunk/po/mn.po
   trunk/po/mr.po
   trunk/po/ms.po
   trunk/po/nb.po
   trunk/po/ne.po
   trunk/po/nl.po
   trunk/po/nn.po
   trunk/po/oc.po
   trunk/po/or.po
   trunk/po/pa.po
   trunk/po/pl.po
   trunk/po/pt.po
   trunk/po/pt_BR.po
   trunk/po/ro.po
   trunk/po/ru.po
   trunk/po/rw.po
   trunk/po/si.po
   trunk/po/sk.po
   trunk/po/sl.po
   trunk/po/sq.po
   trunk/po/sr.po
   trunk/po/sr Latn po
   trunk/po/sr ije po
   trunk/po/sv.po
   trunk/po/ta.po
   trunk/po/te.po
   trunk/po/th.po
   trunk/po/tl.po
   trunk/po/tr.po
   trunk/po/tt.po
   trunk/po/uk.po
   trunk/po/vi.po
   trunk/po/wa.po
   trunk/po/xh.po
   trunk/po/yi.po
   trunk/po/zh_CN.po
   trunk/po/zh_HK.po
   trunk/po/zh_TW.po

Modified: trunk/INSTALL
==============================================================================
--- trunk/INSTALL	(original)
+++ trunk/INSTALL	Tue Jan 29 00:00:31 2008
@@ -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
 

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	(original)
+++ trunk/NEWS	Tue Jan 29 00:00:31 2008
@@ -7,6 +7,8 @@
  - 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

Modified: trunk/README
==============================================================================
--- trunk/README	(original)
+++ trunk/README	Tue Jan 29 00:00:31 2008
@@ -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,

Modified: trunk/docs/reference/gio/gio-sections.txt
==============================================================================
--- trunk/docs/reference/gio/gio-sections.txt	(original)
+++ trunk/docs/reference/gio/gio-sections.txt	Tue Jan 29 00:00:31 2008
@@ -81,6 +81,8 @@
 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
@@ -820,6 +822,13 @@
 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
@@ -847,6 +856,8 @@
 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

Modified: trunk/docs/reference/glib/tmpl/main.sgml
==============================================================================
--- trunk/docs/reference/glib/tmpl/main.sgml	(original)
+++ trunk/docs/reference/glib/tmpl/main.sgml	Tue Jan 29 00:00:31 2008
@@ -784,12 +784,10 @@
 (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
@@ -797,9 +795,9 @@
 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>

Modified: trunk/docs/reference/glib/tmpl/trees-nary.sgml
==============================================================================
--- trunk/docs/reference/glib/tmpl/trees-nary.sgml	(original)
+++ trunk/docs/reference/glib/tmpl/trees-nary.sgml	Tue Jan 29 00:00:31 2008
@@ -93,7 +93,7 @@
 </para>
 
 @src: 
- data:
+ data: 
 @Returns: 
 
 
@@ -116,7 +116,7 @@
 @parent: 
 @position: 
 @node: 
- Returns:
+ Returns: 
 
 
 <!-- ##### FUNCTION g_node_insert_before ##### -->
@@ -125,9 +125,9 @@
 </para>
 
 @parent: 
- sibling:
+ sibling: 
 @node: 
- Returns:
+ Returns: 
 
 
 <!-- ##### FUNCTION g_node_insert_after ##### -->
@@ -137,7 +137,7 @@
 
 @parent: 
 @sibling: 
- node:
+ node: 
 @Returns: 
 
 
@@ -148,7 +148,7 @@
 
 @parent: 
 @node: 
- Returns:
+ Returns: 
 
 
 <!-- ##### FUNCTION g_node_prepend ##### -->
@@ -158,7 +158,7 @@
 
 @parent: 
 @node: 
- Returns:
+ Returns: 
 
 
 <!-- ##### MACRO g_node_insert_data ##### -->
@@ -167,9 +167,9 @@
 </para>
 
 @parent: 
- position:
+ position: 
 @data: 
- Returns:
+ Returns: 
 
 
 <!-- ##### MACRO g_node_insert_data_before ##### -->
@@ -177,10 +177,10 @@
 
 </para>
 
- parent:
- sibling:
+ parent: 
+ sibling: 
 @data: 
- Returns:
+ Returns: 
 
 
 <!-- ##### MACRO g_node_append_data ##### -->
@@ -188,9 +188,9 @@
 
 </para>
 
- parent:
- data:
- Returns:
+ parent: 
+ data: 
+ Returns: 
 
 
 <!-- ##### MACRO g_node_prepend_data ##### -->
@@ -198,9 +198,9 @@
 
 </para>
 
- parent:
- data:
- Returns:
+ parent: 
+ data: 
+ Returns: 
 
 
 <!-- ##### FUNCTION g_node_reverse_children ##### -->
@@ -208,7 +208,7 @@
 
 </para>
 
- node:
+ node: 
 
 
 <!-- ##### FUNCTION g_node_traverse ##### -->
@@ -258,9 +258,9 @@
 </para>
 
 @node: 
- flags:
- func:
- data:
+ flags: 
+ func: 
+ data: 
 
 
 <!-- ##### USER_FUNCTION GNodeForeachFunc ##### -->
@@ -279,8 +279,8 @@
 
 </para>
 
- node:
- Returns:
+ node: 
+ Returns: 
 
 
 <!-- ##### FUNCTION g_node_find ##### -->
@@ -289,10 +289,10 @@
 </para>
 
 @root: 
- order:
+ order: 
 @flags: 
 @data: 
- Returns:
+ Returns: 
 
 
 <!-- ##### FUNCTION g_node_find_child ##### -->
@@ -300,9 +300,9 @@
 
 </para>
 
- node:
+ node: 
 @flags: 
- data:
+ data: 
 @Returns: 
 
 
@@ -311,9 +311,9 @@
 
 </para>
 
- node:
- data:
- Returns:
+ node: 
+ data: 
+ Returns: 
 
 
 <!-- ##### FUNCTION g_node_child_position ##### -->
@@ -323,7 +323,7 @@
 
 @node: 
 @child: 
- Returns:
+ Returns: 
 
 
 <!-- ##### MACRO g_node_first_child ##### -->
@@ -331,8 +331,8 @@
 
 </para>
 
- node:
- Returns:
+ node: 
+ Returns: 
 
 
 <!-- ##### FUNCTION g_node_last_child ##### -->
@@ -340,7 +340,7 @@
 
 </para>
 
- node:
+ node: 
 @Returns: 
 
 
@@ -349,9 +349,9 @@
 
 </para>
 
- node:
- n:
- Returns:
+ node: 
+ n: 
+ Returns: 
 
 
 <!-- ##### FUNCTION g_node_first_sibling ##### -->
@@ -369,7 +369,7 @@
 </para>
 
 @node: 
- Returns:
+ Returns: 
 
 
 <!-- ##### MACRO g_node_prev_sibling ##### -->
@@ -378,7 +378,7 @@
 </para>
 
 @node: 
- Returns:
+ Returns: 
 
 
 <!-- ##### FUNCTION g_node_last_sibling ##### -->
@@ -386,8 +386,8 @@
 
 </para>
 
- node:
- Returns:
+ node: 
+ Returns: 
 
 
 <!-- ##### MACRO G_NODE_IS_LEAF ##### -->
@@ -396,7 +396,7 @@
 </para>
 
 @node: 
- Returns:
+ Returns: 
 
 
 <!-- ##### MACRO G_NODE_IS_ROOT ##### -->
@@ -404,8 +404,8 @@
 
 </para>
 
- node:
- Returns:
+ node: 
+ Returns: 
 
 
 <!-- ##### FUNCTION g_node_depth ##### -->
@@ -422,9 +422,9 @@
 
 </para>
 
- root:
- flags:
- Returns:
+ root: 
+ flags: 
+ Returns: 
 
 
 <!-- ##### FUNCTION g_node_n_children ##### -->
@@ -442,7 +442,7 @@
 </para>
 
 @node: 
- descendant:
+ descendant: 
 @Returns: 
 
 

Modified: trunk/gio/giomodule-priv.h
==============================================================================
--- trunk/gio/giomodule-priv.h	(original)
+++ trunk/gio/giomodule-priv.h	Tue Jan 29 00:00:31 2008
@@ -31,4 +31,4 @@
 
 G_END_DECLS
 
-#endif /* __G_IO_MODULE_H__ */
+#endif /* __G_IO_MODULE_PRIV_H__ */

Modified: trunk/gio/glocalvfs.c
==============================================================================
--- trunk/gio/glocalvfs.c	(original)
+++ trunk/gio/glocalvfs.c	Tue Jan 29 00:00:31 2008
@@ -23,6 +23,7 @@
 #include <config.h>
 #include "glocalvfs.h"
 #include "glocalfile.h"
+#include "giomodule.h"
 #include <gio/gdummyfile.h>
 #include <sys/types.h>
 #ifdef HAVE_PWD_H



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]