aboutsummaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * implements fake luaL_register in Lua 5.2+Ian Good2012-02-281-0/+9
| |
* | applied debian patches from enrico tassiFabio Mascarenhas2012-04-081-3/+57
|/
* Simplify and clarify metatable creation functions.Reuben Thomas2011-06-091-10/+12
|
* Add lfs.link.Reuben Thomas2011-06-091-0/+43
|
* Add a comment for make_dir.Reuben Thomas2011-06-091-0/+4
|
* 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-091-12/+3
|
* Add trivial link_info support on Windows (using STAT_FUNC).Reuben Thomas2011-06-091-8/+1
|
* 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
|
* overhaul of lock_dir to remove staleness checks (due to race condition) and ↵mascarenhas2009-07-041-33/+14
| | | | simplify the function
* added explicit next and close methods to second return value of lfs.dir (the ↵mascarenhas2009-06-031-6/+15
| | | | directory object), for explicit iteration or explicit closing
* fixing lfs.lock_dir on windows to return "File exists" instead of looping, plusmascarenhas2009-04-241-4/+9
| | | | documenting lfs.lock_dir
* added lfs.lock_dir (directory locking) for Windows. On Windows the timeoutmascarenhas2009-04-241-9/+36
| | | | parameter is ignored, as killing the process removes the lock automatically
* locking via lockfiles in posix systems. API:mascarenhas2009-03-251-1/+81
| | | | | | | | | | | | lock, err = lfs.lock_dir(path, [seconds_stale]) Creates a lockfile (called lockfile.lfs) in <path> if it does not exist and returns the lock. If the lock already exists checks it it's stale, using the second parameter (default for the second parameter is INT_MAX, which in practice means the lock will never be stale. To free the the lock call lock:free(). In case of any errors it returns nil and the error message. In particular, if the lock exists and is not stale it returns the "File exists" message.
* Packaging version 1.4.2v1_4_2carregal2009-02-032-3/+3
|
* compiling with borland cmascarenhas2008-12-151-4/+19
|
* Fixing bug [#13198] lfs.attributes(filename, 'size') overflow on files > 2 ↵carregal2008-07-311-8/+8
| | | | | | Gb again (bug report and patch by KUBO Takehiro)
* Packaging version 1.4.1carregal2008-05-072-3/+3
|
* fixed bug 2293mascarenhas2008-04-241-3/+3
|
* large file support in Linux needs STAT64=-DHAVE_STAT64 in LuaRocksmascarenhas2008-03-251-2/+9
| | | | config
* large file support in lfs.attributes (bug #2185)mascarenhas2008-03-251-25/+40
|
* fixed windows compile problemmascarenhas2008-02-192-17/+20
|
* removed warningsmascarenhas2008-02-181-3/+6
|
* Preparing the 1.4.0 release.carregal2008-02-113-27/+29
| | | | Added documentation for lfs.setmode
* lfs.attributes raises an error if attribute does not existmascarenhas2008-01-251-2/+5
|
* *** empty log message ***mascarenhas2008-01-161-2/+2
|
* getcwd no longer passes a buffermascarenhas2008-01-161-11/+12
|
* Added lfs.setmode for changing file's mode (only for Windows)mascarenhas2007-12-221-1/+42
|
* Version 1.3.0 (final)carregal2007-10-261-2/+2
|
* Changing version to LuaFileSystem 1.3.0 (work)carregal2007-10-051-2/+2
|
* Improving conditional compilation for Windows version (thanks to Varol Kaptan)tomas2007-08-301-1/+6
|
* Avoiding dependency in backwards compatibility to Lua 5.0tomas2007-06-221-2/+2
|
* Adding function symlinkatributes. Updating version to 1.3.0tomas2007-06-071-6/+24
|
* Compilation bug fix: ISO C90 forbids mixed declarations and codetomas2007-05-151-2/+3
|
* Details for the 1.2.1 release. Version number, droping Lua 5.0 supportcarregal2007-05-082-3/+3
|
* Windows Makefile and configmascarenhas2006-12-041-0/+5
|
* Dropped Lua 5.0 support.mascarenhas2006-12-041-5/+1
|
* Correcting version numbertomas2006-06-081-2/+2
|
* Adding support for compilation on both Lua 5.0 and Lua 5.1tomas2006-06-081-1/+3
|
* Standardizing execution errors to nil followed by an error messagetomas2006-03-141-5/+7
|
* Removing unused codetomas2006-03-131-28/+1
|
* Comments update - minor detailscarregal2006-03-102-4/+4
|
* Comments update - minor detailscarregal2006-03-102-3/+12
|
* variable declaration in an _WIN32 sectiontuler2006-03-071-2/+4
|
* Upgrading lfs.attributes so that it could receive an extra parameter.tomas2005-08-181-57/+105
| | | | | | If it is a table, then it is used instead of creating a new one. If it is a string, then it is used to indicate the attribute which will be returned (only one parameter is accepted).
* moved luaL_argcheck call.uid200062005-08-161-2/+3
|