Setting DIRECTORY_AUTOPLAY_ITEMS = [] doesn't seems to alter the browser behaviour unless i apply the following patch. The patch adds a check in the build() method.

Did I misunderstand the option or should this patch be applied ?

Antony
--- directory.py.orig	2007-05-21 18:13:16.000000000 +0200
+++ directory.py	2007-08-10 03:31:16.000000000 +0200
@@ -770,7 +770,7 @@
             # autoplay
             items[0].actions()[0][0](menuw=menuw)
 
-        elif arg=='play' and self.play_items:
+        elif arg=='play' and self.play_items and (display_type in self.DIRECTORY_AUTOPLAY_ITEMS):
             # called by play function
             self.playlist = self.play_items
             Playlist.play(self, menuw=menuw)
-------------------------------------------------------------------------
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-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel

Reply via email to