]> xenbits.xensource.com Git - libvirt.git/commitdiff
docs/virsh: various minor fixes
authorMartin Kletzander <mkletzan@redhat.com>
Fri, 22 Jun 2012 13:16:44 +0000 (15:16 +0200)
committerMartin Kletzander <mkletzan@redhat.com>
Fri, 10 Aug 2012 08:58:54 +0000 (10:58 +0200)
List:
 - some old libvir/libvirt rename leftovers (the only problem can be
   if somebody parses 'virsh version' output really badly)
 - remove pointless tags specified in some pages that are not used

docs/api_extension.html.in
docs/pending.html.in
tools/virsh-host.c

index 8d74752aa9fc07fcfd8f79b7778c9e5d75353e4c..83c488c63612f3a3340d33247adf9c560625c3d6 100644 (file)
@@ -1,8 +1,4 @@
 <html>
-  <head>
-    <title>Implementing a new API in Libvirt</title>
-  </head>
-
   <body>
     <h1>Implementing a new API in Libvirt</h1>
 
index 7a31878c9df97d0dc038a8a4375f630e91f3c2fa..f2978bfda55dce778af01c46dea4c5bd568054ca 100644 (file)
@@ -1,8 +1,4 @@
 <html>
-  <head>
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
-    <title>Pending patches needing review</title>
-  </head>
   <body>
     <h1>Pending patches needing review</h1>
     <p> A list of pending patches needing review upstream is available
index d9d09b45f30d8370519a58dac9915b4060d9d4ec..b09d9f9d862cbe5b0df9274627564564bb467928 100644 (file)
@@ -762,7 +762,7 @@ cmdVersion(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
     includeVersion %= 1000000;
     minor = includeVersion / 1000;
     rel = includeVersion % 1000;
-    vshPrint(ctl, _("Compiled against library: libvir %d.%d.%d\n"),
+    vshPrint(ctl, _("Compiled against library: libvirt %d.%d.%d\n"),
              major, minor, rel);
 
     ret = virGetVersion(&libVersion, hvType, &apiVersion);
@@ -774,7 +774,7 @@ cmdVersion(vshControl *ctl, const vshCmd *cmd ATTRIBUTE_UNUSED)
     libVersion %= 1000000;
     minor = libVersion / 1000;
     rel = libVersion % 1000;
-    vshPrint(ctl, _("Using library: libvir %d.%d.%d\n"),
+    vshPrint(ctl, _("Using library: libvirt %d.%d.%d\n"),
              major, minor, rel);
 
     major = apiVersion / 1000000;