From Edward M. Lee <tailbert@yahoo.com>:
authorTor Lillqvist <tml@iki.fi>
Wed, 14 Mar 2001 20:18:03 +0000 (20:18 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Wed, 14 Mar 2001 20:18:03 +0000 (20:18 +0000)
2001-03-13  Tor Lillqvist  <tml@iki.fi>

From Edward M. Lee  <tailbert@yahoo.com>:

* gdate.c (g_date_set_parse): add support for dates that in the
form "Wed Mar 14 2001". Running testgdate on cygwin requires this.

2001-03-13  Tor Lillqvist  <tml@iki.fi>

From Edward M. Lee  <tailbert@yahoo.com>:

* gmodule-win32.c (_g_module_build_path): use (cygwin friendly) dir
separator.

12 files changed:
ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gdate.c
glib/gdate.c
gmodule/ChangeLog
gmodule/gmodule-win32.c

index 9f9843d..521c6d3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2001-03-13  Tor Lillqvist  <tml@iki.fi>
+
+       From Edward M. Lee  <tailbert@yahoo.com>:
+
+       * gdate.c (g_date_set_parse): add support for dates that in the
+       form "Wed Mar 14 2001". Running testgdate on cygwin requires this.
+
 Fri Mar  9 18:01:43 2001  Tim Janik  <timj@gtk.org>
 
        * gscanner.[hc]: made config arg to g_scanner_new() const.
index 9f9843d..521c6d3 100644 (file)
@@ -1,3 +1,10 @@
+2001-03-13  Tor Lillqvist  <tml@iki.fi>
+
+       From Edward M. Lee  <tailbert@yahoo.com>:
+
+       * gdate.c (g_date_set_parse): add support for dates that in the
+       form "Wed Mar 14 2001". Running testgdate on cygwin requires this.
+
 Fri Mar  9 18:01:43 2001  Tim Janik  <timj@gtk.org>
 
        * gscanner.[hc]: made config arg to g_scanner_new() const.
index 9f9843d..521c6d3 100644 (file)
@@ -1,3 +1,10 @@
+2001-03-13  Tor Lillqvist  <tml@iki.fi>
+
+       From Edward M. Lee  <tailbert@yahoo.com>:
+
+       * gdate.c (g_date_set_parse): add support for dates that in the
+       form "Wed Mar 14 2001". Running testgdate on cygwin requires this.
+
 Fri Mar  9 18:01:43 2001  Tim Janik  <timj@gtk.org>
 
        * gscanner.[hc]: made config arg to g_scanner_new() const.
index 9f9843d..521c6d3 100644 (file)
@@ -1,3 +1,10 @@
+2001-03-13  Tor Lillqvist  <tml@iki.fi>
+
+       From Edward M. Lee  <tailbert@yahoo.com>:
+
+       * gdate.c (g_date_set_parse): add support for dates that in the
+       form "Wed Mar 14 2001". Running testgdate on cygwin requires this.
+
 Fri Mar  9 18:01:43 2001  Tim Janik  <timj@gtk.org>
 
        * gscanner.[hc]: made config arg to g_scanner_new() const.
index 9f9843d..521c6d3 100644 (file)
@@ -1,3 +1,10 @@
+2001-03-13  Tor Lillqvist  <tml@iki.fi>
+
+       From Edward M. Lee  <tailbert@yahoo.com>:
+
+       * gdate.c (g_date_set_parse): add support for dates that in the
+       form "Wed Mar 14 2001". Running testgdate on cygwin requires this.
+
 Fri Mar  9 18:01:43 2001  Tim Janik  <timj@gtk.org>
 
        * gscanner.[hc]: made config arg to g_scanner_new() const.
index 9f9843d..521c6d3 100644 (file)
@@ -1,3 +1,10 @@
+2001-03-13  Tor Lillqvist  <tml@iki.fi>
+
+       From Edward M. Lee  <tailbert@yahoo.com>:
+
+       * gdate.c (g_date_set_parse): add support for dates that in the
+       form "Wed Mar 14 2001". Running testgdate on cygwin requires this.
+
 Fri Mar  9 18:01:43 2001  Tim Janik  <timj@gtk.org>
 
        * gscanner.[hc]: made config arg to g_scanner_new() const.
index 9f9843d..521c6d3 100644 (file)
@@ -1,3 +1,10 @@
+2001-03-13  Tor Lillqvist  <tml@iki.fi>
+
+       From Edward M. Lee  <tailbert@yahoo.com>:
+
+       * gdate.c (g_date_set_parse): add support for dates that in the
+       form "Wed Mar 14 2001". Running testgdate on cygwin requires this.
+
 Fri Mar  9 18:01:43 2001  Tim Janik  <timj@gtk.org>
 
        * gscanner.[hc]: made config arg to g_scanner_new() const.
index 9f9843d..521c6d3 100644 (file)
@@ -1,3 +1,10 @@
+2001-03-13  Tor Lillqvist  <tml@iki.fi>
+
+       From Edward M. Lee  <tailbert@yahoo.com>:
+
+       * gdate.c (g_date_set_parse): add support for dates that in the
+       form "Wed Mar 14 2001". Running testgdate on cygwin requires this.
+
 Fri Mar  9 18:01:43 2001  Tim Janik  <timj@gtk.org>
 
        * gscanner.[hc]: made config arg to g_scanner_new() const.
diff --git a/gdate.c b/gdate.c
index 708c470..c3018ec 100644 (file)
--- a/gdate.c
+++ b/gdate.c
@@ -749,6 +749,13 @@ g_date_set_parse (GDate       *d,
           if (using_twodigit_years && y < 100) 
             y = G_DATE_BAD_YEAR; /* avoids ambiguity */
         }
+      else if (pt.num_ints == 2)
+       {
+         if (m == G_DATE_BAD_MONTH && pt.month != G_DATE_BAD_MONTH)
+           {
+             m = pt.month;
+           }
+       }
     }
   else if (pt.num_ints == 1) 
     {
index 708c470..c3018ec 100644 (file)
@@ -749,6 +749,13 @@ g_date_set_parse (GDate       *d,
           if (using_twodigit_years && y < 100) 
             y = G_DATE_BAD_YEAR; /* avoids ambiguity */
         }
+      else if (pt.num_ints == 2)
+       {
+         if (m == G_DATE_BAD_MONTH && pt.month != G_DATE_BAD_MONTH)
+           {
+             m = pt.month;
+           }
+       }
     }
   else if (pt.num_ints == 1) 
     {
index a3d05d7..c7d2448 100644 (file)
@@ -1,3 +1,10 @@
+2001-03-13  Tor Lillqvist  <tml@iki.fi>
+
+       From Edward M. Lee  <tailbert@yahoo.com>:
+
+       * gmodule-win32.c (_g_module_build_path): use (cygwin friendly) dir
+       separator.
+
 2001-03-12  Tor Lillqvist  <tml@iki.fi>
 
        * Makefile.am (libgplugin_a_la_LIBADD, libgplugin_b_la_LIBADD):
index 0f5aca7..c665329 100644 (file)
@@ -253,9 +253,9 @@ _g_module_build_path (const gchar *directory,
   k = strlen (module_name);
   if (directory && *directory)
     if (k > 4 && g_strcasecmp (module_name + k - 4, ".dll") == 0)
-      return g_strconcat (directory, "\\", module_name, NULL);
+      return g_strconcat (directory, G_DIR_SEPARATOR_S, module_name, NULL);
     else
-      return g_strconcat (directory, "\\", module_name, ".dll", NULL);
+      return g_strconcat (directory, G_DIR_SEPARATOR_S, module_name, ".dll", NULL);
   else if (k > 4 && g_strcasecmp (module_name + k - 4, ".dll") == 0)
     return g_strdup (module_name);
   else