totem-pl-parser r140 - in trunk: . plparse
- From: hadess svn gnome org
- To: svn-commits-list gnome org
- Subject: totem-pl-parser r140 - in trunk: . plparse
- Date: Wed, 11 Jun 2008 12:10:46 +0000 (UTC)
Author: hadess
Date: Wed Jun 11 12:10:46 2008
New Revision: 140
URL: http://svn.gnome.org/viewvc/totem-pl-parser?rev=140&view=rev
Log:
2008-06-11 Bastien Nocera <hadess hadess net>
* NEWS: upd
* configure.in: 2.23.2
* plparse/totem-pl-parser-xspf.c (totem_pl_parser_write_xspf):
Fix warning
Modified:
trunk/ChangeLog
trunk/NEWS
trunk/configure.in
trunk/plparse/totem-pl-parser-xspf.c
Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS (original)
+++ trunk/NEWS Wed Jun 11 12:10:46 2008
@@ -1,5 +1,13 @@
New features and significant updates in version...
+2.23.2:
+* Remove lingering gnome-vfs requirements
+* Ignore pnm:// URLs that are passed to us
+* Fix block device detection code
+* Fix bad detection of itms feeds
+* Work-around problems with filenames when passed .php or .asp files
+ by the web browser
+
2.23.1:
* Port to GIO/GVFS, and remove gnome-vfs dependency
* Fix handling of XML-ish files with linefeeds after the document head
Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in (original)
+++ trunk/configure.in Wed Jun 11 12:10:46 2008
@@ -2,7 +2,7 @@
m4_define(totem_version_major, 2)
m4_define(totem_version_minor, 23)
-m4_define(totem_version_micro, 1)
+m4_define(totem_version_micro, 2)
AC_INIT([totem-pl-parser],
[totem_version_major.totem_version_minor.totem_version_micro],
Modified: trunk/plparse/totem-pl-parser-xspf.c
==============================================================================
--- trunk/plparse/totem-pl-parser-xspf.c (original)
+++ trunk/plparse/totem-pl-parser-xspf.c Wed Jun 11 12:10:46 2008
@@ -102,19 +102,22 @@
for (i = 1; i <= num_entries_total; i++) {
GtkTreeIter iter;
char *url, *url_escaped, *relative, *title;
+ GFile *file;
gboolean custom_title;
if (gtk_tree_model_iter_nth_child (model, &iter, NULL, i - 1) == FALSE)
continue;
func (model, &iter, &url, &title, &custom_title, user_data);
+ file = g_file_new_for_uri (url);
- if (totem_pl_parser_scheme_is_ignored (parser, url) != FALSE)
- {
+ if (totem_pl_parser_scheme_is_ignored (parser, url) != FALSE) {
+ g_object_unref (file);
g_free (url);
g_free (title);
continue;
}
+ g_object_unref (file);
relative = totem_pl_parser_relative (output, url);
url_escaped = g_markup_escape_text (relative ? relative : url, -1);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]