summaryrefslogtreecommitdiffstats
path: root/lua
Commit message (Collapse)AuthorAgeFilesLines
* lua: valgrinding Lua code doesn't work.Richard W.M. Jones2012-11-201-1/+10
| | | | See comment.
* lua: Attach __tostring functions exceptions.Richard W.M. Jones2012-11-203-5/+48
| | | | This includes a test.
* lua: Various fixes to the bindings (thanks Jerome Vuarand).Richard W.M. Jones2012-11-2013-39/+49
| | | | | | | | | | | | See http://article.gmane.org/gmane.comp.lang.lua.general/95065 Note that this is incompatible with existing code. You have to do: local G = require "guestfs" local g = G.create () ie. give the module your own name ("G" in that example).
* lua: Add bindtests.Richard W.M. Jones2012-11-202-1/+24
|
* lua: Document Guestfs.event_all.Richard W.M. Jones2012-11-191-0/+3
|
* erlang, lua: Fix links in man pages.Richard W.M. Jones2012-11-191-1/+2
|
* lua: Test globals in Guestfs.* namespace.Richard W.M. Jones2012-11-192-0/+28
|
* lua: Add global Guestfs.event_all (list of all events).Richard W.M. Jones2012-11-191-0/+4
|
* lua: Various fixes and enhancements:Richard W.M. Jones2012-11-198-28/+136
| | | | | | | | | - add support for events (with test) - test progress messages - update documentation to describe events - refactor handle closing code - refactor error code - use 'assert' in test code instead of 'if ... then error end'
* lua: examples: Boolean true shouldn't have quotes around it.Richard W.M. Jones2012-11-181-2/+2
|
* lua: Add another test to prove that the handles are really independent.Richard W.M. Jones2012-11-182-0/+43
|
* lua: Add some missing features.Richard W.M. Jones2012-11-171-1/+17
| | | | | | | | - Remove default error handler. - User cancel. - Add the errno to the object which is thrown on error. Still no events.
* Add Lua bindings.Richard W.M. Jones2012-11-1713-0/+586
These are relatively complete, although only lightly tested. Missing: - events - last_errno - user_cancel