~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/console/__init__.py

Added overlay system and console overlay. Note that the console overlay
is no longer special cased, allowing multiple overlays per page.

This commit breaks the original console tab.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
from ivle.webapp.base.plugins import ViewPlugin
 
2
from ivle.webapp.base.plugins import OverlayPlugin
2
3
from ivle.webapp.console.service import ConsoleServiceRESTView
 
4
from ivle.webapp.console.overlay import ConsoleOverlay
3
5
 
4
 
class Plugin(ViewPlugin):
 
6
class Plugin(ViewPlugin, OverlayPlugin):
5
7
    """
6
8
    The Plugin class for the console plugin.
7
9
    """
8
10
    urls = [
9
11
        ('console/service', ConsoleServiceRESTView),
10
12
    ]
 
13
    overlays = [
 
14
        ConsoleOverlay,
 
15
    ]
 
16
    media = 'media'