本文整理汇总了Python中cloudinstall.ui.utils.Color.frame_footer方法的典型用法代码示例。如果您正苦于以下问题:Python Color.frame_footer方法的具体用法?Python Color.frame_footer怎么用?Python Color.frame_footer使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cloudinstall.ui.utils.Color
的用法示例。
在下文中一共展示了Color.frame_footer方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _build_status_extra
# 需要导入模块: from cloudinstall.ui.utils import Color [as 别名]
# 或者: from cloudinstall.ui.utils.Color import frame_footer [as 别名]
def _build_status_extra(self):
return Color.frame_footer(
Pile([
self._horizon_url,
self._jujugui_url,
self._openstack_rel,
self._status_line
]))
示例2: _build_status_extra
# 需要导入模块: from cloudinstall.ui.utils import Color [as 别名]
# 或者: from cloudinstall.ui.utils.Color import frame_footer [as 别名]
def _build_status_extra(self):
col = Columns([
('weight', 0.3, self._horizon_url),
('weight', 0.3, self._jujugui_url),
self._openstack_rel
], dividechars=1)
return Color.frame_footer(Pile([
col, self._status_line
]))
示例3: _build_status_extra
# 需要导入模块: from cloudinstall.ui.utils import Color [as 别名]
# 或者: from cloudinstall.ui.utils.Color import frame_footer [as 别名]
def _build_status_extra(self):
status = []
status.append(Pile([self._horizon_url, self._jujugui_url]))
status.append(('pack', self._openstack_rel))
return Color.frame_footer(Columns(status))
示例4: _build_status_extra
# 需要导入模块: from cloudinstall.ui.utils import Color [as 别名]
# 或者: from cloudinstall.ui.utils.Color import frame_footer [as 别名]
def _build_status_extra(self):
return Color.frame_footer(
Pile([
self._status_line
]))