Author: duncan
Date: Sun Aug  5 06:41:03 2007
New Revision: 9802

Log:
[ 1767785 ] TV_LOGOS path is hard-coded
Patch from Richard van Paasen applied


Modified:
   branches/rel-1/freevo/freevo_config.py

Modified: branches/rel-1/freevo/freevo_config.py
==============================================================================
--- branches/rel-1/freevo/freevo_config.py      (original)
+++ branches/rel-1/freevo/freevo_config.py      Sun Aug  5 06:41:03 2007
@@ -1971,19 +1971,20 @@
 # Use the "makelogos.py" script to download all the
 # Station logos into a directory. And then put the path
 # to those logos here
-if os.path.isdir(OS_CACHEDIR + '/xmltv/logos'):
-    TV_LOGOS = OS_CACHEDIR + '/xmltv/logos'
-else:
-    if not os.path.isdir('/tmp/freevo/xmltv/logos'):
-        os.makedirs('/tmp/freevo/xmltv/logos')
-    TV_LOGOS = '/tmp/freevo/xmltv/logos'
-
+TV_LOGOS = OS_CACHEDIR + '/xmltv/logos'
+if not os.path.isdir(TV_LOGOS):
+    os.makedirs(TV_LOGOS)
 
+#
+# Default locale
+#
 LOCALE='iso-8859-15'
 
+#
+# Changed the handling of crashes in freevo
+#
 FREEVO_EVENTHANDLER_SANDBOX = 1
 
-
 # Use stat to check if a directory has changed. This is faster and should
 # work with all kinds of filesystems. No need to change it I guess
 

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to