summaryrefslogtreecommitdiffstats
path: root/po
Commit message (Collapse)AuthorAgeFilesLines
* Version 1.11.8.1.11.8Richard W.M. Jones2011-05-1814-7771/+7937
|
* Version 1.11.7.1.11.7Richard W.M. Jones2011-05-1714-7939/+8010
|
* Version 1.11.6.1.11.6Richard W.M. Jones2011-05-1214-15/+15
|
* Version 1.11.5.1.11.5Richard W.M. Jones2011-05-0914-782/+1286
|
* Rewrite virt-edit in C.Richard W.M. Jones2011-05-091-1/+1
|
* Version 1.11.4.1.11.4Richard W.M. Jones2011-05-0814-2913/+2913
|
* Version 1.11.3.1.11.3Richard W.M. Jones2011-04-2214-169/+169
|
* python: Rearrange C files for bindings.Richard W.M. Jones2011-04-221-0/+1
| | | | | | | Move the hand-written functions into two new files: guestfs-py.h and guestfs-py-byhand.c This is just code motion.
* Version 1.11.2.1.11.2Richard W.M. Jones2011-04-1814-15/+15
|
* Version 1.11.1.1.11.1Richard W.M. Jones2011-04-1614-1460/+1754
|
* inspect: Abstract out db_dump code for listing RPM applications.Richard W.M. Jones2011-04-141-0/+1
| | | | | | | | | | | There are two changes here: (1) The code for listing RPM applications ran db_dump and parsed the output. We abstract out that parsing code into a separate reusable module (src/dbdump.c). (2) The old db_dump parsing code used db_dump -p (printable) format. Instead use db_dump -k (hex) format so we can read binary fields.
* inspect: Split code into separate files.Richard W.M. Jones2011-04-141-0/+5
| | | | | | | | | | | | | | | | | The src/inspect.c file had grown rather large -- 3,500 lines. Split it across several files according to function. This is just moving code. After the split the files are more evenly divided: 536 src/inspect_apps.c 766 src/inspect.c 537 src/inspect_fs.c 404 src/inspect_fs_cd.c 785 src/inspect_fs_unix.c 535 src/inspect_fs_windows.c 3563 total
* inspect: Move shared PCRE match functions to separate file.Richard W.M. Jones2011-04-131-0/+1
| | | | This is just moving code around.
* Version 1.11.0.1.11.0Richard W.M. Jones2011-04-1214-225/+225
|
* Version 1.9.18.1.9.18Richard W.M. Jones2011-04-0914-3618/+1658
|
* Include po/Makefile.in.in in git, to avoid needing to rerun gettextize.Richard W.M. Jones2011-04-091-0/+444
|
* Rewrite virt-resize in OCaml.Richard W.M. Jones2011-04-091-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a fairly straightforward translation of Perl virt-resize into OCaml. It is bug-for-bug and feature-for-feature identical to the Perl version, except as noted below. The motivation is to have a more solid, high-level, statically safe compiled language to go forwards with fixing some of the harder bugs in virt-resize. In particular contracts between different parts of the program are now handled by statically typed structures checked at compile time, instead of the very ad-hoc unchecked hash tables used by the Perl version. OCaml and the ocaml-pcre library (Perl-Compatible Regular Expressions bindings for OCaml) are required. Extra features in this version: - 32 bit hosts are now supported. - We try hard to handle the case where the target disk is not "clean" (ie. all zeroes). It usually works for this case, whereas the previous version would usually fail. However it is still recommended that the system administrator creates a fresh blank disk for the target before running the program. - User messages are a bit more verbose and helpful. You can turn these off with the -q (--quiet) option. There is one lost feature: - Ability to specify >= T (terabytes) sizes in command line size expressions has been removed. This probably didn't work in the Perl version. Other differences: - The first partition on the target is no longer aligned; instead we place it at the same sector as on the source. I suspect that aligning it was causing the bootloader failures. - Because it's easier, we do more sanity checking on the source disk. This might lead to more failures, but they'd be failures you'd want to know about. - The order in which operations are performed has been changed to make it more logical. The user should not notice any functional difference, but debug messages will be quite a bit different. - virt-resize is a compiled binary, not a script.
* test-tool: Don't use static binary helper program, nor ISO.Richard W.M. Jones2011-04-061-1/+0
| | | | | | | | | | | | | | This simplifies the libguestfs-test-tool program down to essentials. Bugs most commonly occur when starting the appliance, so what we should concentrate on test is just that. Previously the test tool built a special static binary helper program, packaged it up in an ISO, then ran this inside the appliance. None of this really tested useful failure modes, but they did make the test tool itself harder to build, harder for users to run, and more brittle. This change also adds some more debugging of libguestfs state.
* Version 1.9.17.1.9.17Richard W.M. Jones2011-04-0514-8345/+9159
|
* Pull translations from Transifex.Richard W.M. Jones2011-04-021-0/+3735
| | | | New Ukrainian po-docs translation added.
* Version 1.9.16.1.9.16Richard W.M. Jones2011-04-0113-404/+404
|
* Version 1.9.15.1.9.15Richard W.M. Jones2011-04-0113-601/+692
|
* Add /etc/libguestfs-tools.conf configuration file.Richard W.M. Jones2011-03-311-0/+1
| | | | | This allows the default for --ro or --rw to be controlled for the three tools guestfish, guestmount and virt-rescue.
* Version 1.9.14.1.9.14Richard W.M. Jones2011-03-2813-274/+274
|
* Version 1.9.13.1.9.13Richard W.M. Jones2011-03-2413-7710/+7792
|
* Version 1.9.12.1.9.12Richard W.M. Jones2011-03-1813-235/+235
|
* Version 1.9.11.1.9.11Richard W.M. Jones2011-03-1513-1041/+1106
|
* New event API (RHBZ#664558).Richard W.M. Jones2011-03-151-0/+1
| | | | | | | | | | | | | 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.
* Version 1.9.10.1.9.10Richard W.M. Jones2011-03-0813-391/+391
|
* Version 1.9.9.1.9.9Richard W.M. Jones2011-03-0413-21/+21
|
* Version 1.9.8.1.9.8Richard W.M. Jones2011-02-0613-8379/+8930
|
* Version 1.9.7.1.9.7Richard W.M. Jones2011-01-3013-118/+118
|
* Version 1.9.6.1.9.6Richard W.M. Jones2011-01-2213-235/+300
|
* Version 1.9.51.9.5Richard W.M. Jones2011-01-1813-352/+352
|
* Version 1.9.4.1.9.4Richard W.M. Jones2011-01-1513-7138/+7443
|
* Version 1.9.3.1.9.3Richard W.M. Jones2011-01-1113-105/+170
|
* Version 1.9.2.1.9.2Richard W.M. Jones2011-01-0313-274/+274
|
* Version 1.9.1.1.9.1Richard W.M. Jones2010-12-3113-584/+586
|
* Update Punjabi translations (RHBZ#665358).Jaswinder Singh2010-12-231-1007/+1061
|
* Updated Polish translation (RHBZ#502533).Piotr Drąg2010-12-211-323/+250
|
* Version 1.9.0.1.9.0Richard W.M. Jones2010-12-1913-14/+14
|
* Update BUGS, PO files for 1.8.0.1.8.0stable-1.8Richard W.M. Jones2010-12-1913-92/+92
|
* Version 1.7.24.1.7.24Richard W.M. Jones2010-12-1613-6956/+7034
|
* Version 1.7.23.1.7.23Richard W.M. Jones2010-12-1213-105/+105
|
* Version 1.7.22.1.7.22Richard W.M. Jones2010-12-1113-244/+405
|
* Version 1.7.21.1.7.21Richard W.M. Jones2010-12-1013-534/+534
|
* Version 1.7.20.1.7.20Richard W.M. Jones2010-12-0713-92/+92
|
* Version 1.7.19.1.7.19Richard W.M. Jones2010-12-0513-7138/+7151
|
* Version 1.7.18.1.7.18Richard W.M. Jones2010-12-0113-235/+235
|
* Version 1.7.17.1.7.17Richard W.M. Jones2010-11-3013-430/+430
|