Author: duncan
Date: Thu Dec 28 17:01:17 2006
New Revision: 8851

Modified:
   branches/rel-1/freevo/share/skins/main/blurr.fxd
   branches/rel-1/freevo/share/skins/main/info.fxd
   branches/rel-1/freevo/share/skins/main/mediaportal.fxd

Log:
[ 1622266 ] Chapter' object has no attribute 'url'
Needed the len(chapters) for this to work as intended


Modified: branches/rel-1/freevo/share/skins/main/blurr.fxd
==============================================================================
--- branches/rel-1/freevo/share/skins/main/blurr.fxd    (original)
+++ branches/rel-1/freevo/share/skins/main/blurr.fxd    Thu Dec 28 17:01:17 2006
@@ -218,8 +218,8 @@
                         <text font="info value"> Subtitles</text>
                         <newline/>
                     </if>
-                    <if expression="chapters">
-                        <text font="info value" expression="chapters"/>
+                    <if expression="len(chapters)">
+                        <text font="info value" expression="len(chapters)"/>
                         <text font="info value"> Chapters</text>
                         <newline/>
                     </if>

Modified: branches/rel-1/freevo/share/skins/main/info.fxd
==============================================================================
--- branches/rel-1/freevo/share/skins/main/info.fxd     (original)
+++ branches/rel-1/freevo/share/skins/main/info.fxd     Thu Dec 28 17:01:17 2006
@@ -313,9 +313,9 @@
            <text font="info value" expression="len(subtitles)"/>
            <text font="info value"> Subtitles, </text>
          </if>
-         <if expression="chapters">
-           <text font="info value" expression="chapters"/>
-           <text font="info value"> Chapter</text>
+         <if expression="len(chapters)">
+           <text font="info value" expression="len(chapters)"/>
+           <text font="info value"> Chapters</text>
          </if>
        </item>
 

Modified: branches/rel-1/freevo/share/skins/main/mediaportal.fxd
==============================================================================
--- branches/rel-1/freevo/share/skins/main/mediaportal.fxd      (original)
+++ branches/rel-1/freevo/share/skins/main/mediaportal.fxd      Thu Dec 28 
17:01:17 2006
@@ -220,8 +220,8 @@
                         <text font="info value"> Subtitles</text>
                         <newline/>
                     </if>
-                    <if expression="chapters">
-                        <text font="info value" expression="chapters"/>
+                    <if expression="len(chapters)">
+                        <text font="info value" expression="len(chapters)"/>
                         <text font="info value"> Chapters</text>
                         <newline/>
                     </if>

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to