7a6185756a
Now all active modules should be imported explicitly. Also rename all modules classes and remove priority. Change-Id: I9114165f15bf1b4f82bc9a60ae2fd4719d80fa36 Closes-Bug: #1576544
58 lines
1.8 KiB
Python
58 lines
1.8 KiB
Python
#!/usr/bin/env python
|
|
# Copyright 2013 Mirantis, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from fuelmenu.common.modulehelper import ModuleHelper
|
|
import fuelmenu.common.urwidwrapper as widget
|
|
import subprocess
|
|
import urwid
|
|
import urwid.raw_display
|
|
import urwid.web_display
|
|
|
|
blank = urwid.Divider()
|
|
|
|
|
|
class Shell(object):
|
|
def __init__(self, parent):
|
|
self.name = "Shell Login"
|
|
self.visible = True
|
|
self.parent = parent
|
|
self.screen = None
|
|
# UI text
|
|
text1 = "Press the button below to enter a shell login."
|
|
login_button = widget.Button("Shell Login", self.start_shell)
|
|
self.header_content = [text1, blank, login_button]
|
|
self.fields = []
|
|
self.defaults = dict()
|
|
|
|
def check(self, args):
|
|
return True
|
|
|
|
def start_shell(self, args):
|
|
self.parent.mainloop.screen.stop()
|
|
message = "Type exit to return to the main UI."
|
|
|
|
subprocess.call(
|
|
"screen bash -c 'clear; echo %s ; echo; bash -i'" % message,
|
|
shell=True
|
|
)
|
|
self.parent.mainloop.screen.start()
|
|
|
|
def refresh(self):
|
|
pass
|
|
|
|
def screenUI(self):
|
|
return ModuleHelper.screenUI(self, self.header_content, self.fields,
|
|
self.defaults, buttons_visible=False)
|