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



Author: matthiasc
Date: Mon Jul 21 17:56:17 2008
New Revision: 7234
URL: http://svn.gnome.org/viewvc/glib?rev=7234&view=rev

Log:
2.17.4


Modified:
   trunk/ChangeLog
   trunk/INSTALL
   trunk/README
   trunk/configure.in
   trunk/docs/reference/ChangeLog
   trunk/docs/reference/glib/tmpl/i18n.sgml
   trunk/docs/reference/glib/tmpl/markup.sgml
   trunk/docs/reference/glib/tmpl/string_utils.sgml
   trunk/docs/reference/glib/tmpl/testing.sgml
   trunk/gio/ChangeLog
   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/ps.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	Mon Jul 21 17:56:17 2008
@@ -1,8 +1,8 @@
 Simple install procedure
 ========================
 
-  % gzip -cd glib-2.17.3.tar.gz | tar xvf -  # unpack the sources
-  % cd glib-2.17.3                           # change to the toplevel directory
+  % gzip -cd glib-2.17.4.tar.gz | tar xvf -  # unpack the sources
+  % cd glib-2.17.4                           # change to the toplevel directory
   % ./configure                             # run the `configure' script
   % make                                    # build GLIB
 

Modified: trunk/README
==============================================================================
--- trunk/README	(original)
+++ trunk/README	Mon Jul 21 17:56:17 2008
@@ -1,7 +1,7 @@
 General Information
 ===================
 
-This is GLib version 2.17.3. GLib is the low-level core
+This is GLib version 2.17.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/configure.in
==============================================================================
--- trunk/configure.in	(original)
+++ trunk/configure.in	Mon Jul 21 17:56:17 2008
@@ -23,7 +23,7 @@
 #
 m4_define([glib_major_version], [2])
 m4_define([glib_minor_version], [17])
-m4_define([glib_micro_version], [3])
+m4_define([glib_micro_version], [4])
 m4_define([glib_interface_age], [0])
 m4_define([glib_binary_age],
           [m4_eval(100 * glib_minor_version + glib_micro_version)])

Modified: trunk/docs/reference/glib/tmpl/i18n.sgml
==============================================================================
--- trunk/docs/reference/glib/tmpl/i18n.sgml	(original)
+++ trunk/docs/reference/glib/tmpl/i18n.sgml	Mon Jul 21 17:56:17 2008
@@ -115,6 +115,40 @@
 @Since: 2.4
 
 
+<!-- ##### MACRO NC_ ##### -->
+<para>
+Only marks a string for translation, with context.
+This is useful in situations where the translated strings can't
+be directly used, e.g. in string array initializers. 
+To get the translated string, you should call g_dpgettext2() at runtime.
+</para>
+|[
+     {
+       static const char *messages[] = {
+         NC_("some context", "some very meaningful message"),
+         NC_("some context", "and another one")
+       };
+       const char *string;
+       ...
+       string
+         = index &gt; 1 ? g_dpgettext2 (NULL, "some context", "a default message") : g_dpgettext2 (NULL, "some context", messages[index]);
+<!-- -->     
+       fputs (string);
+       ...
+     }
+]|
+
+<note><para>
+If you are using the NC_() macro, you need to make sure that you
+pass <option>--keyword=NC_:1c,2</option> to xgettext when extracting
+messages. Note that this only works with GNU gettext >= 0.15.
+</para></note>
+
+ Context: a message context, must be a string literal
+ String: a message id, must be a string literal
+ Since: 2.18
+
+
 <!-- ##### FUNCTION g_dgettext ##### -->
 <para>
 
@@ -148,39 +182,15 @@
 @Returns: 
 
 
-<!-- ##### MACRO NC_ ##### -->
+<!-- ##### FUNCTION g_dpgettext2 ##### -->
 <para>
-Only marks a string for translation, with context.
-This is useful in situations where the translated strings can't
-be directly used, e.g. in string array initializers. 
-To get the translated string, you should call g_dpgettext2() at runtime.
-</para>
-|[
-     {
-       static const char *messages[] = {
-         NC_("some context", "some very meaningful message"),
-         NC_("some context", "and another one")
-       };
-       const char *string;
-       ...
-       string
-         = index &gt; 1 ? g_dpgettext2 (NULL, "some context", "a default message") : g_dpgettext2 (NULL, "some context", messages[index]);
-<!-- -->     
-       fputs (string);
-       ...
-     }
-]|
-
-<note><para>
-If you are using the NC_() macro, you need to make sure that you
-pass <option>--keyword=NC_:1c,2</option> to xgettext when extracting
-messages. Note that this only works with GNU gettext >= 0.15.
-</para></note>
 
+</para>
 
- Context: a message context, must be a string literal
- String: a message id, must be a string literal
- Since: 2.18
+ domain: 
+ context: 
+ msgid: 
+ Returns: 
 
 
 <!-- ##### FUNCTION g_strip_context ##### -->

Modified: trunk/docs/reference/glib/tmpl/markup.sgml
==============================================================================
--- trunk/docs/reference/glib/tmpl/markup.sgml	(original)
+++ trunk/docs/reference/glib/tmpl/markup.sgml	Mon Jul 21 17:56:17 2008
@@ -267,6 +267,25 @@
 @Returns: 
 
 
+<!-- ##### FUNCTION g_markup_parse_context_push ##### -->
+<para>
+
+</para>
+
+ context: 
+ parser: 
+ user_data: 
+
+
+<!-- ##### FUNCTION g_markup_parse_context_pop ##### -->
+<para>
+
+</para>
+
+ context: 
+ Returns: 
+
+
 <!-- ##### ENUM GMarkupCollectType ##### -->
 <para>
 

Modified: trunk/docs/reference/glib/tmpl/string_utils.sgml
==============================================================================
--- trunk/docs/reference/glib/tmpl/string_utils.sgml	(original)
+++ trunk/docs/reference/glib/tmpl/string_utils.sgml	Mon Jul 21 17:56:17 2008
@@ -141,6 +141,16 @@
 @Returns: 
 
 
+<!-- ##### FUNCTION g_strcmp0 ##### -->
+<para>
+
+</para>
+
+ str1: 
+ str2: 
+ Returns: 
+
+
 <!-- ##### FUNCTION g_strlcpy ##### -->
 <para>
 Portability wrapper that calls strlcpy() on systems which have it, and emulates

Modified: trunk/docs/reference/glib/tmpl/testing.sgml
==============================================================================
--- trunk/docs/reference/glib/tmpl/testing.sgml	(original)
+++ trunk/docs/reference/glib/tmpl/testing.sgml	Mon Jul 21 17:56:17 2008
@@ -515,16 +515,6 @@
 @Since: 2.16
 
 
-<!-- ##### FUNCTION g_strcmp0 ##### -->
-<para>
-
-</para>
-
- str1: 
- str2: 
- Returns: 
-
-
 <!-- ##### TYPEDEF GTestCase ##### -->
 <para>
 An opaque structure representing a test case.



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