Cleanup
[kiosk.git] / trigger.py
1 class trigger(object):
2     """Base class for something that can trigger a page becomming active."""
3
4     PRIORITY_HIGH = 100
5     PRIORITY_NORMAL = 50
6     PRIORITY_LOW = 0
7
8     def get_triggered_page_list(self):
9         return None