Export to GitHub

fusepy - default

Source Commits


Commits

Author Date Commit Message
verigak Mar 6, 2012 65 Allow fuse to handle SIGINT (Ctrl-C) gracefully Thanks to antickon for providin
verigak Mar 6, 2012 64 Add support for OSXFUSE in Darwin (contributed by quanxunzhen)
verigak Mar 6, 2012 63 Add a setup.py file
verigak Mar 6, 2012 62 Add a .svnignore file
verigak Dec 5, 2011 61 Remove redundant whitespace.
verigak Dec 5, 2011 60 Low-level fuse was not being maintained. Use LLFUSE by Nikolaus Rath: http://co
verigak Dec 5, 2011 59 Fix fuse4x for the Mac. MacFuse support should now be considered legacy. Fixes
verigak Feb 19, 2011 58 Allow importing fusepy as a package. (Patch by anacrolix)
verigak Aug 26, 2010 57 Correctly encode the return value of listdir. Fixes Issue 27.
verigak Aug 26, 2010 56 Use FuseOSError, an OSError subclass for all exceptions thrown by Operations. [c
verigak Mar 16, 2010 55 Rough first version of an alternative low level implementation.
nikratio Feb 22, 2010 54 Also removed daemonize() from __all__.
nikratio Feb 22, 2010 53 Do not expose fuse_daemonize() any more, should not be used.
nikratio Feb 17, 2010 52
nikratio Feb 15, 2010 51 Added a separate function for daemonization.
nikratio Feb 6, 2010 50 Fixed typo in comment.
nikratio Jan 30, 2010 49 Write imports in a way to make PyDev happy.
nikratio Jan 30, 2010 48 Removed lots of whitespace.
nikratio Jan 29, 2010 47 Fixed imports.
nikratio Jan 29, 2010 46 Updated example so that it can be called directly.
nikratio Jan 29, 2010 45 Updated README.
Nikratio Jan 29, 2010 44 Set svn:keywords property, removed keywords property.
nikratio Jan 29, 2010 43 Changed license to BSD, included Eclipse .project files.
Nikratio Jan 29, 2010 42 Added keyword property.
Nikratio Jan 29, 2010 41 Initial import of low-level interface.
verigak Jan 29, 2010 40 llfuse.py was just a proof of concept and not maintained.
verigak Jan 2, 2010 39 Changed default read implementation to raise a more meaningful error.
verigak Jan 2, 2010 38 Fix chown when one of the arguments is -1 (issue 25).
verigak Jan 2, 2010 37 Check the return value of fuse_main_real and raise a RuntimeError on error.
verigak Nov 8, 2009 36 Branches for Python 2.4 (contributed by Péter Szabó) and Python 3.
verigak Nov 1, 2009 35 Added FreeBSD support.
verigak Oct 28, 2009 34 - Imported patch by alex.morega that adds 32-bit PPC Linux support (see Issue 23
verigak Oct 22, 2009 33 Implemented destroy()
verigak Oct 5, 2009 32 Fix segfault of fuse_get_context().
verigak Sep 14, 2009 31 The multiplication by 1.0 was redundant since we import division from __future__
verigak Sep 7, 2009 30 Expose init as discussed in Issue 18.
verigak Sep 7, 2009 29 Made Operations a subclass of object so that filesystems that override __call__
verigak Sep 7, 2009 28 - Raise an exception if libfuse does not exist. - Return more sensible errors by
verigak Aug 30, 2009 27 Added a lock to make sure lseek and read/write are executed together. Thanks to
verigak Aug 17, 2009 26 We have to use create_string_buffer when we memmove, because python unicode stri
verigak Aug 16, 2009 25 Previous comment (taken from fuse.h) was misleading.
verigak Aug 16, 2009 24 Make memory.py executable.
verigak Aug 7, 2009 23 The first substring was redundant.
verigak Aug 5, 2009 22 Added support for {get,set,list,remove}xattr.
verigak Aug 5, 2009 21 getxatr and listxattr now check the size returned by Operations and return ERANG
verigak Jun 29, 2009 20 readlink should truncate strings longer than bufsize (thanks to Jim Wilcoxson fo
verigak Jun 19, 2009 19 There is an incombatibility between Linux and Mac OS X concerning st_nlink of di
verigak Jun 9, 2009 18 readdir of class FUSE now checks the return value of filler (credit: Nikolaus Ra
verigak Jun 9, 2009 17 Moved _operation_wrapper inside FUSE so it can overriden when subclassing FUSE (
verigak Jun 3, 2009 16 - Added a raw_fi to the constructor of FUSE. If it set to True (False by default
verigak Apr 27, 2009 15 read can now return EOF (when using direct_io) credit goes to: paul.melis
verigak Apr 7, 2009 14 Broke the very long lines of text to make source more readable.
verigak Apr 1, 2009 13 Fixed statfs for Linux.
verigak Mar 22, 2009 12 Added context, loopback and sftp example filesystems. Renamed example to memory.
verigak Mar 22, 2009 11 Some reorganization to make source more readable and more sane. Note however th
verigak Mar 15, 2009 10 Small code improvements (thanks David Simmer)
verigak Feb 23, 2009 9 Experimental support for low-level fuse operations. Only getattr, lookup, open,
verigak Feb 13, 2009 8 Better defaults for the *xattr functions.
verigak Feb 13, 2009 7 Add compatibility for 64bit Linux.
verigak Dec 15, 2008 6 removexattr was broken
verigak Dec 13, 2008 5 Fixed `setxattr` to get `value` as a string, even when its binary data.
verigak Nov 13, 2008 4 Fixed misleading variable name. (Credit: Bill Janssen)
verigak Nov 13, 2008 3 Updated the email of the copyright.
verigak Nov 13, 2008 2 Initial commit to Google Code.
Nov 12, 2008 1 Initial directory structure.