# HG changeset patch # User yaz # Date 1171346327 28800 # Node ID 2605c5515babcceb7f1e2cc2c723e3363708aa6f # Parent 3f0a3c24f2b9e8f95adae1c8dc4136fa0924b754 [svn] - remove a debug output. diff -r 3f0a3c24f2b9 -r 2605c5515bab ChangeLog --- a/ChangeLog Mon Feb 12 20:02:17 2007 -0800 +++ b/ChangeLog Mon Feb 12 21:58:47 2007 -0800 @@ -1,3 +1,25 @@ +2007-02-13 04:02:17 +0000 Yoshiki Yazawa + revision [1368] + libxspf improvements: + + - now libxspf can parse relative path with xml:base notation. + - backward compatibility support for base64 and locale_to_utf8 has been removed. + - make use of libxml2's url encoding/decoding. + - now mtime is always recorded even if the value is 0. + - tentative support for "staticlist". + -- if a mtime entry for each track is set to 0, metadata for corresponding track will not be updated automatically. + -- if there is an element shown below in the playlist-element, all mtime entries in the playlist will be regarded as 0 so that whole metadata in the playlist will be conserved. + + staticlist element: + + + + + trunk/src/xspf/Makefile | 4 + trunk/src/xspf/xspf.c | 243 ++++++++++++++++++++++++++---------------------- + 2 files changed, 135 insertions(+), 112 deletions(-) + + 2007-02-12 20:54:12 +0000 William Pitcock revision [1366] - add Catalan translation file. Closes #787. diff -r 3f0a3c24f2b9 -r 2605c5515bab src/xspf/xspf.c --- a/src/xspf/xspf.c Mon Feb 12 20:02:17 2007 -0800 +++ b/src/xspf/xspf.c Mon Feb 12 21:58:47 2007 -0800 @@ -282,7 +282,6 @@ if (strncasecmp("http://", entry->filename, 7) && strncasecmp("https://", entry->filename, 8)) { /* the rest */ gchar *tmp = (gchar *)xmlPathToURI((const xmlChar *)entry->filename); - printf("xmlPathToURI = %s\n", tmp); filename = g_strdup_printf("file://%s", tmp); g_free(tmp); }