On Tue, Mar 20, 2018 at 12:36:37PM +0000, Daniel P. Berrangé wrote:
The https:// protocol is much more reliably usable than git:// when
faced with unreasonably strict firewalls. The
libvirt.org web server is
now setup to support the smart https:// protocol, which is just as fast
as git://, so change all the docs to use https://
Signed-off-by: Daniel P. Berrangé <berrange(a)redhat.com>
---
README-hacking | 2 +-
docs/csharp.html.in | 2 +-
docs/devguide.html.in | 6 +++---
docs/downloads.html.in | 9 +++++++++
docs/hacking.html.in | 2 +-
docs/java.html.in | 2 +-
docs/php.html.in | 2 +-
docs/virshcmdref.html.in | 2 +-
8 files changed, 18 insertions(+), 9 deletions(-)
[...]
diff --git a/docs/downloads.html.in b/docs/downloads.html.in
index 6657e21d02..a71aa52c9c 100644
--- a/docs/downloads.html.in
+++ b/docs/downloads.html.in
@@ -516,6 +516,15 @@
Each module can be cloned anonymously using:
</p>
+ <pre>
+git clone
https://libvirt.org/git/[module name].git</pre>
+
+ <p>
+ The <code>git://</code> protocol is also available if desired, but
+ <code>https://</code> is encouraged, since it is more reliable when
+ faced with strict firewalls
s/strict firewalls/strict firewalls./
Reviewed-by: Pavel Hrdina <phrdina(a)redhat.com>