summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Added settimes to a few FS impementations, and added a settimes test casewillmcgugan2010-06-207-27/+68
* add the settimes() method to WrapFSrfkelly02010-06-201-0/+4
* fix typorfkelly02010-06-201-2/+2
* Fixed a bug when using print_fs to a file without an encoding valuewillmcgugan2010-06-191-1/+1
* Fixed an issue in Py2.5, which doesnn't have wintypes.LPVOID definedwillmcgugan2010-06-191-10/+16
* Changelog changeswillmcgugan2010-06-181-1/+2
* Mostly doc changes, and some pedantic pep-8 tweakswillmcgugan2010-06-1821-249/+364
* Lots of new docswillmcgugan2010-06-187-9/+18
* fix test alignment in ChangeLogrfkelly02010-06-181-1/+1
* OSX raises EPERM when calling remove() on a dir; change to ResourceInvalidErrorrfkelly02010-06-181-0/+4
* convert EPERM => PermissionDeniedErrorrfkelly02010-06-181-0/+2
* catch misc errors that pyinotify might raise on importrfkelly02010-06-171-1/+8
* More documentationwillmcgugan2010-06-1722-15/+155
* Fixed issue in getinfowillmcgugan2010-06-171-3/+1
* Added support for xattr to MemoryFilewillmcgugan2010-06-171-8/+90
* Some fixes to improve fuse supportwillmcgugan2010-06-171-8/+28
* Added gettimes which has a default implementaiton that uses os.utime. This wa...willmcgugan2010-06-171-107/+148
* Fixed unicode encoding for directory listingswillmcgugan2010-06-161-9/+10
* Added an ignore_errors keyword parameter to listdirwillmcgugan2010-06-161-9/+36
* A new implementation of print_fs that prints ascii art lines with console col...willmcgugan2010-06-161-27/+83
* Fix for opening absolute paths in a zip filewillmcgugan2010-05-221-1/+1
* fix MountFS.getsyspath for cases for nothing is mounted at that pathrfkelly02010-05-181-1/+1
* make django_storage.FSStorage raise OSError, not FSErrorrfkelly02010-05-052-4/+10
* osfs/watch_win32: enqueue all IO operations from the same threadrfkelly02010-04-141-15/+42
* add "default" argument to fallback OSFSXAttrMixinrfkelly02010-04-131-1/+1
* include "fs.osfs" in setup.py packages listrfkelly02010-04-122-2/+3
* OSFSWatchMixin implementation using ReadDirectoryChangesW on win32rfkelly02010-04-076-189/+657
* implement WatchableFS interface for OSFS using pyinotify on linuxrfkelly02010-04-079-84/+384
* add preliminary implementation of "change watcher" functionalityrfkelly02010-04-072-0/+686
* fix wrong var name in OSFS.getinfo() conversion of st_mtime => modified_timerfkelly02010-04-061-1/+1
* add modified_time and accessed_time to MemoryFS file/dir inforfkelly02010-04-061-2/+11
* include root dir in output of recursepath()rfkelly02010-04-062-7/+14
* have FS.__init__ call super().__init__; otherwise mixins wont work correctlyrfkelly02010-04-061-0/+1
* fix typo in ChangeLogrfkelly02010-04-061-1/+1
* add iternames() method to PathMaprfkelly02010-04-062-1/+31
* add some comments about __getattr__rfkelly02010-04-061-0/+2
* added PathMap class, a dict-like object with paths as keysrfkelly02010-04-062-0/+195
* test that getinfo() doesn't accidentally return Nonerfkelly02010-04-061-1/+1
* add some formatting whitespacerfkelly02010-04-061-0/+2
* set max size for SpooledTemporaryFilerfkelly02010-03-092-2/+2
* SubFS: directly delegate createfile/setcontents/getcontentsrfkelly02010-03-021-0/+9
* ensure max_size is always given to SpooledTemporaryFilerfkelly02010-03-021-4/+10
* Some fixes for Python2.5 compatibilitywillmcgugan2010-02-187-25/+38
* ensure that rename() raises ParentDirectoryMissingError when appropriaterfkelly02010-02-165-5/+25
* implement setcontents() on LazyFS; also add LazyFS to test casesrfkelly02010-02-122-0/+17
* make LimitSizeFS actuall work (plus testcases for it)rfkelly02010-02-103-53/+147
* consistently return result of setcontents()rfkelly02010-02-021-1/+1
* SubFS: make removedir() more robust to concurrent deletion of filesrfkelly02010-01-311-2/+8
* MountFS: fast-path copy/move/copydir/movedir if src and dst are in same FSrfkelly02010-01-191-0/+36
* ConnectionManagerFS: make wait_for_connection exit on FS closerfkelly02010-01-191-2/+3