summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* add note mentioning changing maintainersHEADmasterTerence D. Honles2018-01-172-1/+8
|
* updating to v2.0.4v2.0.4Terence D. Honles2016-04-041-1/+1
|
* Merge pull request #48 from rianhunter/masterTerence Honles2016-04-041-16/+40
|\ | | | | Allow fuse flags, missing time fields, and optional paths
| * Ignore input time field if it doesn't exist on statRian Hunter2016-03-311-1/+3
| |
| * Add support for flags in pyfuse.OperationsRian Hunter2016-03-311-15/+37
|/
* Merge pull request #45 from eestrada/masterv2.0.3Terence Honles2016-03-157-16/+35
|\ | | | | use Python 3 compatible code with future imports
| * Make sure logging gets initialized in example codeEthan Estrada2016-03-155-1/+18
| | | | | | | | | | Since these are examples, use the `DEBUG` level so that developers can get a sense of what fusepy is doing under the hood.
| * Run all Python 3 fixersEthan Estrada2016-03-151-11/+11
| | | | | | | | | | | | Since all the syntax changes run the same in Python 2.6+ as well as Python 3, there is no reason to convert at install time using 2to3 unless there is need to support versions earlier than Python 2.6.
| * Add Python3 compatibility boilerplateEthan Estrada2016-03-147-5/+7
|/
* Merge pull request #44 from eestrada/masterTerence Honles2016-03-143-110/+110
|\ | | | | Remove trailing whitespace from files
| * Remove trailing whitespace from filesEthan Estrada2016-03-143-111/+111
| |
* | updating minimum version to Python 2.6Terence Honles2016-03-144-27/+8
|/
* Merge pull request #43 from eestrada/masterTerence Honles2016-03-143-8/+8
|\ | | | | Fix octal integer literals in examples
| * Fix octal integer literals in examplesEthan Estrada2016-03-083-8/+8
|/ | | | | The form of octal literals used is compatible with Python 2.6+ and Python 3.
* Merge pull request #22 from JohannesBuchner/masterTerence Honles2016-03-061-1/+1
|\ | | | | unused create_string_buffer return value
| * unused create_string_buffer return valueJohannes Buchner2013-10-111-1/+1
| |
* | Merge remote-tracking branch 'nickcoutsos/patch-1'Terence Honles2016-03-061-1/+3
|\ \
| * | fix string encoding as referenced in #24/#25Terence Honles2016-03-061-1/+1
| | |
| * | Update the return value of FUSE.listxattrNick Coutsos2013-06-261-1/+3
| |/ | | | | | | | | | | By adding the extra '\x00' character to an otherwise empty string, fusepy makes it look like a file with no extra attributes has one (nameless?) attribute. xattr {file} prints one blank line, and xattr -l {file} prints "xattr: [Errno 22] Invalid argument: '{file}'"
* | Merge pull request #17 from nmtadam/masterTerence Honles2016-03-061-3/+6
|\ \ | | | | | | loopback example create update
| * | loopback example fsync updateAdam Manzanares2013-05-101-2/+5
| | | | | | | | | | | | No longer ignoring the datasync parameter.
| * | loopback example updateAdam Manzanares2013-05-101-1/+1
| |/ | | | | | | | | I was looking over the loopback example and I noticed that the create method was not truncating the file.
* | Merge remote-tracking branch 'lpzummer/master'Terence Honles2016-03-063-1/+77
|\ \
| * | Add MIPS architecture.lpzummer2015-10-193-1/+77
| |/
* | Merge pull request #39 from rncry/masterTerence Honles2016-03-061-1/+5
|\ \ | | | | | | Added missing fields in statvfs on linux
| * | Added missing fields in statvfs on linuxrncry2015-12-031-1/+5
| |/ | | | | Added the fields to ensure compatibility with linux. f_namemax is important for some operations.
* | Merge pull request #42 from steinbeck65/aarch64_supportTerence Honles2016-03-062-1/+18
|\ \ | |/ |/| Add support for arm64 architecture
| * Add support for arm64 architectureGreg Pearson2016-02-092-1/+18
|/
* safely save and restore signal handlerTerence Daniel Honles2013-03-201-2/+8
| | | | | calls to `signal.signal` not on the main thread would raise a `ValueError`. Resolving by catching that exception and continuing
* adding/cleaning documentation + allowing setup to work with Python2.5v2.0.2Terence Daniel Honles2013-03-022-49/+92
|
* allowing setting of st_birthtime attributeTerence Daniel Honles2013-03-021-1/+1
|
* fixing encoding bugsTerence Daniel Honles2012-08-181-5/+4
| | | | | | - adding missing path decoding for readlink - removing encoding for xattr data (arbitrary binary data should be allowed)
* adding missing MANIFEST.inTerence Daniel Honles2012-07-281-0/+1
|
* Merge branch 'bug/1'v2.0.1Terence Daniel Honles2012-07-272-14/+27
|\
| * fixing read method to properly return the actual amount readTerence Daniel Honles2012-07-151-13/+26
|/
* bumping major version due to paths and metadata as unicode nowv2.0Terence Honles2012-05-078-248/+132
|\
| * updating readme/setup + pointing to new urlsTerence Honles2012-05-073-20/+26
| | | | | | | | - fixed 1 missing utf-8 decode
| * fixing examples for 3.xTerence Honles2012-05-075-228/+106
|/ | | | | | - context needs numliteral fixer - memory needs numliteral fixer - sftp requires paramiko which isn't supported in 3.x
* consolidating all the fuse versions into one file + organizationTerence Honles2012-04-2414-1512/+423
|\ | | | | | | | | | | | | | | - consolidating all the fuse versions for maintenance reasons, the syntax is py3k as long as it doesn't break py2k, and then using 2to3 to fix any minor issues (number literals and exceptions) - examples are all moved into example subdirectory
| * fixing line length to follow PEP8Terence Honles2012-04-241-30/+66
| |
| * adding trove classifiers and long description as the README fileTerence Honles2012-04-241-0/+15
| |
| * adding readmeTerence Honles2012-04-242-0/+48
| |
| * removing fuse3x which can be generated by 2to3Terence Honles2012-04-244-805/+16
| |
| * adding metadata encodingTerence Honles2012-04-242-82/+152
| |
| * bringing fuse2x.py and fuse3x.py togetherTerence Honles2012-04-242-74/+201
| |
| * renaming fuse -> fuse2x and fuse3 -> fuse3x and updating loading logicTerence Honles2012-04-244-765/+4
| |
| * bringing fuse.py and fuse24.py togetherTerence Honles2012-04-242-111/+265
| |
| * fixing trailing whitespaceTerence Honles2012-04-233-240/+240
| |
| * organizing examples and package filesTerence Honles2012-04-2312-13/+24
|/
* Allow fuse to handle SIGINT (Ctrl-C) gracefullysvnverigak2012-03-061-1/+8
| | | | | | | | | | Thanks to antickon for providing the solution. Fixes #28 git-svn-id: http://fusepy.googlecode.com/svn/trunk@65 1ebed218-b0a3-11dd-8075-91d349ce83ee