Author: duncan
Date: Mon Jan  7 12:03:39 2008
New Revision: 10264

Log:
[ 1865272 ] Audio Playlist and UTF8-FXD-Files
Patch from Mr.Niceguy applied


Modified:
   branches/rel-1-7/freevo/ChangeLog
   branches/rel-1-7/freevo/src/playlist.py
   branches/rel-1/freevo/ChangeLog
   branches/rel-1/freevo/src/playlist.py

Modified: branches/rel-1-7/freevo/ChangeLog
==============================================================================
--- branches/rel-1-7/freevo/ChangeLog   (original)
+++ branches/rel-1-7/freevo/ChangeLog   Mon Jan  7 12:03:39 2008
@@ -27,6 +27,7 @@
  * Updated xine video plug-in to show OSD messages (F#1861770)
  * Deleted plug-in weather, moved to contrib/plugins (F#1863476)
  * Fixed apple trailers plug-in crashing (B#1861463)
+ * Fixed audio playlists when the the fxd file contains utf-8 characters 
(B#1865272)
  * Fixed manual record tv plug-in to work in December (B#1858008)
  * Fixed oneclick weather plug-in to allow non-ascii location names (B#1856597)
  * Fixed tv guide not scrolling to last channel from second channel (B#1858010)

Modified: branches/rel-1-7/freevo/src/playlist.py
==============================================================================
--- branches/rel-1-7/freevo/src/playlist.py     (original)
+++ branches/rel-1-7/freevo/src/playlist.py     Mon Jan  7 12:03:39 2008
@@ -545,7 +545,7 @@
 
         items = []
         for child in children:
-            fname  = os.path.join(dirname, fxd.gettext(child))
+            fname  = os.path.join(dirname, String(fxd.gettext(child)))
             if child.name == 'directory':
                 items.append((fname, fxd.getattr(child, 'recursive', 0)))
 

Modified: branches/rel-1/freevo/ChangeLog
==============================================================================
--- branches/rel-1/freevo/ChangeLog     (original)
+++ branches/rel-1/freevo/ChangeLog     Mon Jan  7 12:03:39 2008
@@ -30,6 +30,7 @@
  * Updated xine video plug-in to show OSD messages (F#1861770)
  * Deleted plug-in weather, moved to contrib/plugins (F#1863476)
  * Fixed apple trailers plug-in crashing (B#1861463)
+ * Fixed audio playlists when the the fxd file contains utf-8 characters 
(B#1865272)
  * Fixed manual record tv plug-in to work in December (B#1858008)
  * Fixed oneclick weather plug-in to allow non-ascii location names (B#1856597)
  * Fixed tv guide not scrolling to last channel from second channel (B#1858010)

Modified: branches/rel-1/freevo/src/playlist.py
==============================================================================
--- branches/rel-1/freevo/src/playlist.py       (original)
+++ branches/rel-1/freevo/src/playlist.py       Mon Jan  7 12:03:39 2008
@@ -547,7 +547,7 @@
 
         items = []
         for child in children:
-            fname  = os.path.join(dirname, fxd.gettext(child))
+            fname  = os.path.join(dirname, String(fxd.gettext(child)))
             if child.name == 'directory':
                 items.append((fname, fxd.getattr(child, 'recursive', 0)))
 

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to