当前位置: 首页>>代码示例>>Python>>正文


Python DockerBackend.display_time方法代码示例

本文整理汇总了Python中DockerBackend.display_time方法的典型用法代码示例。如果您正苦于以下问题:Python DockerBackend.display_time方法的具体用法?Python DockerBackend.display_time怎么用?Python DockerBackend.display_time使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在DockerBackend的用法示例。


在下文中一共展示了DockerBackend.display_time方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: user_box

# 需要导入模块: import DockerBackend [as 别名]
# 或者: from DockerBackend import display_time [as 别名]
def user_box(the_user):
    which_user = User.query.filter(User.name == str(the_user)).first()
    if current_user.__name__ is 'AnonymousUser':
        return redirect(url_for("index"))
    if which_user is None or current_user is None:
        return redirect(url_for("index"))
    login_user(which_user)
    email_domain = which_user.email.split("@", 1)[1]
    if email_domain == 'demo.com':
        demo = True
    else:
        demo = False
    try:
        port_4000 = urllib2.urlopen(str(request.url) + '/website')
        port_4000 = True
        print "port 4000 website found"
    except Exception:
        print "no port 4000 site"
        port_4000 = False
    time_left = which_user.dhbox_duration - DockerBackend.how_long_up(which_user.name)
    time_left = DockerBackend.display_time(time_left)
    resp = make_response(render_template('dhbox.html',
                     user=the_user,
                     apps=filter(lambda app: app.get('hide', False) != True, all_apps),
                     demo=demo,
                     time_left=time_left,
                     bootstrap_container='container-fluid',
                     fixed_scroll='fixed_scroll',
                     port_4000=port_4000
                     )
                 )
    return resp
开发者ID:DH-Box,项目名称:dhbox,代码行数:34,代码来源:dhbox.py

示例2: admin

# 需要导入模块: import DockerBackend [as 别名]
# 或者: from DockerBackend import display_time [as 别名]
def admin():
    containers = User.query.all()
    containers_list = []
    for container in containers:
        uptime = DockerBackend.how_long_up(container.name)
        time_left = DockerBackend.check_if_over_time(container)
        time_left = DockerBackend.display_time(time_left)
        containers_list.append({'name': container.name, 'uptime': uptime, 'time_left': time_left})
    return render_template('admin.html', containers=containers_list)
开发者ID:DH-Box,项目名称:dhbox,代码行数:11,代码来源:dhbox.py

示例3: user_box

# 需要导入模块: import DockerBackend [as 别名]
# 或者: from DockerBackend import display_time [as 别名]
def user_box(the_user):
    which_user = User.query.filter(User.name == str(the_user)).first()
    if which_user is None:
        return redirect(url_for("index"))
    if current_user.name is not which_user.name:
        return redirect(url_for("index"))
    email_domain = which_user.email.split("@", 1)[1]
    if email_domain == 'demo.com':
        demo = True
    else:
        demo = False
    dhbox_username = which_user.name
    time_left = which_user.dhbox_duration - DockerBackend.how_long_up(which_user.name)
    time_left = DockerBackend.display_time(time_left)
    resp = make_response(render_template('my_dhbox.html',
                                         user=the_user,
                                         apps=filter(lambda app: app.get('hide', False) != True, all_apps),
                                         demo=demo,
                                         time_left=time_left
                                         )
                         )
    return resp
开发者ID:sabo,项目名称:dhbox,代码行数:24,代码来源:dhbox.py


注:本文中的DockerBackend.display_time方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。