diff --git a/ChangeLog b/ChangeLog index 67b1137f0efa05ee112137ca1d2f56312891d673..33441c327a744c3cde4eea1b599398f10324142e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Thu Jan 26 13:10:43 CET 2006 Daniel Veillard + + * TODO: updated + * docs/search.php: use the new web site design + * python/generator.py: fix a generation bug on python keyword + Tue Jan 24 11:44:53 CET 2006 Karel Zak * src/libvir_sym.version: add virDeomainRestore and virDomainSave diff --git a/TODO b/TODO index 3c30be02fa70e8ee89c0b61e2bdfdd251ec72422..25d83fc4f38735113f76228da10bbaa6a9b5badb 100644 --- a/TODO +++ b/TODO @@ -1,4 +1,22 @@ -- nearly everything at this point +Absolute TODOs: +- fix the python bindings +- Create() API, how do we best keep flexibility and allow various + specific environment and space for evolution (VMX) +- thread protection, reentrancy, refcounting, etc ... +- documentation and examples on using the toolkit +- Error API. probably similar to libxml2 structured API + +TODO: +- track change of xend API, XML-RPC, UUID based lookup and naming +- API for the Node: extracting informations, selecting scheduling policy +- better resources allocation APIs (%CPU, set memory) + +Probable TODOs: +- event on big domain state change (create, crashed, paused, shutdown, destroy) +- bindings for more languages + +Would-be-nice TODO: +- support for QEmu and other virtualization engines Done: - make dist and make rpm targets diff --git a/docs/search.php b/docs/search.php index a8b034c3052769ca436002bc95b03a9ab3f8af79..6e2ef9d5fa6eb5755ae24620e5ca553739d6abaf 100644 --- a/docs/search.php +++ b/docs/search.php @@ -1,63 +1,17 @@ - - - - - - -Search the documentation on Libvir.org - - - - - -
-Red Hat Logo -
-

Libvir the virtualization library

-

Search engine

-
-
- - -
- - - -
Main Menu
- - - -
API Indexes
- - - -
Related links
-
+ + + + + + Search the documentation on Libvir.org + + +
+
+
+

+
+
- -
- + + + +
+

+
+ + - diff --git a/python/generator.py b/python/generator.py index 59b42678ea76bd6a20f6c131a76b352b5f705d0c..b489b568d26afe9a4970743eeaa4cf6e09e51f47 100755 --- a/python/generator.py +++ b/python/generator.py @@ -134,6 +134,8 @@ class docParser: self.function_arg_info = None if attrs.has_key('name'): self.function_arg_name = attrs['name'] + if self.function_arg_name == 'from': + self.function_arg_name = 'frm' if attrs.has_key('type'): self.function_arg_type = attrs['type'] if attrs.has_key('info'):