timezone display

in the live feels feed, timestamp now indicates what deflection from UTC
the time reads. this is based on the local time zone set for the user
who caused the live feed to update.
This commit is contained in:
endorphant 2016-05-22 00:53:21 -04:00
vanhempi f98513a079
commit 8041ece179
2 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa

Näytä tiedosto

@ -643,7 +643,7 @@ def www_neighbors(users):
if lastfile: if lastfile:
last = os.path.getctime(lastfile) last = os.path.getctime(lastfile)
timestamp = time.strftime("%Y-%m-%d at %H:%M", time.localtime(last)) timestamp = time.strftime("%Y-%m-%d at %H:%M", time.localtime(last)) + time.strftime(" (%z)")
else: else:
timestamp = "" timestamp = ""
last = 0 last = 0

Näytä tiedosto

@ -641,7 +641,7 @@ def www_neighbors(users):
if lastfile: if lastfile:
last = os.path.getctime(lastfile) last = os.path.getctime(lastfile)
timestamp = time.strftime("%Y-%m-%d at %H:%M", time.localtime(last)) timestamp = time.strftime("%Y-%m-%d at %H:%M", time.localtime(last)) + time.strftime(" (%z)")
else: else:
timestamp = "" timestamp = ""
last = 0 last = 0