Mercurial > audlegacy-plugins
changeset 642:2605c5515bab trunk
[svn] - remove a debug output.
author | yaz |
---|---|
date | Mon, 12 Feb 2007 21:58:47 -0800 |
parents | 3f0a3c24f2b9 |
children | dc0d35d888d2 |
files | ChangeLog src/xspf/xspf.c |
diffstat | 2 files changed, 22 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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 <yaz@cc.rim.or.jp> + 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: + <extension application="audacious"> + <options staticlist="true"/> + </extension> + + 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 <nenolod@sacredspiral.co.uk> revision [1366] - add Catalan translation file. Closes #787.
--- 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); }