summaryrefslogtreecommitdiffstats
path: root/generator/.depend
Commit message (Collapse)AuthorAgeFilesLines
* build: Remove .depend files from gitMatthew Booth2012-01-111-158/+0
| | | | | Remove generated .depend files from source control, and don't barf when they don't exist while bootstrapping.
* tests: Rename capitests -> tests/c-api.Richard W.M. Jones2011-12-221-12/+12
|
* fish: Allow events to be processed in guestfish.Richard W.M. Jones2011-12-161-4/+4
| | | | | | | | Add 'event', 'list-events' and 'delete-event' commands so that event handlers can be registered, listed and deleted in guestfish. The event handler is a shell script snippet or host command. Cc: Pádraig Brady <P@draigBrady.com>
* Add Erlang bindings.Richard W.M. Jones2011-09-211-6/+14
|
* python: Implement new event API.Richard W.M. Jones2011-04-221-2/+4
| | | | | This implements set_event_callback and delete_event_callback so that Python programs can use the new event mechanism.
* New event API - Ruby bindings (RHBZ#664558).Richard W.M. Jones2011-03-151-2/+6
|
* New event API - Perl bindings (RHBZ#664558).Richard W.M. Jones2011-03-151-2/+4
| | | | | | | | The methods $h->set_progress_callback and $h->clear_progress_callback have been removed, and replaced with a complete mechanism for setting and deleting general-purpose events. This also updates virt-resize to use the new API.
* New event API - OCaml bindings (RHBZ#664558).Richard W.M. Jones2011-03-151-2/+4
| | | | | | The functions set_progress_callback and clear_progress_callback have been removed, and replaced with a complete mechanism for setting and deleting general-purpose events.
* New event API (RHBZ#664558).Richard W.M. Jones2011-03-151-2/+4
| | | | | | | | | | | | | This API allows more than one callback to be registered for each event, makes it possible to call the API from other languages, and allows [nearly all] log, debug and trace messages to be rerouted from stderr. An older version of this API was discussed on the mailing list here: https://www.redhat.com/archives/libguestfs/2010-December/msg00081.html https://www.redhat.com/archives/libguestfs/2011-January/msg00012.html This also updates guestfish to use the new API for its progress bars.
* docs: Which API calls were first supported in which upstream versions.Richard W.M. Jones2010-11-041-4/+9
| | | | | | | | Run src/api-support/update-from-tarballs.sh (this won't work unless you have a local copy of the tarballs from the website). src/api-support/added contains the result of running the script, a list of pairs: (API name, version first appeared).
* daemon: Send back the errno as a string.Richard W.M. Jones2010-11-031-4/+8
| | | | | | | | This changes the protocol again so that if the errno is available, it is converted to a string (like "EIO") and sent back over the protocol to the library. In this commit the library just discards the string.
* Split generator into separate source files.Richard Jones2010-09-111-0/+129
'src/generator.ml' is no more. Instead the generator is logically split up over many different source files. Read generator/README for help and tips. We compile the generator down to bytecode, not native code. This means it will run more slowly, but is done for maximum portability.