瀏覽代碼

Show time format for over a day.

master
Ben Kurtovic 8 年之前
父節點
當前提交
18c37604c0
共有 1 個檔案被更改,包括 8 行新增5 行删除
  1. +8
    -5
      tif/calc.py

+ 8
- 5
tif/calc.py 查看文件

@@ -106,11 +106,14 @@ def _compute_stats(db, page):
def _format_time(cache_time):
formatter = lambda n, w: "{0} {1}{2}".format(n, w, "" if n == 1 else "s")
diff = datetime.utcnow() - cache_time
if diff.seconds > 3600:
return formatter(diff.seconds / 3600, "hour")
if diff.seconds > 60:
return formatter(diff.seconds / 60, "minute")
return formatter(diff.seconds, "second")
total_seconds = diff.days * 86400 + diff.seconds
if total_seconds > 86400:
return format(diff.seconds / 86400, "day")
if total_seconds > 3600:
return format(diff.seconds / 3600, "hour")
if total_seconds > 60:
return format(diff.seconds / 60, "minute")
return format(total_seconds, "second")

def _get_protection(page):
edit = [prot for prot in page.protection if prot["type"] == "edit"]


Loading…
取消
儲存