From: Daniel Veillard Date: Tue, 28 Mar 2006 09:50:17 +0000 (+0000) Subject: * doc/site.xsl doc/libvir.html doc/*: added informations about X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=7743c7a7b15fe225523c463a1746c28ead609a5a;p=libvirt.git * doc/site.xsl doc/libvir.html doc/*: added informations about the Perl bindings, regenerated * python/libvirt_wrap.h: added a missing include. Daniel --- diff --git a/ChangeLog b/ChangeLog index 2955e1bcce..73534d0f15 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Tue Mar 28 11:49:59 CEST 2006 Daniel Veillard + + * doc/site.xsl doc/libvir.html doc/*: added informations about + the Perl bindings, regenerated + * python/libvirt_wrap.h: added a missing include. + Mon Mar 27 17:22:16 CEST 2006 Daniel Veillard * doc/*: updated module list and rebuilt diff --git a/docs/FAQ.html b/docs/FAQ.html index afcd87e88a..f2d2645227 100644 --- a/docs/FAQ.html +++ b/docs/FAQ.html @@ -77,4 +77,4 @@ via the pkg-config command line tool, like:

pkg-config libvirt --libs

-

+

diff --git a/docs/architecture.html b/docs/architecture.html index 5a30549fc3..f669d545e3 100644 --- a/docs/architecture.html +++ b/docs/architecture.html @@ -42,4 +42,4 @@ drivers present in driver.h:

  • xend_internal: implements the driver fun

Note that a given driver may only implement a subset of those functions, for example saving a domain state to disk and restoring it is only possible though the Xen Daemon, on the other hand all interfaces allow to query the -runtime state of a given domain.

+runtime state of a given domain.

diff --git a/docs/bugs.html b/docs/bugs.html index a82ee82619..894db001c7 100644 --- a/docs/bugs.html +++ b/docs/bugs.html @@ -7,4 +7,4 @@ page and follow the instructions. Patches with explanations and provided as attachments are really appreciated and will be discussed on the mailing list. If possible generate the patches by using cvs diff -u in a CVS checkout.

We expect to use Red Hat Bugzilla to track bugs for libvirt, though there isn't a libvirt software -module defined yet, in the meantime use the mailing-list, thanks !.

+module defined yet, in the meantime use the mailing-list, thanks !.

diff --git a/docs/downloads.html b/docs/downloads.html index d3866ae334..fbc1fdd215 100644 --- a/docs/downloads.html +++ b/docs/downloads.html @@ -7,4 +7,4 @@ available, first register onto the server:

cvs -d :pserver:anoncvs@l checkout the development tree with:

cvs -d :pserver:anoncvs@libvirt.org:2401/data/cvs co libvirt

Use ./autogen.sh to configure the local checkout, then make and make install, as usual. All normal cvs commands are now -available except commiting to the base.

+available except commiting to the base.

diff --git a/docs/errors.html b/docs/errors.html index 878a8f01b8..b2567d3dc0 100644 --- a/docs/errors.html +++ b/docs/errors.html @@ -66,4 +66,4 @@ this point, see the error.py example about it:

def handler(ctxt, err):
 
 libvirt.registerErrorHandler(handler, 'context') 

the second argument to the registerErrorHandler function is passed as the fist argument of the callback like in the C version. The error is a tuple -containing the same field as a virError in C, but cast to Python.

+containing the same field as a virError in C, but cast to Python.

diff --git a/docs/format.html b/docs/format.html index 3fc0d6c40d..f3fe7a6c20 100644 --- a/docs/format.html +++ b/docs/format.html @@ -65,4 +65,4 @@ children in no specific order:

  • source: indicating the bridge name
  • target: and optional target indicating the device name.

While the format may be extended in various ways as support for more hypervisor types and features are added, it is expected that this core subset -will remain functional in spite of the evolution of the library.

+will remain functional in spite of the evolution of the library.

diff --git a/docs/index.html b/docs/index.html index 61df3ed941..a0be79b7fa 100644 --- a/docs/index.html +++ b/docs/index.html @@ -83,6 +83,9 @@ mechanisms if needed.

  • Open bugs
  • +
  • + Perl bindings +
  • Xen project
  • diff --git a/docs/intro.html b/docs/intro.html index 80aea66c80..4555c97a40 100644 --- a/docs/intro.html +++ b/docs/intro.html @@ -27,4 +27,4 @@ and for applications focusing on virtualization of a single node (the only exception being domain migration between node capabilities which may need to be added at the libvirt level). Where possible libvirt should be extendable to be able to provide the same API for remote nodes, however this is not the -case at the moment, the code currently handle only local node accesses.

    +case at the moment, the code currently handle only local node accesses.

    diff --git a/docs/libvir.html b/docs/libvir.html index 265848cc71..e8b5f23b91 100644 --- a/docs/libvir.html +++ b/docs/libvir.html @@ -316,8 +316,12 @@ will remain functional in spite of the evolution of the library.

    Binding for Python

    Libvirt comes with direct support for the Python language (just make sure -you installed the libvirt-python package if not compiling from sources). The -Python binding should be complete and are mostly automatically generated from +you installed the libvirt-python package if not compiling from sources). +Also note that Daniel Berrange provides +bindings for Perl +too.

    + +

    The Python binding should be complete and are mostly automatically generated from the formal description of the API in xml. The bindings are articulated around 2 classes virConnect and virDomain mapping to the C types. Functions in the C API taking either type as argument then becomes methods diff --git a/docs/news.html b/docs/news.html index f877ffd75b..16c79cf701 100644 --- a/docs/news.html +++ b/docs/news.html @@ -30,4 +30,4 @@ and check the ChangeLog to gauge progresses.

    0.0.1: Dec 19 2005

    • First release
    • Basic management of existing Xen domains
    • Minimal autogenerated Python bindings
    • -

    +

    diff --git a/docs/python.html b/docs/python.html index b343bcebfc..b0ff43e904 100644 --- a/docs/python.html +++ b/docs/python.html @@ -1,8 +1,10 @@ Binding for Python

    Binding for Python

    Libvirt comes with direct support for the Python language (just make sure -you installed the libvirt-python package if not compiling from sources). The -Python binding should be complete and are mostly automatically generated from +you installed the libvirt-python package if not compiling from sources). +Also note that Daniel Berrange provides +bindings for Perl +too.

    The Python binding should be complete and are mostly automatically generated from the formal description of the API in xml. The bindings are articulated around 2 classes virConnect and virDomain mapping to the C types. Functions in the C API taking either type as argument then becomes methods @@ -47,4 +49,4 @@ from the C API, the only points to notice are:

    • the import of the modu
    • extracting and printing some informations about the domain using various methods associated to the virDomain class.
    • -

    +

    diff --git a/docs/site.xsl b/docs/site.xsl index e00a9cc44b..72a8b5b5f1 100644 --- a/docs/site.xsl +++ b/docs/site.xsl @@ -104,6 +104,7 @@