summaryrefslogtreecommitdiffstats
path: root/po
Commit message (Collapse)AuthorAgeFilesLines
...
* Version 1.3.14.1.3.14Richard Jones2010-05-2412-7339/+7047
|
* generator: Check parameters are not NULL (RHBZ#501893).Richard Jones2010-05-201-0/+1
| | | | | | | | | | | | | | This adds additional tests to check that several types of parameter including String are not NULL when passed to the C functions. Previously this would cause a segfault inside libguestfs. With this change, you get an error message / exception. Of the possible pointer parameters, only OptString is now permitted to be NULL. This change does not affect the Perl bindings. This is because Perl XS code was already adding similar checks if you passed undef into a parameter expecting a string.
* Update Spanish translations (RHBZ#593292).Daniel Cabrera2010-05-181-694/+1398
|
* Version 1.3.13.1.3.13Richard Jones2010-05-1512-13/+13
|
* Update PO files.Richard Jones2010-05-151-1513/+873
|
* Updated Spanish translations (RHBZ#592360).Richard Jones2010-05-141-897/+1610
|
* Version 1.3.12, update PO files.1.3.12Richard Jones2010-05-1412-6916/+7511
|
* Unify supermin appliance building using febootstrap 2.7Richard Jones2010-05-131-1/+0
|
* Update PO files, including extra strings from Perl files.Richard Jones2010-05-1212-25/+6098
|
* po: Include strings from Perl programs in the PO files (RHBZ#559963).Richard Jones2010-05-121-12/+12
| | | | | | | | | xgettext will only recognize '*.pl' as being a Perl file (otherwise it treats it as a C file and does not correctly find any strings in it). This commit also fixes two actual bugs that xgettext found in the strings in our Perl programs.
* po: Don't generate po/Makevars file and include Perl keywords (RHBZ#559963).Richard Jones2010-05-121-0/+43
| | | | | | | | | I don't see a reason to autogenerate po/Makevars, and in the earlier commit which changed this file to being autogenerated we accidentally lost the special Perl keywords, copyright notice and bug reporting address. Fix all of that. This partially reverts commit febff9d2a35c4f40abbaf8943146476bdeac671e.
* Version 1.3.11.1.3.11Richard Jones2010-05-0812-914/+870
|
* Version 1.3.10.1.3.10Richard Jones2010-05-0712-1746/+998
|
* Update Spanish translations (RHBZ#588733).Daniel Cabrera2010-05-041-585/+1338
|
* Version 1.3.9.1.3.9Richard Jones2010-04-3012-13/+13
|
* Version 1.3.8.1.3.8Richard Jones2010-04-2712-1734/+1274
|
* Update Spanish translation (RHBZ#585961).Daniel Cabrera2010-04-261-582/+1344
|
* fish: Add 'man' command which opens the manual.Richard Jones2010-04-241-0/+1
|
* Version 1.3.7 - note: fixes a segfault in guestfish 1.3.6.1.3.7Richard Jones2010-04-2312-5569/+5628
|
* Version 1.3.6.1.3.6Richard Jones2010-04-2212-1989/+2043
|
* fish: Add -N option for making prepared disk images.Richard Jones2010-04-221-0/+1
| | | | | | | | | | | | | | | | | Previously you might have typed: $ guestfish ><fs> alloc test1.img 100M ><fs> run ><fs> part-disk /dev/sda mbr ><fs> mkfs ext4 /dev/sda1 now you can do the same with: $ guestfish -N fs:ext4 Some tests have also been updated to use this new functionality.
* Updated Spanish translations (RHBZ#584038).Daniel Cabrera2010-04-201-576/+1320
|
* Update PO files.1.3.5Richard Jones2010-04-1912-5101/+5291
|
* New APIs: base64-in and base64-out for uploading/downloading base64 content.Richard Jones2010-04-191-0/+1
|
* Version 1.3.41.3.4Richard Jones2010-04-1712-6352/+5794
|
* Update Spanish translations (RHBZ#582252).Daniel Cabrera2010-04-141-556/+1291
|
* Update PO files.1.3.3Richard Jones2010-04-1212-5910/+5250
|
* Updated Spanish translation (RHBZ#581501).Daniel Cabrera2010-04-121-560/+1294
|
* Version 1.3.21.3.2Richard Jones2010-04-1012-5173/+5637
|
* Version 1.3.1.1.3.1Richard Jones2010-04-0812-5437/+5592
|
* New tool: virt-make-fs for creating filesystems on devices.Richard Jones2010-04-081-0/+1
|
* Update PO files.1.3.01.2.01.0.89Richard Jones2010-03-3012-13/+13
|
* Prepare for 1.0.88.1.0.88Richard Jones2010-03-2612-301/+301
|
* Update PO files.Richard Jones2010-03-251-1233/+532
|
* Update Spanish translation of libguestfs (RHBZ#576876).Daniel Cabrera2010-03-251-536/+1238
|
* Version 1.0.87.1.0.87Richard Jones2010-03-2312-6770/+6470
|
* New tools: virt-resize and virt-list-partitions.Richard Jones2010-03-231-0/+2
| | | | | | | | Virt-resize is the main contribution here, a program which can be used to expand and shrink partitions in disk images. Virt-list-partitions is used as an ancillary tool for planning resize operations.
* New APIs: Query the relationship between LVM objects.Richard Jones2010-03-181-0/+1
| | | | | | | | | These calls allow you to query the relationship between LVM objects, for example, which PVs contain a VG, or which LVs are contained in a VG. See the example / test program 'regressions/test-lvm-mapping.pl' for an example of how to do this from Perl.
* Rewrite libguestfs-supermin-helper in C.Richard Jones2010-03-121-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libguestfs-supermin-helper was previously a shell script. Although we had steadily optimized it, there were a number of intractable hot spots: (1) cpio still reads input files in 512 byte chunks; this is *very* pessimal behaviour, particularly when SELinux is enabled. (2) the hostfiles globbing was done very inefficiently by the shell, with the shell rereading the same directory over and over again. This is a rewrite of this shell script in C. It is approximately 3 times faster without SELinux, and has an even greater speed difference with SELinux. The main features are: (a) It never frees memory, making it simpler. The program is designed to run and exit in sub-second times, so this is acceptable. (b) It caches directory reads, making the globbing of host files much faster (measured this as ~ 4 x speed up). (c) It doesn't use external cpio, but instead contains code to write newc format cpio files, which is all that the kernel can read. Unlike cpio, this code uses large buffers for reads and writes. (d) Ignores missing or unreadable hostfiles, whereas cpio gave a warning. (e) Checks all return values from system calls. (f) With --verbose flag, it will print messages timing itself. This passes all tests. Updated with feedback from Jim Meyering.
* Spanish translation of libguestfs (RHBZ#570181).Daniel Cabrera2010-03-031-0/+2814
|
* Prepare for version 1.0.85.1.0.85Richard Jones2010-03-0111-3029/+2457
| | | | Update PO files.
* Updated Polish translations (RHBZ#502533).Piotr Drąg2010-03-011-94/+4
|
* Remove bogus msgstr from kn.po.Richard Jones2010-02-251-5/+0
|
* Update PO files.Richard Jones2010-02-245-678/+153
|
* Added Kannada translations (RHBZ#567860).Shankar Prasad2010-02-241-0/+2231
|
* Spin off hivex as a separate upstream project.Richard Jones2010-02-221-3/+0
| | | | | | | | | | | | | | This commit makes the semi-independent hivex library into a separate upstream project. The git repo for hivex is now: http://git.annexia.org/?p=hivex.git;a=summary Downloads of hivex are available here: http://libguestfs.org/download/ All questions, patches, bugs etc should be sent to the libguestfs mailing list and bug tracker.
* Update PO files.Richard Jones2010-02-165-135/+135
|
* Add Hindi translations (RHBZ#565759).Rajesh Ranjan2010-02-161-0/+2214
|
* Version 1.0.84.1.0.84Richard Jones2010-02-125-2261/+2325
|
* Remove invalid Plural-Forms header from ml.po.Richard Jones2010-02-081-1/+0
|