| Home | Trees | Indices | Help |
|---|
|
|
1 ''' 2 Action base module 3 ''' 4 5 import web 6 import config 7 8 DEFAULT_LANG = config.langs[0] 95112 self.owner = plugin 13 self.name = "unnamed" 14 self.human_name = "unnamed" 15 self.description = "undescripted" 16 self.appear_in_main_panel = False17 # TODO plugin manager should copy owner static dir to /static 1820 # FIXME check if image exists 21 return '%s/%s/%s_%s.png' % (config.static, self.owner.name, 22 size, self.name)2325 return self.get_image('small')2628 return self.get_image('big')2931 try: 32 lang = web.ctx.session.lang 33 except: 34 pass 35 36 # TODO return the correct language 37 return self.human_name38 3941 try: 42 lang = web.ctx.session.lang 43 except: 44 pass 45 46 # TODO return the correct language 47 return self.description48
| Home | Trees | Indices | Help |
|---|
| Generated by Epydoc 3.0.1 on Wed Aug 4 09:57:34 2010 | http://epydoc.sourceforge.net |