Changeset 1766

Show
Ignore:
Timestamp:
10/04/04 13:18:10 (20 years ago)
Author:
jalet
Message:

Now exports the MD5 sum of the job's datas as an hexadecimal digest

Location:
pykota/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/NEWS

    r1761 r1766  
    2424    - 1.20alpha19 : 
    2525     
     26        - The md5 sum of the job's datas is now available as an  
     27          hexadecimal digest in the PYKOTAMD5SUM environment variable. 
     28           
    2629        - The description, filename, title, and options fields 
    2730          are now stored as UTF-8 strings in both LDAP and PostgreSQL. 
  • pykota/trunk/pykota/tool.py

    r1761 r1766  
    2222# 
    2323# $Log$ 
     24# Revision 1.125  2004/10/04 11:18:10  jalet 
     25# Now exports the MD5 sum of the job's datas as an hexadecimal digest 
     26# 
    2427# Revision 1.124  2004/10/02 05:48:56  jalet 
    2528# Should now correctly deal with charsets both when storing into databases and when 
     
    10201023        digest = checksum.hexdigest() 
    10211024        self.logdebug("MD5 checksum for job %s is %s" % (self.jobid, digest)) 
     1025        os.environ["PYKOTAMD5SUM"] = digest 
    10221026        return digest 
    10231027