g_date_time_format: support %C
authorJavier Jardón <jjardon@gnome.org>
Fri, 2 Sep 2011 16:09:07 +0000 (17:09 +0100)
committerRyan Lortie <desrt@desrt.ca>
Fri, 2 Sep 2011 22:07:51 +0000 (18:07 -0400)
%C represents the century number (year/100) as a 2-digit integer

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

glib/gdatetime.c

index 75f8338..e37857d 100644 (file)
@@ -2157,6 +2157,11 @@ get_numeric_format (gchar    *fmt,
  *    the  preferred  date  and  time  representation  for the current locale
  *  </simpara></listitem></varlistentry>
  *  <varlistentry><term>
+ *    <literal>%%C</literal>:
+ *   </term><listitem><simpara>
+ *    The century number (year/100) as a 2-digit integer (00-99)
+ *  </simpara></listitem></varlistentry>
+ *  <varlistentry><term>
  *    <literal>%%d</literal>:
  *   </term><listitem><simpara>
  *    the day of the month as a decimal number (range 01 to 31)
@@ -2422,6 +2427,9 @@ g_date_time_format (GDateTime   *datetime,
                     g_free (tmp);
                   }
                   break;
+                case 'C':
+                  get_numeric_format (fmt, sizeof(fmt), alt_digits, pad_set ? pad : '0', 2);
+                  g_string_append_printf (outstr, fmt, g_date_time_get_year (datetime) / 100);
                 case 'd':
                   get_numeric_format (fmt, sizeof(fmt), alt_digits, pad_set ? pad : '0', 2);
                   g_string_append_printf (outstr, fmt, g_date_time_get_day_of_month (datetime));