Cosmetic doc improvements

* AUTHORS: indicate that the Logo is by Diana Fong
* docs/index.py: modify to also index subprojects pages
Daniel
This commit is contained in:
Daniel Veillard 2008-04-24 07:56:37 +00:00
parent c6b067d0c3
commit bc4dacb286
5 changed files with 18 additions and 10 deletions

View File

@ -8,11 +8,11 @@ The libvirt project was initiated by:
The primary maintainers for various code sub-systems / drivers The primary maintainers for various code sub-systems / drivers
are: are:
Daniel Veillard <veillard@redhat.com> (xen & everything else) Daniel Veillard <veillard@redhat.com>
Karel Zak <kzak@redhat.com> (virsh tool) Karel Zak <kzak@redhat.com> (virsh tool)
Daniel Berrange <berrange@redhat.com> (test & qemu drivers) Daniel Berrange <berrange@redhat.com>
Mark McLoughlin <markmc@redhat.com> (network driver) Mark McLoughlin <markmc@redhat.com> (network driver)
Richard W.M. Jones <rjones@redhat.com> (remote driver) Richard W.M. Jones <rjones@redhat.com>
Patches have also been contributed by: Patches have also been contributed by:
@ -45,5 +45,6 @@ Patches have also been contributed by:
[....send patches to get your name here....] [....send patches to get your name here....]
The libvirt Logo was designed by Diana Fong
-- End -- End

View File

@ -1,3 +1,8 @@
Thu Apr 24 09:54:19 CEST 2008 Daniel Veillard <veillard@redhat.com>
* 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 <berrange@redhat.com> Wed Apr 23 15:38:11 EST 2008 Daniel P. Berrange <berrange@redhat.com>
* docs/Makefile.am, docs/news.xsl: Fix generation of NEWS file * docs/Makefile.am, docs/news.xsl: Fix generation of NEWS file

6
NEWS
View File

@ -4,7 +4,7 @@
Note that this is automatically generated from the news webpage at: Note that this is automatically generated from the news webpage at:
http://libvirt.org/news.html http://libvirt.org/news.html
Releases
0.4.2: Apr 8 2008: 0.4.2: Apr 8 2008:
- New features: memory operation for QEmu/KVM driver (Cole Robinson), - New features: memory operation for QEmu/KVM driver (Cole Robinson),
new routed networking schemas (Mads Olesen) new routed networking schemas (Mads Olesen)
@ -39,9 +39,9 @@ Releases
driver (Cole Robinson), xen and hvm added to test driver capabilities driver (Cole Robinson), xen and hvm added to test driver capabilities
(Cole Robinson) (Cole Robinson)
- Code cleanup: remove unused getopt header (Jim Meyering), mark more - 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), 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: 0.4.1: Mar 3 2008:

View File

@ -67,14 +67,14 @@ void <a href="#virConnResetLastError">virConnResetLastError</a> (<a href="libvi
int domain : What part of the library raised this error int domain : What part of the library raised this error
char * message : human-readable informative error message char * message : human-readable informative error message
<a href="libvirt-virterror.html#virErrorLevel">virErrorLevel</a> level : how consequent is the error <a href="libvirt-virterror.html#virErrorLevel">virErrorLevel</a> level : how consequent is the error
<a href="libvirt-libvirt.html#virConnectPtr">virConnectPtr</a> conn : the connection if available <a href="libvirt-libvirt.html#virConnectPtr">virConnectPtr</a> conn : connection if available, see note above
<a href="libvirt-libvirt.html#virDomainPtr">virDomainPtr</a> dom : the domain if available <a href="libvirt-libvirt.html#virDomainPtr">virDomainPtr</a> dom : domain if available, see note above
char * str1 : extra string information char * str1 : extra string information
char * str2 : extra string information char * str2 : extra string information
char * str3 : extra string information char * str3 : extra string information
int int1 : extra number information int int1 : extra number information
int int2 : extra number information int int2 : extra number information
<a href="libvirt-libvirt.html#virNetworkPtr">virNetworkPtr</a> net : the network if available <a href="libvirt-libvirt.html#virNetworkPtr">virNetworkPtr</a> net : network if available, see note above
} virError; } virError;
</pre><p/> </pre><p/>
</div> </div>

View File

@ -1027,7 +1027,9 @@ def analyzeHTML(doc, resource):
def analyzeHTMLPages(): def analyzeHTMLPages():
ret = 0 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: for html in HTMLfiles:
if html[0:3] == "API": if html[0:3] == "API":
continue continue