[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Rdiff-backup-commits] Changes to rdiff-backup/rdiff_backup/eas_acls.py
From: |
Ben Escoto |
Subject: |
[Rdiff-backup-commits] Changes to rdiff-backup/rdiff_backup/eas_acls.py |
Date: |
Mon, 24 Oct 2005 13:16:08 -0400 |
Index: rdiff-backup/rdiff_backup/eas_acls.py
diff -u rdiff-backup/rdiff_backup/eas_acls.py:1.13
rdiff-backup/rdiff_backup/eas_acls.py:1.14
--- rdiff-backup/rdiff_backup/eas_acls.py:1.13 Wed Aug 10 05:25:43 2005
+++ rdiff-backup/rdiff_backup/eas_acls.py Mon Oct 24 17:16:05 2005
@@ -585,6 +585,11 @@
return acl
rpath.acl_get = rpath_acl_get
+def rpath_get_blank_acl(index):
+ """Get a blank AccessControlLists object (override rpath function)"""
+ return AccessControlLists(index)
+rpath.get_blank_acl = rpath_get_blank_acl
+
def rpath_ea_get(rp):
"""Get extended attributes of given rpath
@@ -595,3 +600,9 @@
if not rp.issym(): ea.read_from_rp(rp)
return ea
rpath.ea_get = rpath_ea_get
+
+def rpath_get_blank_ea(index):
+ """Get a blank ExtendedAttributes object (override rpath function)"""
+ return ExtendedAttributes(index)
+rpath.get_blank_ea = rpath_get_blank_ea
+
- [Rdiff-backup-commits] Changes to rdiff-backup/rdiff_backup/eas_acls.py,
Ben Escoto <=