| Home | Trees | Indices | Help |
|---|
|
|
1 import web 24 ''' 5 This class is a view where the plugins' actions are showed to the user. 6 When the user clicks a action the framework go to the corresponding view. 7 '''189 plugins = web.ctx.plugin_manager.get_enabled_plugins() 10 actions = [] 11 12 for plugin in plugins: 13 actions += (a for a in plugin.get_main_panel_actions()) 14 15 sorted(actions, key=lambda x: x.get_human_name()) 16 17 return web.ctx.render.panel.panel(actions)
| Home | Trees | Indices | Help |
|---|
| Generated by Epydoc 3.0.1 on Wed Aug 4 09:57:33 2010 | http://epydoc.sourceforge.net |