Dear Wiki user, You have subscribed to a wiki page or wiki category on "Freevo Wiki" for change notification.
The following page has been changed by Brian Enigma: http://freevo.sourceforge.net/cgi-bin/moin.cgi/DocumentationPage The comment on the change is: Added some docs and some placeholders for plugins ------------------------------------------------------------------------------ @@ -1017,6 +1017,63 @@ The level argument is used to influence the placement in the Main Menu. consult freevo_config.py for the level of the other Menu Items if you wish to place it in a particular location. +== File Operations == + +A small plugin allowing you to delete media files. To activate, put the following line in local_conf.py: +{{{ +plugin.activate('file_ops') +}}} + +PleaseUpdate: How is this activated from a menu? + +== News Headlines == + +A plugin to list headlines from an XML (RSS) feed. To activate, put the following lines in local_conf.py: +{{{ +plugin.activate('headlines', level=45) +HEADLINES_LOCATIONS = [ ("Advogato", "http://advogato.org/rss/articles.xml"), + ("Dictionary.com Word of the Day", "http://www.dictionary.com/wordoftheday/wotd.rss"), + ("DVD Review", "http://www.dvdreview.com/rss/newschannel.rss") ] +}}} + +For a full list of tested sites, see "Docs/plugins/headlines.txt". + +== Joystick == + +PleaseUpdate: This is a placeholder. Better documentation and example is needed. + +{{{ +JOY_DEV=1 +JOY_CMDS={ 'up' : 'someCommand', + 'down' : 'someCommand', + 'left' : 'someCommand', + 'right : 'someCommand', + 'button' : 'someCommand'} +plugin.activate("joy") +}}} + +== Media Menu == + +PleaseUpdate: Placeholder + +{{{ +plugin.activate("mediamenu") +}}} + +== Mixer == + +PleaseUpdate: Placeholder (is it mixer, ossmixer, or both?) + +== USB == + +A plugin to scan for USB devices. You should activate this plugin if you use mainmenu plugins for special USB devices like camera.py. + +PleaseUpdate: Placeholder (what does this do?) + +{{{ +plugin.activate("usb") +}}} + = Extra File Information in XML metafiles = == Movie files == ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Freevo-wikilog mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/freevo-wikilog
