Author: duncan
Date: Sat Sep 30 16:00:38 2006
New Revision: 8290

Modified:
   branches/rel-1-5/freevo/share/skins/main/noia.fxd
   branches/rel-1-5/freevo/src/skins/main/xml_skin.py

Log:
Added more info for skins, removed .ttf from noia

Modified: branches/rel-1-5/freevo/share/skins/main/noia.fxd
==============================================================================
--- branches/rel-1-5/freevo/share/skins/main/noia.fxd   (original)
+++ branches/rel-1-5/freevo/share/skins/main/noia.fxd   Sat Sep 30 16:00:38 2006
@@ -35,7 +35,7 @@
     </font>
 
     <color label="widget background" value="0xefb744"/>
-    <font label="widget" name="VeraBd.ttf" size="16" color="0x000000"/>
+    <font label="widget" name="VeraBd" size="16" color="0x000000"/>
     <color label="widget text" value="0x0000ff"/>
     <color label="widget item background" value="0xefb744"/>
     <color label="widget selected background" value="0xfffe8d"/>

Modified: branches/rel-1-5/freevo/src/skins/main/xml_skin.py
==============================================================================
--- branches/rel-1-5/freevo/src/skins/main/xml_skin.py  (original)
+++ branches/rel-1-5/freevo/src/skins/main/xml_skin.py  Sat Sep 30 16:00:38 2006
@@ -182,7 +182,7 @@
                 if font: break
 
         if not font:
-            print "skin error: can find font >%s<" % font
+            print "skin error: can find font \"%s\"" % font
             font = config.OSD_DEFAULT_FONTNAME
         return font
     return default
@@ -201,7 +201,7 @@
         if vfs.isfile("%s.jpg" % dfile):
             return vfs.abspath("%s.jpg" % dfile)
 
-    print 'skin error: can\'t find image %s' % file
+    print 'skin error: can\'t find image \"%s\"' % file
     if config.DEBUG:
         print 'image search path is:'
         for s in search_dirs:
@@ -574,7 +574,7 @@
             if font.has_key(self.font):
                 self.font = font[self.font]
             else:
-                print 'skin error: can\'t find font %s' % self.font
+                print 'skin error: can\'t find font \"%s\"' % self.font
                 print font
                 self.font = font['default']
         else:
@@ -638,7 +638,7 @@
             if font.has_key(self.font):
                 self.font = font[self.font]
             else:
-                print 'skin error: can\'t find font %s' % self.font
+                print 'skin error: can\'t find font \"%s\"' % self.font
                 self.font = font['default']
         else:
             self.font = font['default']
@@ -742,7 +742,7 @@
             if image_names.has_key(self.image):
                 self.filename = image_names[self.image]
             else:
-                print 'skin error: can\'t find image definition %s' % 
self.image
+                print 'skin error: can\'t find image definition \"%s\"' % 
self.image
 
         if self.filename:
             self.filename = search_file(self.filename, search_dirs)

-------------------------------------------------------------------------
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