[Checkins] SVN: z3c.extfile/trunk/ version bump, see changes.txt

Bernd Dorn bernd.dorn at lovelysystems.com
Sat Feb 16 14:47:44 EST 2008


Log message for revision 83934:
  version bump, see changes.txt

Changed:
  U   z3c.extfile/trunk/CHANGES.txt
  U   z3c.extfile/trunk/src/z3c/extfile/hashdir.py

-=-
Modified: z3c.extfile/trunk/CHANGES.txt
===================================================================
--- z3c.extfile/trunk/CHANGES.txt	2008-02-16 19:38:59 UTC (rev 83933)
+++ z3c.extfile/trunk/CHANGES.txt	2008-02-16 19:47:43 UTC (rev 83934)
@@ -2,6 +2,12 @@
 Changes for z3c.extfile
 =======================
 
+0.2.0a2 (2008-02-16)
+====================
+
+- chmod to 440 on created hash files to let the group read and to make
+  sure that files are not modified by owner.
+
 0.2.0a1 (2008-02-05)
 ====================
 

Modified: z3c.extfile/trunk/src/z3c/extfile/hashdir.py
===================================================================
--- z3c.extfile/trunk/src/z3c/extfile/hashdir.py	2008-02-16 19:38:59 UTC (rev 83933)
+++ z3c.extfile/trunk/src/z3c/extfile/hashdir.py	2008-02-16 19:47:43 UTC (rev 83934)
@@ -52,6 +52,7 @@
             os.remove(f.path)
         else:
             shutil.move(f.path, target)
+            os.chmod(target, 0440)
         return digest
 
     def digests(self):



More information about the Checkins mailing list