summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* generator: Fix documentation for 'is-file' command.Richard Jones2010-09-091-2/+2
|
* fish: Fix 'more' command to work with any file.Richard Jones2010-09-092-13/+2
|
* fish: Fix 'edit' command to work with any file.Richard Jones2010-09-092-70/+19
|
* guestfs: Reference guestfs-browser architecture in threads documentation.Richard Jones2010-09-091-0/+3
|
* guestfs: Document progress notification messages in protocol.Richard Jones2010-09-091-0/+14
|
* guestfs: More accurate documentation for initial message.Richard Jones2010-09-091-4/+3
|
* guestfs: Remove traces of documentation for non-existent 'low-level API'Richard Jones2010-09-091-13/+10
|
* guestfs: Fix typo in man page.Richard Jones2010-09-091-1/+1
|
* todo: Notes on virt copy command.Richard Jones2010-09-091-0/+13
|
* Bring TODO file up to date.Richard Jones2010-09-081-28/+9
|
* Version 1.5.9.1.5.9Richard Jones2010-09-0817-813/+1521
|
* fish: Add guestfish -N bootroot and -N bootrootlv for creating boot+root disks.Richard Jones2010-09-087-5/+195
|
* fish: Add guestfish -N lvfs for creating formatted LVs.Richard Jones2010-09-082-1/+73
|
* fish: Add guestfish -N lv for creating disks with LVs.Richard Jones2010-09-084-0/+127
|
* fish: Improve appearance of guestfish -N help output.Richard Jones2010-09-081-1/+1
|
* fish: Allow guestfish -N help for listing prepared disk image help.Richard Jones2010-09-083-5/+8
|
* fish: Generate list of prepared disk image types.Richard Jones2010-09-089-138/+276
| | | | This commit shouldn't change the semantics of the code.
* test-tool: Add a 'run-test-tool-locally' script.Richard Jones2010-09-061-0/+56
| | | | | | This can be used to run the test tool without installing it. It sets the environment variables and command line arguments up correctly to run the tool from the build directory.
* appliance: init script does 'ls -lR /dev' (verbose only)Richard Jones2010-09-061-1/+1
| | | | | It's useful to see what files are in /dev subdirectories at boot, eg. for looking at virtio-serial ports.
* daemon: Don't warn about 'long long' usage.Richard Jones2010-09-061-0/+2
| | | | | This removes a fatal warning (-Werror) which stops compilation on 32 bit machines.
* php: Remove 'make clean' rule in subdirectory.Richard Jones2010-09-051-2/+4
|
* Version 1.5.8.1.5.8Richard Jones2010-09-0417-768/+863
|
* PHP bindings.Richard Jones2010-09-0415-2/+733
| | | | | | Note that these are not complete on 32 bit architectures. PHP doesn't offer any convenient 64 bit type (on 32 bit). Therefore you should always use these PHP bindings on 64 bit.
* Define LIBGUESTFS_HAVE_<shortname> for C API functions.Richard Jones2010-09-043-9/+28
| | | | | | | | | | | | The actions each have a corresponding define, eg: #define LIBGUESTFS_HAVE_VGUUID 1 extern char *guestfs_vguuid (guestfs_h *g, const char *vgname); However functions which are for testing, debugging or deprecated do not have the corresponding define. Also a few functions are so basic (eg. guestfs_create) that there is no point defining a symbol for them.
* build: guestfs-structs.h was missing from libguestfs_la_SOURCES.Richard Jones2010-09-041-0/+1
|
* Add full docs pot file.Richard Jones2010-09-044-6/+51308
|
* Allow manual pages and POD files to be translated.Richard Jones2010-09-029-2/+253
| | | | | | | | | | | | | | This uses the optional po4a package to split these files into PO files for translation, and reassemble afterwards. Note this creates an extra pot file (po-docs/libguestfs-docs.pot). We don't (yet) combine this with the main po/libguestfs.pot file. The 'libguestfs-docs.pot' file included in this commit is not the real thing, just a short cut down snippet for testing. The real thing is created if you update one of the dependent files and rebuild. Note also the dummy ja.po, for testing the principles.
* Add Dutch translation (RHBZ#629593).Geert Warrink2010-09-021-0/+3129
|
* ruby: Add Guestfs::Guestfs.new() method.Richard Jones2010-09-021-0/+4
| | | | | | This is a more standard way to create objects in Ruby. The old way was to call the module function Guestfs::create() which still works.
* perl: Document handle is a hashref.Richard Jones2010-09-021-0/+18
| | | | For details see commit eb566f7dc7974b42ac65729a2e5e5bcee329a0a9.
* perl: Add documentation about testing availability of methods and features.Richard Jones2010-09-021-0/+31
|
* build: Link static -ltinfo into guestfish.static binary.Richard Jones2010-09-011-1/+1
|
* Version 1.5.7.1.5.7Richard Jones2010-09-0114-1222/+1321
|
* fish: Add missing header file to sources.Richard Jones2010-09-011-0/+1
|
* ocaml: Add test for progress notification callbacks.Richard Jones2010-09-013-2/+50
|
* debug: Add 'debug progress' command.Richard Jones2010-09-011-0/+33
| | | | | This debugging command generates progress notification messages, used for testing purposes.
* debug: Arrange prototypes in alphabetical order.Richard Jones2010-09-011-1/+1
|
* daemon: Enable debug command by default.Richard Jones2010-09-012-32/+8
| | | | | | | The debug command is useful for internal testing, and so should be enabled by default in all builds. Note that it is still *not* part of the stable ABI.
* Consistent use of 'void *opaque' to refer to opaque pointer in C API.Richard Jones2010-09-012-11/+11
| | | | | | We inconsistently used 'void *data' or 'void *opaque' all over to refer to the same thing. Use 'void *opaque' in all places in the published API and documentation.
* resize: Add progress bar to virt-resize.Richard Jones2010-09-011-6/+23
| | | | | | | | | | | | | | With this commit you will see a plain progress bar during the lengthy copy operations, similar to below: Summary of changes: /dev/sda1: partition will be left alone /dev/sda2: partition will be resized from 7.5G to 9.5G /dev/sda2: content will be expanded using the 'pvresize' method Copying /dev/sda1 ... [############################################################################] Copying /dev/sda2 ... [########################################------------------------------------]
* perl: bindings to progress callback.Richard Jones2010-09-011-3/+77
|
* ocaml: bindings to progress callback.Richard Jones2010-09-012-2/+120
|
* Implement private data area.Richard Jones2010-09-015-0/+128
| | | | | | | | | The private data area is a hash table which is associated with libguestfs handles, that C callers may use to store arbitrary data for the lifetime of the handle. Later the OCaml bindings will use this in order to implement callbacks.
* fish: Implement progress bars in guestfish.Richard Jones2010-09-018-1/+375
| | | | | | | | | | | | | | | | | The progress bar is updated 3 times per second, and is not displayed at all for operations which take less than two seconds. You can disable progress bars by using the flag --no-progress-bars, and you can enable progress bars in non-interactive sessions with the flag --progress-bars. A good way to test this is to use the following command: guestfish --progress-bars \ -N disk:10G \ zero-device /dev/sda (adjust "10G" to get different lengths of time).
* fish: Detect UTF-8 output and open termcap/terminfo database.Richard Jones2010-09-012-0/+37
| | | | | | Provide a generic mechanism within guestfish to detect if output if UTF-8 and to open the termcap (or terminfo) database for the current terminal type.
* Add progress messages to download command.Richard Jones2010-09-012-1/+28
|
* Add progress messages to zero-device command.Richard Jones2010-09-012-6/+17
|
* Add progress messages to zero command.Richard Jones2010-09-012-2/+4
|
* Add progress messages to fill-pattern command.Richard Jones2010-09-012-1/+2
|
* Add progress messages to fill command.Richard Jones2010-09-012-1/+2
|