Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | java: Add guestfs-java(3) man page. | Richard W.M. Jones | 2011-07-19 | 15 | -2/+332 |
| | |||||
* | Add missing reference to guestfs-perl(3) to guestfs(3). | Richard W.M. Jones | 2011-07-19 | 1 | -0/+1 |
| | |||||
* | java: Tidy up the generated C bindings file. | Richard W.M. Jones | 2011-07-19 | 1 | -3/+11 |
| | |||||
* | java: Fix optional arguments in calls. | Richard W.M. Jones | 2011-07-19 | 4 | -14/+148 |
| | | | | This also adds tests. | ||||
* | java: Enable warnings when compiling C bindings code. | Richard W.M. Jones | 2011-07-19 | 2 | -16/+31 |
| | | | | And fix the code so it doesn't generate warnings. | ||||
* | debian: Fix misspelling in debian/control. | Nikita A Menkovich | 2011-07-18 | 1 | -1/+1 |
| | | | | Updates commit c6577ac73db2d2d93a094ca2b7990e0d60e6a93a. | ||||
* | debian: Add debian/guestfsd.* to the tarball. | Nikita A Menkovich | 2011-07-18 | 1 | -0/+2 |
| | |||||
* | debian: Fix misspelling in debian/control. | Nikita A Menkovich | 2011-07-18 | 1 | -1/+1 |
| | |||||
* | Version 1.11.19.1.11.19 | Richard W.M. Jones | 2011-07-18 | 22 | -42781/+75747 |
| | |||||
* | po-docs: Include source (POD files) in EXTRA_DIST. | Richard W.M. Jones | 2011-07-18 | 2 | -2/+2 |
| | |||||
* | po-docs: Remove empty Spanish translation file. | Richard W.M. Jones | 2011-07-18 | 1 | -31750/+0 |
| | |||||
* | po-docs: Fix UTF-8 encoding problem. | Richard W.M. Jones | 2011-07-18 | 1 | -1/+2 |
| | |||||
* | po-docs: Update the list of output manpages. | Richard W.M. Jones | 2011-07-17 | 2 | -30/+30 |
| | |||||
* | po-docs: Generate list of *.pod files. | Richard W.M. Jones | 2011-07-17 | 4 | -26/+45 |
| | | | | | | Generate the list of *.pod files, instead of hard coding it (and having it get very very out of date). Store the list in a separate file po-docs/podfiles. | ||||
* | Add notes on making a libguestfs stable release. | Richard W.M. Jones | 2011-07-17 | 1 | -0/+50 |
| | |||||
* | Pull latest translations from Transifex. | Richard W.M. Jones | 2011-07-17 | 17 | -17772/+42170 |
| | |||||
* | Add tx pull wrapper script. | Richard W.M. Jones | 2011-07-17 | 1 | -0/+31 |
| | |||||
* | ocaml: Generate ocamldoc. | Richard W.M. Jones | 2011-07-17 | 4 | -16/+61 |
| | | | | Also includes improvements to the OCaml documentation. | ||||
* | ocaml: Bind guestfs_last_errno. | Richard W.M. Jones | 2011-07-16 | 2 | -0/+32 |
| | |||||
* | Update API support. | Richard W.M. Jones | 2011-07-16 | 3 | -0/+869 |
| | |||||
* | Update ROADMAP file. | Richard W.M. Jones | 2011-07-16 | 1 | -21/+11 |
| | |||||
* | fish: Don't make --ro the default yet. | Richard W.M. Jones | 2011-07-16 | 1 | -1/+1 |
| | | | | Defer this decision to a future version of libguestfs. | ||||
* | docs: Separate out combined =item 's in man pages. | Richard W.M. Jones | 2011-07-16 | 9 | -31/+95 |
| | | | | | | | | | | | | | | | Turn: =item B<-a> | B<--all> into: =item B<-a> =item B<--all> This gives a more natural-looking manual page, as well as making it easier to directly link to these sections. | ||||
* | Update and rearrange release notes. | Richard W.M. Jones | 2011-07-16 | 1 | -38/+50 |
| | |||||
* | Fix test-guestfish-escapes regression test to work with debug/trace enabled. | Richard W.M. Jones | 2011-07-15 | 1 | -2/+7 |
| | | | | | | | | If debugging or tracing is enabled, extra messages are sent to stderr which mess with this test. Remove the extra messages before checking stderr. This updates commit 617e7f6bafa7de2303c08e1715004aae3141c389. | ||||
* | Version 1.11.18.1.11.18 | Richard W.M. Jones | 2011-07-15 | 19 | -18204/+19522 |
| | |||||
* | Update release notes. | Richard W.M. Jones | 2011-07-15 | 1 | -1/+16 |
| | |||||
* | Update API support. | Richard W.M. Jones | 2011-07-15 | 4 | -0/+1304 |
| | |||||
* | ruby: Add binding for guestfs_user_cancel. | Richard W.M. Jones | 2011-07-15 | 1 | -0/+22 |
| | |||||
* | perl: Add binding for guestfs_user_cancel. | Richard W.M. Jones | 2011-07-15 | 1 | -0/+11 |
| | |||||
* | ocaml: Add binding for guestfs_user_cancel. | Richard W.M. Jones | 2011-07-15 | 2 | -0/+19 |
| | |||||
* | fish: Register ^C handler to cancel long transfers. | Richard W.M. Jones | 2011-07-15 | 2 | -1/+25 |
| | |||||
* | fish: Add is_interactive flag. | Richard W.M. Jones | 2011-07-15 | 1 | -2/+9 |
| | | | | | Decide early (before launch) if this is going to be an interactive session, and set the is_interactive flag. | ||||
* | Add user cancellation to the C API. | Richard W.M. Jones | 2011-07-15 | 8 | -7/+413 |
| | | | | | | | | | This allows long transfers (FileIn and FileOut operations) to be cancelled by calling the signal and thread safe guestfs_user_cancel function. Most of this commit consists of a multithreaded program that tests user cancellation of uploads and downloads. | ||||
* | New APIs: set-pgroup, get-pgroup | Richard W.M. Jones | 2011-07-15 | 4 | -6/+45 |
| | | | | | | | | | | | If the pgroup flag is set in the handle, then the qemu and recovery subprocesses are placed in separate process groups. The default is false. The purpose for setting up a process group is that ^C will not be passed from the main process down to these processes (killing them). This allows ^C and other keyboard events to be caught and handled in the main process. | ||||
* | guestfs.h: Add missing extern keyword before event functions. | Richard W.M. Jones | 2011-07-15 | 1 | -6/+6 |
| | |||||
* | debian: New sub-package: guestfsd. | Nikita A Menkovich | 2011-07-14 | 4 | -0/+15 |
| | | | | | | This patch adds guestfsd debian package to the build. The daemon can be installed in virtualization clients to enable libguestfs live access. | ||||
* | New API: write-append | Richard W.M. Jones | 2011-07-14 | 3 | -3/+47 |
| | | | | Append content to the end of a file. | ||||
* | fish: Handle backslash escapes in guestfish double-quoted strings. | Richard W.M. Jones | 2011-07-14 | 4 | -4/+221 |
| | |||||
* | build: Add ./configure --enable-install-daemon | Richard W.M. Jones | 2011-07-14 | 2 | -0/+15 |
| | | | | | | | | If enabled, then the daemon will be installed in $sbindir (eg. /usr/sbin/guestfsd). The default is off, as now. This option should be used by packagers when building the libguestfs live service. | ||||
* | Version 1.11.17.1.11.17 | Richard W.M. Jones | 2011-07-14 | 19 | -16323/+16764 |
| | |||||
* | resize: Clarify examples in the man page. | Richard W.M. Jones | 2011-07-14 | 1 | -3/+27 |
| | |||||
* | resize: Add btrfs support to virt-resize (RHBZ#721275). | Richard W.M. Jones | 2011-07-14 | 2 | -5/+24 |
| | |||||
* | New API: btrfs-filesystem-resize (RHBZ#721160). | Richard W.M. Jones | 2011-07-14 | 5 | -1/+110 |
| | | | | This resizes a btrfs filesystem. | ||||
* | docs: resize: Not just limited to resizing filesystems in partitions. | Richard W.M. Jones | 2011-07-14 | 1 | -4/+2 |
| | | | | If you use --LV-expand then filesystems in LVs can be resized too. | ||||
* | mkfs: Don't die if mke2fs is not available. | Richard W.M. Jones | 2011-07-14 | 1 | -4/+4 |
| | | | | Allow other types of filesystems to be created. | ||||
* | Version 1.11.16.1.11.16 | Richard W.M. Jones | 2011-07-13 | 19 | -3354/+3360 |
| | |||||
* | Update release notes. | Richard W.M. Jones | 2011-07-13 | 1 | -3/+20 |
| | |||||
* | Refresh README file. | Richard W.M. Jones | 2011-07-13 | 1 | -75/+79 |
| | | | | | | | Update and verify the list of requirements, by checking it against both configure.ac and the Fedora specfile. Remove some obsolete sections that covered historical ground. | ||||
* | appliance: Add systemd to get /sbin/reboot for virt-rescue (RHBZ#661280). | Richard W.M. Jones | 2011-07-13 | 2 | -5/+1 |
| |