Ejemplo n.º 1
0
 def __init__(self):
     BaseView.__init__(self,
                       endpoint='/network',
                       title='Network Monitor',
                       menu={
                           'id': 'system.network',
                           'icon': 'exchange'
                       })
Ejemplo n.º 2
0
 def __init__(self):
     BaseView.__init__(self,
                       endpoint='/cron',
                       title='Cron Jobs',
                       menu={
                           'id': 'system.cron',
                           'icon': 'cogs'
                       })
Ejemplo n.º 3
0
 def __init__(self):
     BaseView.__init__(self,
                       endpoint='/disk',
                       title='Disk Manager',
                       menu={
                           'id': 'system.disk',
                           'icon': 'circle-o'
                       })
Ejemplo n.º 4
0
 def __init__(self):
     BaseView.__init__(self,
                       endpoint='/users',
                       title='Users',
                       menu={
                           'id': 'system.users',
                           'icon': 'users'
                       })
Ejemplo n.º 5
0
 def __init__(self):
     BaseView.__init__(self,
                       endpoint='/processes',
                       title='Processes',
                       menu={
                           'id': 'system.processes',
                           'icon': 'cog'
                       })
Ejemplo n.º 6
0
 def __init__(self):
     BaseView.__init__(self,
                       endpoint='/hosts',
                       title='Hosts',
                       menu={
                           'id': 'system.hosts',
                           'icon': 'cubes'
                       })
Ejemplo n.º 7
0
 def __init__(self):
     BaseView.__init__(self,
                       endpoint='/overview',
                       title='Overview',
                       menu={
                           'id': 'firewall.overview',
                           'icon': 'circle',
                           'parent': {
                               'id': 'firewall',
                               'text': 'Firewall',
                               'icon': 'fire'
                           }
                       })
Ejemplo n.º 8
0
 def __init__(self):
     BaseView.__init__(self,
                       endpoint='/general',
                       title='General Information',
                       menu={
                           'id': 'system.overview',
                           'icon': 'circle',
                           'order': 0,
                           'parent': {
                               'id': 'system',
                               'text': 'System',
                               'icon': 'television'
                           }
                       })
Ejemplo n.º 9
0
 def __init__(self):
     BaseView.__init__(self,
                       endpoint='/general',
                       title='Overview',
                       menu={
                           'id': 'sso.overview',
                           'icon': 'Overview',
                           'order': 0,
                           'parent': {
                               'id': 'sso',
                               'text': 'SAML',
                               'icon': 'bullhorn'
                           }
                       })
Ejemplo n.º 10
0
 def __init__(self):
     BaseView.__init__(self,
                       endpoint='/create',
                       title='New Site',
                       menu={
                           'id': 'jack.create',
                           'icon': 'plus',
                           'order': 0,
                           'parent': {
                               'id': 'jack',
                               'text': 'Jack',
                               'icon': 'plug'
                           }
                       })
Ejemplo n.º 11
0
 def __init__(self):
     BaseView.__init__(self, endpoint='/users/list', title='User Management',
                             menu={'id': 'dashboard.users', 'icon': 'users', 'order': 1})
Ejemplo n.º 12
0
 def __init__(self):
     BaseView.__init__(self, endpoint='/process', title='View Process')
Ejemplo n.º 13
0
 def __init__(self):
     BaseView.__init__(self, endpoint='/restart', title='Restarting')
Ejemplo n.º 14
0
 def __init__(self):
     BaseView.__init__(self, endpoint='/updates', title='View Update')
Ejemplo n.º 15
0
 def __init__(self):
     BaseView.__init__(self, endpoint='/plugins/install', title='Install Plugins',
                             menu={'id': 'dashboard.plugins.install', 'icon': 'cube', 'order': 1})
Ejemplo n.º 16
0
 def __init__(self):
     BaseView.__init__(self, endpoint='/home', title='Home',
                             menu={'id': 'dashboard.home', 'icon': 'home', 'order': 0,
                                     'parent': {'id': 'dashboard', 'text': 'Dashboard', 'icon': 'dashboard', 'order': 0}})
Ejemplo n.º 17
0
 def __init__(self):
     BaseView.__init__(self, endpoint='/view', title='View Site')
Ejemplo n.º 18
0
 def __init__(self):
     BaseView.__init__(self, endpoint='/users/edit', title='User Editor')
Ejemplo n.º 19
0
 def __init__(self):
     BaseView.__init__(self, endpoint='/users/me', title='Me')
Ejemplo n.º 20
0
 def __init__(self):
     BaseView.__init__(self, endpoint='/error', title='Fatal Error')
Ejemplo n.º 21
0
 def __init__(self):
     BaseView.__init__(self, endpoint='/plugins/list', title='Installed Plugins',
                             menu={'id': 'dashboard.plugins.list', 'icon': 'square', 'order': 0,
                                     'parent': {'id': 'dashboard.plugins', 'text': 'Plugins', 'icon': 'cubes', 'order': 2}})
Ejemplo n.º 22
0
    def __init__(self):
        BaseView.__init__(self, endpoint='/terminal', title='Terminal')

        self.terminals = {}
Ejemplo n.º 23
0
 def __init__(self):
     BaseView.__init__(self, endpoint='/home', title='Dashboard',
                             menu={'id': 'dashboard', 'icon': 'home', 'order': 0})