From 5e7b0e8757112f17ea616beb8d171bcc94a0f9c3 Mon Sep 17 00:00:00 2001 From: "Daniel P. Berrange" Date: Tue, 7 May 2013 11:18:10 +0100 Subject: [PATCH] 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 --- docs/hvsupport.pl | 4 +++- docs/newapi.xsl | 2 ++ docs/todo.pl | 5 +++-- 3 files changed, 8 insertions(+), 3 deletions(-) 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"; -- GitLab