r13127 - in /desktop/unstable/gtk+2.0/debian: changelog patches/065_gtk-filechooser-locale-time.patch patches/series

lool at users.alioth.debian.org lool at users.alioth.debian.org
Sun Oct 14 18:40:50 UTC 2007


Author: lool
Date: Sun Oct 14 18:40:50 2007
New Revision: 13127

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=13127
Log:
* New patch, 065_gtk-filechooser-locale-time, fixes conversion of localized
  week days in non-UTF-8 locales in the file chooser; GNOME #482504;
  closes: #444927.

Added:
    desktop/unstable/gtk+2.0/debian/patches/065_gtk-filechooser-locale-time.patch
Modified:
    desktop/unstable/gtk+2.0/debian/changelog
    desktop/unstable/gtk+2.0/debian/patches/series

Modified: desktop/unstable/gtk+2.0/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gtk%2B2.0/debian/changelog?rev=13127&op=diff
==============================================================================
--- desktop/unstable/gtk+2.0/debian/changelog (original)
+++ desktop/unstable/gtk+2.0/debian/changelog Sun Oct 14 18:40:50 2007
@@ -33,8 +33,11 @@
   * New patch, 060_opening-display-by-env-error-message, fixes error message
     on opening of display to include the display when it was set via the
     DISPLAY env var; GNOME #486636; closes: #283076.
-
- -- Loic Minier <lool at dooz.org>  Sun, 14 Oct 2007 19:59:24 +0200
+  * New patch, 065_gtk-filechooser-locale-time, fixes conversion of localized
+    week days in non-UTF-8 locales in the file chooser; GNOME #482504;
+    closes: #444927.
+
+ -- Loic Minier <lool at dooz.org>  Sun, 14 Oct 2007 20:38:18 +0200
 
 gtk+2.0 (2.12.0-2) unstable; urgency=low
 

Added: desktop/unstable/gtk+2.0/debian/patches/065_gtk-filechooser-locale-time.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gtk%2B2.0/debian/patches/065_gtk-filechooser-locale-time.patch?rev=13127&op=file
==============================================================================
--- desktop/unstable/gtk+2.0/debian/patches/065_gtk-filechooser-locale-time.patch (added)
+++ desktop/unstable/gtk+2.0/debian/patches/065_gtk-filechooser-locale-time.patch Sun Oct 14 18:40:50 2007
@@ -1,0 +1,14 @@
+GNOME #482504; Debian #444927; Fix warnings and display of modified date / time
+in filechooser for some locales as it was missing a locale to UTF-8 conversion
+
+--- gtk/gtkfilechooserdefault.c.orig	2007-10-14 20:36:47.000000000 +0200
++++ gtk/gtkfilechooserdefault.c	2007-10-14 20:38:04.000000000 +0200
+@@ -11100,7 +11100,7 @@
+ 	}
+ 
+       if (strftime (buf, sizeof (buf), format, &tm_mtime) != 0)
+-        date_str = g_strdup (buf);
++        date_str = g_locale_to_utf8 (buf, -1, NULL, NULL, NULL);
+       else
+ 	date_str = g_strdup (_("Unknown"));
+     }

Modified: desktop/unstable/gtk+2.0/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gtk%2B2.0/debian/patches/series?rev=13127&op=diff
==============================================================================
--- desktop/unstable/gtk+2.0/debian/patches/series (original)
+++ desktop/unstable/gtk+2.0/debian/patches/series Sun Oct 14 18:40:50 2007
@@ -14,7 +14,8 @@
 033_treeview_resizing.patch
 040_filechooser_single-click.patch
 041_ia32-libs.patch
-60_opening-display-by-env-error-message.patch
+060_opening-display-by-env-error-message.patch
+065_gtk-filechooser-locale-time.patch -p0
 070_mandatory-relibtoolize.patch
 080_from_bugzilla_workaround_eclipse_crash.patch
 081_icon-cache-validate.patch




More information about the pkg-gnome-commits mailing list