From bc4dacb2865874c278bed7ebf71335422bf6070c Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Thu, 24 Apr 2008 07:56:37 +0000 Subject: [PATCH] Cosmetic doc improvements * AUTHORS: indicate that the Logo is by Diana Fong * docs/index.py: modify to also index subprojects pages Daniel --- AUTHORS | 7 ++++--- ChangeLog | 5 +++++ NEWS | 6 +++--- docs/devhelp/libvirt-virterror.html | 6 +++--- docs/index.py | 4 +++- 5 files changed, 18 insertions(+), 10 deletions(-) diff --git a/AUTHORS b/AUTHORS index 4626302fda..8e353ca77d 100644 --- a/AUTHORS +++ b/AUTHORS @@ -8,11 +8,11 @@ The libvirt project was initiated by: The primary maintainers for various code sub-systems / drivers are: - Daniel Veillard (xen & everything else) + Daniel Veillard Karel Zak (virsh tool) - Daniel Berrange (test & qemu drivers) + Daniel Berrange Mark McLoughlin (network driver) - Richard W.M. Jones (remote driver) + Richard W.M. Jones Patches have also been contributed by: @@ -45,5 +45,6 @@ Patches have also been contributed by: [....send patches to get your name here....] +The libvirt Logo was designed by Diana Fong -- End diff --git a/ChangeLog b/ChangeLog index 04a097f202..edd59e89b9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Apr 24 09:54:19 CEST 2008 Daniel Veillard + + * AUTHORS: indicate that the Logo is by Diana Fong + * docs/index.py: modify to also index subprojects pages + Wed Apr 23 15:38:11 EST 2008 Daniel P. Berrange * docs/Makefile.am, docs/news.xsl: Fix generation of NEWS file diff --git a/NEWS b/NEWS index a8e55023b6..5ecc043404 100644 --- a/NEWS +++ b/NEWS @@ -4,7 +4,7 @@ Note that this is automatically generated from the news webpage at: http://libvirt.org/news.html -Releases + 0.4.2: Apr 8 2008: - New features: memory operation for QEmu/KVM driver (Cole Robinson), new routed networking schemas (Mads Olesen) @@ -39,9 +39,9 @@ Releases driver (Cole Robinson), xen and hvm added to test driver capabilities (Cole Robinson) - Code cleanup: remove unused getopt header (Jim Meyering), mark more - strings as translatable (Guido Günther and Jim Meyering), convert + strings as translatable (Guido Günther and Jim Meyering), convert error strings to something meaningful and translatable (Jim Meyering), - Linux Containers code cleanup, last error initializer (Guido Günther) + Linux Containers code cleanup, last error initializer (Guido Günther) 0.4.1: Mar 3 2008: diff --git a/docs/devhelp/libvirt-virterror.html b/docs/devhelp/libvirt-virterror.html index 49e9993903..79255b1281 100644 --- a/docs/devhelp/libvirt-virterror.html +++ b/docs/devhelp/libvirt-virterror.html @@ -67,14 +67,14 @@ void virConnResetLastError (virErrorLevel level : how consequent is the error - virConnectPtr conn : the connection if available - virDomainPtr dom : the domain if available + virConnectPtr conn : connection if available, see note above + virDomainPtr dom : domain if available, see note above char * str1 : extra string information char * str2 : extra string information char * str3 : extra string information int int1 : extra number information int int2 : extra number information - virNetworkPtr net : the network if available + virNetworkPtr net : network if available, see note above } virError;

diff --git a/docs/index.py b/docs/index.py index e9d0a43f6d..7df5405051 100755 --- a/docs/index.py +++ b/docs/index.py @@ -1027,7 +1027,9 @@ def analyzeHTML(doc, resource): def analyzeHTMLPages(): ret = 0 - HTMLfiles = glob.glob("*.html") + glob.glob("tutorial/*.html") + HTMLfiles = glob.glob("*.html") + glob.glob("tutorial/*.html") + \ + glob.glob("CIM/*.html") + glob.glob("ocaml/*.html") + \ + glob.glob("ruby/*.html") for html in HTMLfiles: if html[0:3] == "API": continue -- 2.39.5