All of my work from commits: dd4a194, 692644a, 4a60203, 5de46bc, 152042d, 64a2d4e...
[philo.git] / contrib / gilbert / plugins / base.py
1 from ..extdirect import ext_action
2
3
4 @ext_action
5 class Plugin(object):
6         def __init__(self, site):
7                 self.site = site
8         
9         @property
10         def index_css_urls(self):
11                 return []
12         
13         @property
14         def index_js_urls(self):
15                 return []
16         
17         @property
18         def index_extrahead(self):
19                 return ''
20         
21         @property
22         def icon_names(self):
23                 return []