1. 15 9月, 2009 2 次提交
    • D
      Release of libvirt 0.7.1 · c4f6e806
      Daniel Veillard 提交于
      * configure.in docs/news.html.in libvirt.spec.in src/libvirt_public.syms:
        updates to new release
      * NEWS docs/devhelp/libvirt-libvirt.html docs/html/libvirt-libvirt.html
        docs/libvirt-api.xml docs/libvirt-refs.xml docs/news.html
        include/libvirt/libvirt.h: regenerated
      c4f6e806
    • D
      Rebuild API docs · e1d715ef
      Daniel P. Berrange 提交于
      e1d715ef
  2. 02 9月, 2009 1 次提交
    • M
      Secret manipulation API docs refresh & wire up python generator · 9dc3b993
      Miloslav Trmač 提交于
      Sample session:
      
      >>> import libvirt
      >>> c = libvirt.open('qemu:///session')
      
      >>> c.listSecrets()
      ['12247729-47d2-a783-88ce-b329d4781cd3', 'reee', 'abc']
      
      >>> s = c.secretDefineXML("<secret ephemeral='no' private='no'>\n<description>Something for use</description>\n<volume>/foo/bar</volume>\n</secret>\n")
      
      >>> s.UUIDString()
      '340c2dfb-811b-eda8-da9e-25ccd7bfd650'
      
      >>> s.XMLDesc()
      "<secret ephemeral='no' private='no'>\n  <uuid>340c2dfb-811b-eda8-da9e-25ccd7bfd650</uuid>\n  <description>Something for use</description>\n  <volume>/foo/bar</volume>\n</secret>\n"
      
      >>> s.setValue('abc\0xx\xffx')
      0
      
      >>> s.value()
      'abc\x00xx\xffx'
      
      >>> s.undefine()
      0
      
      * python/generator.py: Add rules for virSecret APIs
      * python/libvir.c, python/libvirt-python-api.xml: Manual impl of
        virSecretSetValue, virSecretGetValue$ and virConnectListSecrets APIs
      * python/libvirt_wrap.h, python/types.c: Wrapper for virSecret objects
      * docs/libvirt-api.xml, docs/libvirt-refs.xml,
        docs/html/libvirt-virterror.html, docs/html/libvirt-libvirt.html,
        docs/devhelp/libvirt-virterror.html, docs/devhelp/libvirt-libvirt.html:
        Re-generate with 'make api'
      9dc3b993
  3. 01 9月, 2009 1 次提交
  4. 05 8月, 2009 1 次提交
    • D
      Release of libvirt-0.7.0 · 22a5ebe4
      Daniel Veillard 提交于
      * configure.in NEWS docs/* libvirt.spec.in include/libvirt/libvirt.h:
        Release of 0.7.0
      * po/*.po*: updated and regenerated the localization pool
      22a5ebe4
  5. 01 7月, 2009 1 次提交
    • D
      Regenerated the documentation and localization files · 88b4cc5f
      Daniel Veillard 提交于
      * src/libvirt.c src/virterror.c: fix some missing comments in public
        modules.
      * docs/libvirt-api.xml docs/libvirt-refs.xml
        docs/devhelp/libvirt-libvirt.html docs/html/libvirt-libvirt.html:
        regenerated documentation
      * po/*: updated the polish localization and regenerated
      Daniel
      88b4cc5f
  6. 25 6月, 2009 1 次提交
  7. 30 5月, 2009 1 次提交
    • D
      release of libvirt-0.6.4 · 66220e3e
      Daniel Veillard 提交于
      * configure.in libvirt.spec.in NEWS docs/* po/*: release of
        libvirt-0.6.4
      * src/libvirt.c src/virterror.c: some comments cleanups
      Daniel
      66220e3e
  8. 29 5月, 2009 1 次提交
  9. 21 5月, 2009 1 次提交
  10. 13 5月, 2009 1 次提交
  11. 24 4月, 2009 2 次提交
    • D
      release of 0.6.3 · 9cae1d5e
      Daniel Veillard 提交于
      * NEWS configure.in libvirt.spec.in docs/*: release of 0.6.3
      * po/*: regenerated
      * src/libvirt.c src/virterror.c: fixed some function comments
      Daniel
      9cae1d5e
    • D
      Update of localizations and XML descriptions · 741feced
      Daniel Veillard 提交于
      * po/*: updated a could of locale, regenerated
      * docs/libvirt-api.xml docs/libvirt-refs.xml: regenerated too
      daniel
      741feced
  12. 19 4月, 2009 1 次提交
  13. 04 3月, 2009 1 次提交
  14. 31 1月, 2009 2 次提交
  15. 25 11月, 2008 1 次提交
    • D
      Release of 0.5.0 · 517ff04b
      Daniel Veillard 提交于
      * configure.in docs/* NEWS: release of 0.5.0
      * po/*: updated from the translators and merged
      * docs/apibuild.py src/libvirt.c: avoid some warnings at doc
        generation time
      daniel
      517ff04b
  16. 21 11月, 2008 1 次提交
  17. 18 11月, 2008 1 次提交
  18. 17 11月, 2008 1 次提交
  19. 23 10月, 2008 1 次提交
    • D
      Massive patch adding event APIs by Ben Guthro · 1509b802
      Daniel Veillard 提交于
      * include/libvirt/libvirt.h include/libvirt/libvirt.h.in
        src/libvirt.c src/libvirt_sym.version: new libvirt event entry
        points, big patch provided by Ben Guthro
      * Makefile.am configure.in src/driver.h src/event.c src/event.h
        src/internal.h src/libvirt.c src/libvirt_sym.version src/lxc_driver.c
        src/openvz_driver.c src/qemu_conf.h src/qemu_driver.c
        src/remote_internal.c src/storage_backend_fs.c src/test.c
        qemud/event.c qemud/event.h qemud/mdns.c qemud/qemud.c
        qemud/qemud.h qemud/remote.c qemud/remote_dispatch_localvars.h
        qemud/remote_dispatch_proc_switch.h qemud/remote_dispatch_prototypes.h
        qemud/remote_protocol.c qemud/remote_protocol.h
        qemud/remote_protocol.x proxy/Makefile.am python/generator.py:
        Not much is left untouched by the patch adding the events support
      * docs/libvirt-api.xml docs/libvirt-refs.xml
        docs/html/libvirt-libvirt.html: regenerated the docs
      * examples/domain-events/events-c/Makefile.am
        examples/domain-events/events-c/event-test.c: a test example
      * AUTHORS: added Ben Guthro
      daniel
      1509b802
  20. 10 10月, 2008 1 次提交
    • D
      virDomainDefineXML, and a few additional cleanups · f6803c96
      Daniel Veillard 提交于
      * include/libvirt/libvirt.h[.in] include/libvirt/virterror.h
        qemud/remote* src/driver.h src/libvirt.c src/libvirt_sym.version
        src/lxc_driver.c src/openvz_driver.c src/proxy_internal.c
        src/qemu_driver.c src/remote_internal.c src/test.c src/virsh.c
        src/xen_internal.c src/xen_unified.c src/xen_unified.h
        src/xend_internal.c src/xend_internal.h src/xm_internal.c
        src/xs_internal.c docs/*: cleanup virDomainCreateLinux into
        virDomainDefineXML, and a few additional cleanups
      Daniel
      f6803c96
  21. 24 9月, 2008 1 次提交
  22. 08 9月, 2008 1 次提交
  23. 01 8月, 2008 1 次提交
  24. 25 7月, 2008 1 次提交
    • D
      Remove Xen centric comments, rebuild the docs · 01fd287b
      Daniel Veillard 提交于
      * include/libvirt/libvirt.h include/libvirt/libvirt.h.in:
        remove Xen centric comments patch from Guido Günther
      * docs/apibuild.py: ignore VIR_DEPRECATED
      * docs/libvirt-*.xml docs/html/libvirt-*.html: regenerated the
        documentation for the API
      Daniel
      01fd287b
  25. 28 4月, 2008 1 次提交
  26. 26 4月, 2008 1 次提交
  27. 24 4月, 2008 2 次提交
  28. 04 4月, 2008 2 次提交
    • D
      doc and localization updates · 3a50451e
      Daniel Veillard 提交于
      * docs//* po/*: regenerated the documentation and reextracted the
        full set of localization strings to push to the translation team.
      Daniel
      3a50451e
    • D
      typos fixes · a528e973
      Daniel Veillard 提交于
      * docs//* src/conf.c src/hash.c src/libvirt.c src/proxy_internal.c
       src/remote_internal.c src/virsh.c src/xen_internal.c
       src/xend_internal.c src/xml.c: applied patch from Atsushi SAKAI
       fixing a lot of typos
      Daniel
      a528e973
  29. 18 3月, 2008 1 次提交
  30. 17 3月, 2008 2 次提交
  31. 14 3月, 2008 1 次提交
  32. 03 3月, 2008 1 次提交
  33. 06 2月, 2008 1 次提交
  34. 21 1月, 2008 1 次提交
    • D
      Remove docs/API*.html · d3043afe
      Daniel Veillard 提交于
      * docs/API* docs/api.xsl docs/site.xsl docs/Makefile.am: remove the
        generation of the API*.html files as it's not really useful here
      Daniel
      d3043afe