Changeset 2953 for pykota/trunk/pykota

Show
Ignore:
Timestamp:
06/20/06 23:01:00 (18 years ago)
Author:
jerome
Message:

Fixed date formatting problems with MySQL.

Location:
pykota/trunk/pykota
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/storage.py

    r2945 r2953  
    745745        if start and end and (start > end) : 
    746746            (start, end) = (end, start) 
     747        try :     
     748            if len(start) == 17 : 
     749                start = "%s-%s-%s %s" % (start[0:4], start[4:6], start[6:8], start[9:]) 
     750        except TypeError :         
     751            pass 
     752             
     753        try :     
     754            if len(end) == 17 : 
     755                end = "%s-%s-%s %s" % (end[0:4], end[4:6], end[6:8], end[9:]) 
     756        except TypeError :         
     757            pass 
     758             
    747759        return (start, end)     
    748760         
  • pykota/trunk/pykota/storages/ldapstorage.py

    r2950 r2953  
    621621                date = fields.get("createTimestamp", ["19700101000000Z"])[0] # It's in UTC ! 
    622622                mxtime = DateTime.strptime(date[:14], "%Y%m%d%H%M%S").localtime() 
    623                 lastjob.JobDate = mxtime.strftime("%Y%m%d %H:%M:%S") 
     623                lastjob.JobDate = mxtime.strftime("%Y-%m-%d %H:%M:%S") 
    624624                lastjob.Exists = True 
    625625        return lastjob 
     
    13761376                date = fields.get("createTimestamp", ["19700101000000Z"])[0] # It's in UTC ! 
    13771377                mxtime = DateTime.strptime(date[:14], "%Y%m%d%H%M%S").localtime() 
    1378                 job.JobDate = mxtime.strftime("%Y%m%d %H:%M:%S") 
     1378                job.JobDate = mxtime.strftime("%Y-%m-%d %H:%M:%S") 
    13791379                if ((start is None) and (end is None)) or \ 
    13801380                   ((start is None) and (job.JobDate <= end)) or \