history time is now correct. fixed #1571

This commit is contained in:
louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 2010-07-14 18:26:01 +00:00
parent 25e82efebf
commit 93351156a1
2 changed files with 8 additions and 7 deletions

View file

@ -33,7 +33,7 @@
"""
various useful functions
"""
from datetime import datetime, timedelta
import base64
import os
import mimetypes
@ -44,6 +44,7 @@ import sys
import select
import errno
import xmpp
import time
def debug(string):
"""
@ -261,7 +262,8 @@ def datetime_tuple(timestamp):
"""
timestamp = timestamp.split('.')[0]
timestamp = timestamp.replace('-', '')
timestamp = timestamp.replace('z', '')
timestamp = timestamp.replace('Z', '')
from datetime import datetime
return datetime.strptime(timestamp, '%Y%m%dT%H:%M:%S')
ret = datetime.strptime(timestamp, '%Y%m%dT%H:%M:%SZ')
# convert UTC to local time, with DST etc.
dst = timedelta(seconds=time.altzone)
ret -= dst
return ret

View file

@ -377,8 +377,7 @@ class Gui(object):
"""
Display the message on the room window
"""
delay_tag = stanza.getTag('delay', namespace='urn:xmpp:delay')
if delay_tag and not date:
if delay_tag:
delayed = True
date = common.datetime_tuple(delay_tag.getAttr('stamp'))
else: