| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Allow wrapped_fs to be set to None when closed by superclass. | btimby | 2012-11-20 | 1 | -0/+2 |
* | If the wrapped_fs reference is not removed, the SubFS will create a cycle wit... | btimby | 2012-11-15 | 1 | -0/+1 |
* | Whitespace cleanup. | btimby | 2012-11-15 | 1 | -1/+1 |
* | Prevent MemoryFS.removedir(..., recursive=True) removing non-empty parent dir... | gcode@loowis.durge.org | 2012-10-26 | 2 | -0/+4 |
* | Be less heavy-handed, setting the reference to None will do. | btimby | 2012-10-18 | 3 | -3/+54 |
* | __del__() is inherited from FS and redundant. | btimby | 2012-10-18 | 1 | -7/+7 |
* | Fix for missing ResourceNotFound error in fs.walk | willmcgugan@gmail.com | 2012-10-09 | 1 | -76/+80 |
* | Implemented walk() which allows caller to decide how to treat archives. | btimby | 2012-09-21 | 1 | -0/+106 |
* | Had replaced **kwargs with named arguments. Needed to update this call accord... | btimby | 2012-09-17 | 1 | -1/+1 |
* | Under some conditions, these methods are required. However, there was a bug in | btimby | 2012-09-17 | 1 | -0/+22 |
* | No need to override isfile() and isdir() anymore, getinfo() is correct. | btimby | 2012-09-17 | 1 | -22/+0 |
* | Overhauled most of the ArchiveMountFS file system method implementations so that | btimby | 2012-09-17 | 1 | -64/+104 |
* | Oops, forgot the auto_mount parameter. | btimby | 2012-09-13 | 1 | -1/+1 |
* | Not yet fully-tested, but move(), copy(), remove() work properly. These chan... | btimby | 2012-09-13 | 1 | -50/+106 |
* | Prevent files being opened with '+' in the mode string. Fixes Issue 129 | gcode@loowis.durge.org | 2012-09-01 | 1 | -1/+1 |
* | Use stat() to determine mtime instead of relying on fs directly. | btimby | 2012-08-29 | 1 | -2/+2 |
* | Forgot to add BackReferenceError to __all__ list. This caused problems in exp... | btimby | 2012-08-23 | 1 | -0/+1 |
* | Removed ZipFS reference (copy/paste error). | btimby | 2012-08-21 | 1 | -1/+1 |
* | Doh! ReadOnlyFS was blocking delattr and not delxattr | gcode@loowis.durge.org | 2012-08-19 | 1 | -1/+1 |
* | Refactored/simplified the compatibility.copy_file_to_fs function. | gcode@loowis.durge.org | 2012-08-15 | 2 | -132/+42 |
* | Found and fixed some more sneaky Python3 str->bytes problems | gcode@loowis.durge.org | 2012-08-15 | 5 | -10/+16 |
* | No need to save original_setcontents in fakeOn - it's already done in setUp. | gcode@loowis.durge.org | 2012-08-14 | 1 | -1/+0 |
* | Re-enable the SFTP nosetests. Seems like the latest version of paramiko no | gcode@loowis.durge.org | 2012-08-13 | 2 | -2/+2 |
* | Looks like closing() was being used incorrectly. Fixes Issue 124 | gcode@loowis.durge.org | 2012-08-13 | 1 | -2/+1 |
* | Whole bunch of Python3 str->bytes fixes | gcode@loowis.durge.org | 2012-08-13 | 8 | -39/+51 |
* | Another removal of removedir("/") | gcode@loowis.durge.org | 2012-08-13 | 1 | -1/+2 |
* | Fix Issue 122 | gcode@loowis.durge.org | 2012-08-13 | 1 | -0/+2 |
* | Rename test classes from *ZipFS to *ArchiveFS | gcode@loowis.durge.org | 2012-08-11 | 1 | -5/+5 |
* | Stop WrapFS unit tests throwing a RemoveRootError. Fixes Issue 121 | gcode@loowis.durge.org | 2012-08-11 | 1 | -1/+2 |
* | Typo fix | gcode@loowis.durge.org | 2012-08-09 | 1 | -1/+1 |
* | Fixed backref exception | willmcgugan@gmail.com | 2012-08-07 | 1 | -1/+1 |
* | Added closing context manager to files returned by open | willmcgugan@gmail.com | 2012-07-10 | 1 | -24/+26 |
* | S3FS: correct verifying of buckets when IAM policy is applied. | rfkelly0 | 2012-07-09 | 1 | -1/+8 |
* | Typo fix | willmcgugan@gmail.com | 2012-07-04 | 1 | -1/+1 |
* | Applied patch to sftp that searches for ssh keys in default locations | willmcgugan@gmail.com | 2012-07-03 | 3 | -181/+229 |
* | Fixes for hide fs | willmcgugan | 2012-06-15 | 3 | -8/+14 |
* | Wrong class name, caught by unit test. | btimby | 2012-06-14 | 1 | -1/+1 |
* | Some optimized paths to avoid mounting an archive if we don't need to. | btimby | 2012-06-14 | 1 | -0/+13 |
* | A bit of cleanup, and default to using the underlying file mode. | btimby | 2012-06-14 | 1 | -16/+22 |
* | HideFS | willmcgugan | 2012-05-29 | 3 | -2/+48 |
* | Made opendir throw a ResourceInvalidError if the path is not a dir | willmcgugan | 2012-04-25 | 1 | -0/+2 |
* | Fixed problem with Chrome using file as a directory | btimby | 2012-04-23 | 1 | -1/+14 |
* | Ensure files are not treated as directories (even when they are :-) | btimby | 2012-04-23 | 1 | -4/+9 |
* | Take advantage of MountFS.close(), allow turning auto_mount off. | btimby | 2012-04-23 | 1 | -19/+20 |
* | Unmount ArchiveFS when ArchiveMountFS goes away, close archives when ArchiveF... | btimby | 2012-04-23 | 1 | -0/+8 |
* | Fixed bug reporting error message | willmcgugan | 2012-04-22 | 1 | -2/+2 |
* | Don't blindly echo current uid/gid, allow fs a chance to provide them | btimby | 2012-04-21 | 1 | -3/+4 |
* | DRY | btimby | 2012-04-21 | 1 | -25/+30 |
* | Don't derive BackReferenceError from FSError. See comments on r773. | btimby | 2012-04-20 | 2 | -3/+2 |
* | Fixed handling of encoding in FTPFSFactory. | btimby | 2012-04-20 | 1 | -1/+1 |