Changeset 1766 for pykota/trunk
- Timestamp:
- 10/04/04 13:18:10 (20 years ago)
- Location:
- pykota/trunk
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/NEWS
r1761 r1766 24 24 - 1.20alpha19 : 25 25 26 - The md5 sum of the job's datas is now available as an 27 hexadecimal digest in the PYKOTAMD5SUM environment variable. 28 26 29 - The description, filename, title, and options fields 27 30 are now stored as UTF-8 strings in both LDAP and PostgreSQL. -
pykota/trunk/pykota/tool.py
r1761 r1766 22 22 # 23 23 # $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 # 24 27 # Revision 1.124 2004/10/02 05:48:56 jalet 25 28 # Should now correctly deal with charsets both when storing into databases and when … … 1020 1023 digest = checksum.hexdigest() 1021 1024 self.logdebug("MD5 checksum for job %s is %s" % (self.jobid, digest)) 1025 os.environ["PYKOTAMD5SUM"] = digest 1022 1026 return digest 1023 1027