From nobody Thu May 15 00:54:55 2025
Delivered-To: importer@patchew.org
Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28
as permitted sender) client-ip=209.132.183.28;
envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com;
Authentication-Results: mx.zohomail.com;
spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as
permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com
Return-Path:
Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by
mx.zohomail.com
with SMTPS id 1510852747733723.7681683268567;
Thu, 16 Nov 2017 09:19:07 -0800 (PST)
Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com
[10.5.11.15])
(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
(No client certificate requested)
by mx1.redhat.com (Postfix) with ESMTPS id F22E4C0587D3;
Thu, 16 Nov 2017 17:19:05 +0000 (UTC)
Received: from colo-mx.corp.redhat.com
(colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20])
by smtp.corp.redhat.com (Postfix) with ESMTPS id 4A35146E61;
Thu, 16 Nov 2017 17:19:05 +0000 (UTC)
Received: from lists01.pubmisc.prod.ext.phx2.redhat.com
(lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33])
by colo-mx.corp.redhat.com (Postfix) with ESMTP id 6A6021800BD1;
Thu, 16 Nov 2017 17:19:04 +0000 (UTC)
Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com
[10.5.11.12])
by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP
id vAGHJ3xf016458 for ;
Thu, 16 Nov 2017 12:19:03 -0500
Received: by smtp.corp.redhat.com (Postfix)
id B4FFA5C2FC; Thu, 16 Nov 2017 17:19:03 +0000 (UTC)
Received: from localhost.localdomain.com (unknown [10.42.22.189])
by smtp.corp.redhat.com (Postfix) with ESMTP id E52A560F87;
Thu, 16 Nov 2017 17:19:00 +0000 (UTC)
From: "Daniel P. Berrange"
To: libvir-list@redhat.com
Date: Thu, 16 Nov 2017 17:18:57 +0000
Message-Id: <20171116171857.29755-1-berrange@redhat.com>
X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12
X-loop: libvir-list@redhat.com
Subject: [libvirt] [PATCH] docs: don't use https in XML namespace URIs
X-BeenThere: libvir-list@redhat.com
X-Mailman-Version: 2.1.12
Precedence: junk
List-Id: Development discussions about the libvirt library & tools
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
MIME-Version: 1.0
Content-Transfer-Encoding: quoted-printable
Sender: libvir-list-bounces@redhat.com
Errors-To: libvir-list-bounces@redhat.com
X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15
X-Greylist: Sender IP whitelisted,
not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.32]);
Thu, 16 Nov 2017 17:19:06 +0000 (UTC)
X-ZohoMail: RSF_0 Z_629925259 SPT_0
Content-Type: text/plain; charset="utf-8"
The XML namespace URI for the QEMU/LXC drivers must use http as the protocol
otherwise it won't match the parser's expectations.
Signed-off-by: Daniel P. Berrange
Reviewed-by: Jiri Denemark
---
docs/drvlxc.html.in | 2 +-
docs/drvqemu.html.in | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/drvlxc.html.in b/docs/drvlxc.html.in
index 94c6b82cfd..58a336ed30 100644
--- a/docs/drvlxc.html.in
+++ b/docs/drvlxc.html.in
@@ -601,7 +601,7 @@ rather than creating new network namespace for the cont=
ainer. In this case privn
ignored.
-<domain type=3D'lxc' xmlns:lxc=3D'https://libvirt.org/schemas/domain/lx=
c/1.0'>
+<domain type=3D'lxc' xmlns:lxc=3D'http://libvirt.org/schemas/domain/lxc=
/1.0'>
...
<lxc:namespace>
<lxc:sharenet type=3D'netns' value=3D'red'/>
diff --git a/docs/drvqemu.html.in b/docs/drvqemu.html.in
index e2a0797cfb..cb41b505d7 100644
--- a/docs/drvqemu.html.in
+++ b/docs/drvqemu.html.in
@@ -546,7 +546,7 @@ $ virsh domxml-to-native qemu-argv demo.xml
(Since 0.8.3). In order to use the
XML additions, it is necessary to issue an XML namespace request
(the special xmlns:name
attribute) that
- pulls in https://libvirt.org/schemas/domain/qemu/1.0
;
+ pulls in http://libvirt.org/schemas/domain/qemu/1.0
;
typically, the namespace is given the name
of qemu
. With the namespace in place, it is then
possible to add an element <qemu:commandline>
@@ -566,7 +566,7 @@ $ virsh domxml-to-native qemu-argv demo.xml
and optional value
.
Example:
-<domain type=3D'qemu' xmlns:qemu=3D'https://libvirt.org/schemas/domain/=
qemu/1.0'>
+<domain type=3D'qemu' xmlns:qemu=3D'http://libvirt.org/schemas/domain/q=
emu/1.0'>
<name>QEmu-fedora-i686</name>
<memory>219200</memory>
<os>
--=20
2.14.3
--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list