aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Remove old referencesv1_6_2Hisham Muhammad2014-01-294-8/+8
|
* Add top-level LICENSE file. Closes #33.Hisham Muhammad2014-01-291-0/+21
|
* Fix documentation for setmode. Closes #32.Hisham Muhammad2014-01-291-2/+4
|
* Merge branch 'master' of https://github.com/keplerproject/luafilesystemHisham Muhammad2014-01-291-1/+4
|\
| * Merge pull request #28 from moteus/patch-1Hisham Muhammad2014-01-081-1/+4
| |\ | | | | | | Fix. Prevents double close the same handle (#24)
| | * Fix. Prevents double close the same handle (#24)Alexey Melnichuk2014-01-081-1/+4
| |/ | | | | | | | | | | | | | | lfs_unlock_dir can be called multiple times for the same object. For example if lock:free is called manually. Then lfs_unlock_dir will be called always again, as soon as the LOCK_METATABLE is collected by GC. This can lead to strange file errors later on, like closing another file, which now has been assigned the same handle...
* | Improve indentation consistencyHisham Muhammad2014-01-291-101/+90
| |
* | Use local stylesheet, suitable for truly offline viewing.Hisham Muhammad2014-01-295-4/+227
| |
* | Remove outdated linksHisham Muhammad2014-01-291-5/+5
|/
* Merge pull request #27 from moteus/patch-1Hisham Muhammad2014-01-041-1/+1
|\ | | | | Fix. Use intptr_t to file handle on Windows (#26)
| * Fix. Use intptr_t to file handle on Windows (#26)Alexey Melnichuk2014-01-041-1/+1
|/ | | Tested on MS VS2008(x32) MinGW(x32) and MS VS2012(x64)
* Merge pull request #21 from Mikhael-Danilov/patch-1Fabio Mascarenhas2013-09-241-1/+1
|\ | | | | Update src/lfs.c
| * Update src/lfs.cMikhael-Danilov2013-02-201-1/+1
|/ | | Fix Windows build: make_link now returns int as it should
* Merge pull request #19 from devurandom/fix/warningsFabio Mascarenhas2012-10-041-4/+6
|\ | | | | Fix some warnings GCC produced on Linux
| * Fix warnings: unused variableDennis Schridde2012-10-041-1/+1
| | | | | | | | | | | | | | | | | | | | On non-win32 lfs_setmode was defined to 0, ignoring all parameters. Now the parameters are explicitly discarded. Fixes: src/lfs.c: In function ‘lfs_g_setmode’: src/lfs.c:324:7: warning: unused variable ‘op’ [-Wunused-variable] src/lfs.c:321:47: warning: unused parameter ‘f’ [-Wunused-parameter]
| * Fix warning: C++ style comments are not allowed in ISO C90Dennis Schridde2012-10-041-3/+5
| |
* | Merge pull request #18 from devurandom/fix/lua52Fabio Mascarenhas2012-10-045-15/+49
|\ \ | |/ |/| Full Lua 5.2 compatibility and adherance to modules-create-no-globals
| * Set global "lfs" when opening moduleDennis Schridde2012-10-041-0/+3
| | | | | | | | | | * Ensures backward compatibility with LFS 1.5 * Module name is defined as LFS_LIBNAME, similar to how Lua standard libraries are defined
| * Bump version to 1.6.2 and set version via define in src/lfs.c to make it ↵Dennis Schridde2012-10-034-2/+39
| | | | | | | | better visible
| * Full Lua 5.2 compatibility and adherance to modules-create-no-globalsDennis Schridde2012-10-032-14/+8
|/
* fix build for Lua 5.2; version 1.6.1Fabio Mascarenhas2012-10-013-0/+39
|
* Merge pull request #17 from rrthomas/masterFabio Mascarenhas2012-10-011-9/+1
|\ | | | | Use Lua 5.2's own luaL_register
| * lfs.c: use Lua 5.2's own luaL_registerReuben Thomas2012-10-011-9/+1
|/
* luafilesystem 1.6.0Fabio Mascarenhas2012-10-015-352/+431
|
* Merge pull request #15 from ewmailing/masterFabio Mascarenhas2012-09-261-6/+10
|\ | | | | Improvements to use of getcwd() for using the correct max path length
| * Due to Android (and apparently Sun) not supporting getcwd(NULL, 0), I've ↵Eric Wing2012-05-011-6/+10
| | | | | | | | | | | | changed to call to getcwd to specify a buffer and explicit size which successfully works around the problem. One minor performance advantage is that one less malloc/free is needed since the buffer is now created on the stack. Apparently, this was already changed in a prior commit I didn't see initially, but I think the use of an invented/arbitrary PATH_MAX is incorrect. Platforms should generally provide a constant for this and PATH_MAX itself is already defined on some systems like Linux which can cause collisions. This commit improves on those changes by leveraging the constants provided by the compiler/system. To help keep the code consistent but still correct, new platform specific code needed to be introduced for the max length. On POSIX I am assuming it is that <sys/param.h> provides MAXPATHLEN. This is what the Mac/BSD man page says to use and verified this is also defined on Ubuntu Linux and Android. On Windows, MAX_PATH is used. MAX_PATH seems to still be 260 which seems kind of small; is there a different constant we are supposed to use? In both cases, the respective constants are mapped to a new #define for LFS_MAXPATHLEN to allow the code to refer to one constant and avoid any potential name collisions in case MAXPATHLEN is defined already by something else on Windows (e.g. Cygwin).
* | Merge pull request #14 from icgood/masterFabio Mascarenhas2012-08-311-0/+9
|\ \ | |/ |/| 5.2 compatibility
| * implements fake luaL_register in Lua 5.2+Ian Good2012-02-281-0/+9
| |
* | applied debian patches from enrico tassiFabio Mascarenhas2012-04-082-4/+58
|/
* Merge pull request #8 from rrthomas/masterFabio Mascarenhas2011-06-094-58/+97
|\ | | | | New lfs.link and other goodies
| * Simplify and clarify metatable creation functions.Reuben Thomas2011-06-091-10/+12
| |
| * Add lfs.link.Reuben Thomas2011-06-093-2/+55
| |
| * Use package.config to get directory separator.Reuben Thomas2011-06-091-1/+1
| |
| * Add a comment for make_dir.Reuben Thomas2011-06-091-0/+4
| |
| * Fix typo in manual.Reuben Thomas2011-06-091-1/+1
| |
| * Simplify dir_iter_factory slightly.Reuben Thomas2011-06-091-5/+3
| |
| * Add .gitignore for *.o and *.so.Reuben Thomas2011-06-091-0/+2
| |
| * Add trivial implementation of setmode on non-Windows platforms.Reuben Thomas2011-06-093-23/+12
| |
| * Make test.lua find its interpreter using /usr/bin/env.Reuben Thomas2011-06-091-1/+1
| |
| * Add trivial link_info support on Windows (using STAT_FUNC).Reuben Thomas2011-06-093-17/+8
|/
* update links to bug tracker and cvsFabio Mascarenhas2011-06-064-8/+8
|
* change to build with lua 5.2 alpha, issue #5Fabio Mascarenhas2011-06-061-1/+1
|
* fixed dir length bug in windows directory iteratorFabio Mascarenhas2010-06-092-9/+8
|
* removed umask calls in lfs.mkdir, see kepler-list message from Enrico at ↵Fabio Mascarenhas2009-12-291-3/+0
| | | | 2009-12-27
* packaging for version 1.5.0 - changing _VERSIONv1.5.0Fabio Mascarenhas2009-10-201-2/+2
|
* packaging for version 1.5.0Fabio Mascarenhas2009-10-203-18/+39
|
* cvs rockspecs now point to githubFabio Mascarenhas2009-09-241-2/+1
|
* fixed typo in makefilemascarenhas2009-09-211-2/+2
|
* overhaul of lock_dir to remove staleness checks (due to race condition) and ↵mascarenhas2009-07-041-33/+14
| | | | simplify the function
* updated docs for lfs.dirmascarenhas2009-06-031-4/+5
|