<feed xmlns='http://www.w3.org/2005/Atom'>
<title>libguestfs.git, branch 1.9.9</title>
<subtitle>[MIRROR] library for accessing and modifying guest disk images</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rjones/public_git/libguestfs.git/'/>
<entry>
<title>Version 1.9.9.</title>
<updated>2011-03-04T10:15:49+00:00</updated>
<author>
<name>Richard W.M. Jones</name>
<email>rjones@redhat.com</email>
</author>
<published>2011-03-04T09:59:15+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rjones/public_git/libguestfs.git/commit/?id=290e8864fff8a390d6bbbe20fe9781a03edb4c6a'/>
<id>290e8864fff8a390d6bbbe20fe9781a03edb4c6a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix inspection code when PCRE or hivex is missing.</title>
<updated>2011-03-03T13:23:34+00:00</updated>
<author>
<name>Richard W.M. Jones</name>
<email>rjones@redhat.com</email>
</author>
<published>2011-03-03T13:23:23+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rjones/public_git/libguestfs.git/commit/?id=2b26c7f721fc8ed2e6f64963289981ac286c02aa'/>
<id>2b26c7f721fc8ed2e6f64963289981ac286c02aa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>java: Add a test of g.list_filesystems (a function that returns a Map).</title>
<updated>2011-03-02T05:21:36+00:00</updated>
<author>
<name>Richard W.M. Jones</name>
<email>rjones@redhat.com</email>
</author>
<published>2011-03-02T05:11:10+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rjones/public_git/libguestfs.git/commit/?id=21fef55ca4907aa9872754f20320c24c7f8a5fac'/>
<id>21fef55ca4907aa9872754f20320c24c7f8a5fac</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>java: Fix generated functions that return RHashtable.</title>
<updated>2011-03-02T05:21:36+00:00</updated>
<author>
<name>Richard W.M. Jones</name>
<email>rjones@redhat.com</email>
</author>
<published>2011-03-02T04:49:12+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rjones/public_git/libguestfs.git/commit/?id=eb54a7ede43d9275f10db6fce1472256550da0eb'/>
<id>eb54a7ede43d9275f10db6fce1472256550da0eb</id>
<content type='text'>
Creating a HashMap directly from JNI is possible but very tedious
(see: http://java.sun.com/docs/books/jni/html/fldmeth.html#26254)

Instead we use the existing code to return hashes from JNI as plain
String[], then add some code in the Java wrapper to convert these to
HashMap&lt;String,String&gt;.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Creating a HashMap directly from JNI is possible but very tedious
(see: http://java.sun.com/docs/books/jni/html/fldmeth.html#26254)

Instead we use the existing code to return hashes from JNI as plain
String[], then add some code in the Java wrapper to convert these to
HashMap&lt;String,String&gt;.
</pre>
</div>
</content>
</entry>
<entry>
<title>java: Return Map&lt;String,String&gt; for RHashtable functions.</title>
<updated>2011-03-02T05:21:36+00:00</updated>
<author>
<name>Richard W.M. Jones</name>
<email>rjones@redhat.com</email>
</author>
<published>2011-03-02T04:33:39+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rjones/public_git/libguestfs.git/commit/?id=0b2e45da609002d44cbbf689cfdee252e6806648'/>
<id>0b2e45da609002d44cbbf689cfdee252e6806648</id>
<content type='text'>
There's no point returning the specific HashMap type here.
Return the generic interface type instead.

Note that no users are actually calling these functions yet,
since at present they always fail.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There's no point returning the specific HashMap type here.
Return the generic interface type instead.

Note that no users are actually calling these functions yet,
since at present they always fail.
</pre>
</div>
</content>
</entry>
<entry>
<title>java: Fix a minor whitespace error in generated code.</title>
<updated>2011-03-02T05:21:27+00:00</updated>
<author>
<name>Richard W.M. Jones</name>
<email>rjones@redhat.com</email>
</author>
<published>2011-03-02T04:30:30+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rjones/public_git/libguestfs.git/commit/?id=ec62f1127ec4f8609745f9d08b62c65e0ccbd154'/>
<id>ec62f1127ec4f8609745f9d08b62c65e0ccbd154</id>
<content type='text'>
In functions that don't have javadoc, the function prototype wasn't
being indented correctly.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In functions that don't have javadoc, the function prototype wasn't
being indented correctly.
</pre>
</div>
</content>
</entry>
<entry>
<title>java: Remove old test file if one was left around.</title>
<updated>2011-03-02T05:11:55+00:00</updated>
<author>
<name>Richard W.M. Jones</name>
<email>rjones@redhat.com</email>
</author>
<published>2011-03-02T05:10:31+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rjones/public_git/libguestfs.git/commit/?id=80aad709954cc4a3a294200e242876599047cef8'/>
<id>80aad709954cc4a3a294200e242876599047cef8</id>
<content type='text'>
If a test.img file was left over from a previous run, then it
would cause the subsequent test to fail.  Therefore remove any
old test.img file.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If a test.img file was left over from a previous run, then it
would cause the subsequent test to fail.  Therefore remove any
old test.img file.
</pre>
</div>
</content>
</entry>
<entry>
<title>java: Enable assertions when doing 'make check'.</title>
<updated>2011-03-02T05:11:55+00:00</updated>
<author>
<name>Richard W.M. Jones</name>
<email>rjones@redhat.com</email>
</author>
<published>2011-03-02T05:08:20+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rjones/public_git/libguestfs.git/commit/?id=db98ac041ec36c4e2ce322d336f5792fa8e6922d'/>
<id>db98ac041ec36c4e2ce322d336f5792fa8e6922d</id>
<content type='text'>
It turns out that Java assertions are disabled by default.  You have
to add the 'java -ea' flag to the JVM.  Who knew ..?

Because of this oversight, the tests weren't actually performing the
assertions that we wanted (although in fact none of the assertions
were failing).

This change enables assertions when running the tests.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It turns out that Java assertions are disabled by default.  You have
to add the 'java -ea' flag to the JVM.  Who knew ..?

Because of this oversight, the tests weren't actually performing the
assertions that we wanted (although in fact none of the assertions
were failing).

This change enables assertions when running the tests.
</pre>
</div>
</content>
</entry>
<entry>
<title>Version 1.9.8.</title>
<updated>2011-02-06T17:18:24+00:00</updated>
<author>
<name>Richard W.M. Jones</name>
<email>rjones@redhat.com</email>
</author>
<published>2011-02-06T17:18:24+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rjones/public_git/libguestfs.git/commit/?id=f455dc3814bf9f7e7e894ba81360acb0edd92464'/>
<id>f455dc3814bf9f7e7e894ba81360acb0edd92464</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>daemon: Ignore return value from chdir.</title>
<updated>2011-02-03T19:33:30+00:00</updated>
<author>
<name>Richard W.M. Jones</name>
<email>rjones@redhat.com</email>
</author>
<published>2011-02-03T19:33:30+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/rjones/public_git/libguestfs.git/commit/?id=8d7d7c4ecfd202e04d18736718e9c5bb125ce4f0'/>
<id>8d7d7c4ecfd202e04d18736718e9c5bb125ce4f0</id>
<content type='text'>
This updates commit 7eb012f3710bb554d5fc2c4229036901b0b5ad90.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This updates commit 7eb012f3710bb554d5fc2c4229036901b0b5ad90.
</pre>
</div>
</content>
</entry>
</feed>
