本文整理匯總了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
示例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)
示例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