Aubin Paul wrote:
> Do you mean that the 'actions' function in PluginInterface should
> return that additional thing?
>
> Like right now it's:
>
> return [ ( self.create_backup_menu, 'Rip the CD to the hard drive',
> 'Get CDs available for ripping') ]

That makes no sense. self.create_backup_menu is the function, 'Rip the
CD to the hard drive' the name in the menu and 'Get CDs available for
ripping' the shortcut. The shortcut isn't short :-)

> so I would add?
>
> return [ ( self.create_backup_menu, 'Rip the CD to the hard drive',
> 'Get CDs available for ripping'), ('record')]

no, you would add:

return [ ( self.create_backup_menu, 'Rip the CD to the hard drive', 'record')]

You don't need the third parameter, but it's useful for some
stuff. E.g. if you use the name 'record' other plugins also making
'record's can use the same shortcut. Like imdb.py and coversearch
share a shortcut.


Dischi

-- 
Never let a computer know you're in a hurry.


-------------------------------------------------------
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01
_______________________________________________
Freevo-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-devel

Reply via email to