From: Daniel P. Berrange Date: Tue, 7 May 2013 10:18:10 +0000 (+0100) Subject: Fix namespace bugs in API docs, todo page & hv support page X-Git-Tag: CVE-2013-1962~190 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5e7b0e8757112f17ea616beb8d171bcc94a0f9c3;p=thirdparty%2Flibvirt.git Fix namespace bugs in API docs, todo page & hv support page The XSL for generating the API docs was missing the HTML5 namespace declarations. The todo and hvsupport scripts were also missing the HTML5 doctype / namespace declaration. Signed-off-by: Daniel P. Berrange --- diff --git a/docs/hvsupport.pl b/docs/hvsupport.pl index b415abc233..e31441eb1e 100755 --- a/docs/hvsupport.pl +++ b/docs/hvsupport.pl @@ -341,7 +341,9 @@ foreach my $drv (keys %{$groups{"virDriver"}->{drivers}}) { # Finally we generate the HTML file with the tables print < + + + libvirt API support matrix diff --git a/docs/newapi.xsl b/docs/newapi.xsl index af1dbc8fa7..d5b210efc1 100644 --- a/docs/newapi.xsl +++ b/docs/newapi.xsl @@ -6,6 +6,8 @@ Daniel Veillard --> \n"; -print "\n"; +print "\n"; +print "\n"; +print "\n"; print " \n"; if (defined $title) { print "

", &escape($title), "

\n";