Switch all the links to https
authorPino Toscano <ptoscano@redhat.com>
Fri, 21 Sep 2018 09:59:43 +0000 (11:59 +0200)
committerRichard W.M. Jones <rjones@redhat.com>
Fri, 21 Sep 2018 10:02:18 +0000 (11:02 +0100)
This does not fix broken links.

15 files changed:
README
examples/domain_events.ml
examples/get_all_domain_stats.ml
examples/get_cpu_stats.ml
examples/list_domains.ml
examples/list_secrets.ml
examples/node_info.ml
libvirt/generator.pl
libvirt/libvirt.ml
libvirt/libvirt.mli
libvirt/libvirt_c_epilogue.c
libvirt/libvirt_c_oneoffs.c
libvirt/libvirt_c_prologue.c
libvirt/libvirt_version.ml.in
libvirt/libvirt_version.mli

diff --git a/README b/README
index 38a1902..5ff9829 100644 (file)
--- a/README
+++ b/README
@@ -2,8 +2,8 @@ ocaml-libvirt
 ----------------------------------------------------------------------
 
 Copyright (C) 2007-2009 Richard W.M. Jones, Red Hat Inc.
 ----------------------------------------------------------------------
 
 Copyright (C) 2007-2009 Richard W.M. Jones, Red Hat Inc.
-http://libvirt.org/ocaml/
-http://libvirt.org/
+https://libvirt.org/ocaml/
+https://libvirt.org/
 
 This is a complete set of OCaml bindings around libvirt, exposing all
 known functionality to OCaml programs.
 
 This is a complete set of OCaml bindings around libvirt, exposing all
 known functionality to OCaml programs.
@@ -28,7 +28,7 @@ Programming
 For documentation on these bindings, read libvirt.mli and/or 'make
 doc' and browse the HTML documentation in the html/ subdirectory.
 
 For documentation on these bindings, read libvirt.mli and/or 'make
 doc' and browse the HTML documentation in the html/ subdirectory.
 
-For documentation on libvirt itself, see http://libvirt.org/html/
+For documentation on libvirt itself, see https://libvirt.org/html/
 
 
 License
 
 
 License
index b180676..afe686f 100644 (file)
@@ -2,7 +2,7 @@
    Usage: domain_events [URI]
    (C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
    (C) Copyright 2013 Citrix Inc
    Usage: domain_events [URI]
    (C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
    (C) Copyright 2013 Citrix Inc
-   http://libvirt.org/
+   https://libvirt.org/
  *)
 
 open Printf
  *)
 
 open Printf
index 68b7160..9a4f4c2 100644 (file)
@@ -1,6 +1,6 @@
 (* Example of using Domain.get_all_domain_stats (virConnectGetAllDomainStats).
  * Usage: get_all_domain_stats
 (* Example of using Domain.get_all_domain_stats (virConnectGetAllDomainStats).
  * Usage: get_all_domain_stats
- * http://libvirt.org/
+ * https://libvirt.org/
  *)
 
 open Printf
  *)
 
 open Printf
index 27e1306..082cf72 100644 (file)
@@ -1,6 +1,6 @@
 (* List CPU stats for a domain.
  * Usage: get_cpu_stats domain
 (* List CPU stats for a domain.
  * Usage: get_cpu_stats domain
- * http://libvirt.org/
+ * https://libvirt.org/
  *)
 
 open Printf
  *)
 
 open Printf
index 87ccd8c..e8809b4 100644 (file)
@@ -1,7 +1,7 @@
 (* Simple demo program showing how to list out domains.
    Usage: list_domains [URI]
    (C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
 (* Simple demo program showing how to list out domains.
    Usage: list_domains [URI]
    (C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
-   http://libvirt.org/
+   https://libvirt.org/
  *)
 
 open Printf
  *)
 
 open Printf
index d59175b..0094748 100644 (file)
@@ -1,7 +1,7 @@
 (* Simple demo program showing how to list out secrets.
    Usage: list_secrets [URI]
    (C) Copyright 2018 Pino Toscano, Red Hat Inc.
 (* Simple demo program showing how to list out secrets.
    Usage: list_secrets [URI]
    (C) Copyright 2018 Pino Toscano, Red Hat Inc.
-   http://libvirt.org/
+   https://libvirt.org/
  *)
 
 open Printf
  *)
 
 open Printf
index 16ddf22..e733525 100644 (file)
@@ -1,7 +1,7 @@
 (* Simple demo program showing node info.
    Usage: node_info [URI]
    (C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
 (* Simple demo program showing node info.
    Usage: node_info [URI]
    (C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
-   http://libvirt.org/
+   https://libvirt.org/
  *)
 
 open Printf
  *)
 
 open Printf
index 1d9a61c..490ef9a 100755 (executable)
@@ -2,7 +2,7 @@
 #
 # OCaml bindings for libvirt.
 # (C) Copyright 2007-2015 Richard W.M. Jones, Red Hat Inc.
 #
 # OCaml bindings for libvirt.
 # (C) Copyright 2007-2015 Richard W.M. Jones, Red Hat Inc.
-# http://libvirt.org/
+# https://libvirt.org/
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
@@ -213,7 +213,7 @@ print F <<'END';
 
 /* OCaml bindings for libvirt.
  * (C) Copyright 2007-2015 Richard W.M. Jones, Red Hat Inc.
 
 /* OCaml bindings for libvirt.
  * (C) Copyright 2007-2015 Richard W.M. Jones, Red Hat Inc.
- * http://libvirt.org/
+ * https://libvirt.org/
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
index 6d3edf9..fb5803a 100644 (file)
@@ -1,6 +1,6 @@
 (* OCaml bindings for libvirt.
    (C) Copyright 2007-2015 Richard W.M. Jones, Red Hat Inc.
 (* OCaml bindings for libvirt.
    (C) Copyright 2007-2015 Richard W.M. Jones, Red Hat Inc.
-   http://libvirt.org/
+   https://libvirt.org/
 
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
 
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
@@ -29,7 +29,7 @@ external get_version : ?driver:string -> unit -> int * int = "ocaml_libvirt_get_
 let uuid_length = 16
 let uuid_string_length = 36
 
 let uuid_length = 16
 let uuid_string_length = 36
 
-(* http://caml.inria.fr/pub/ml-archives/caml-list/2004/07/80683af867cce6bf8fff273973f70c95.en.html *)
+(* https://caml.inria.fr/pub/ml-archives/caml-list/2004/07/80683af867cce6bf8fff273973f70c95.en.html *)
 type rw = [`R|`W]
 type ro = [`R]
 
 type rw = [`R|`W]
 type ro = [`R]
 
index c9b9723..117fd22 100644 (file)
@@ -1,6 +1,6 @@
 (** OCaml bindings for libvirt. *)
 (* (C) Copyright 2007-2015 Richard W.M. Jones, Red Hat Inc.
 (** OCaml bindings for libvirt. *)
 (* (C) Copyright 2007-2015 Richard W.M. Jones, Red Hat Inc.
-   http://libvirt.org/
+   https://libvirt.org/
 
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
 
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
@@ -22,7 +22,7 @@
    {2 Introduction and examples}
 
    This is a set of bindings for writing OCaml programs to
    {2 Introduction and examples}
 
    This is a set of bindings for writing OCaml programs to
-   manage virtual machines through {{:http://libvirt.org/}libvirt}.
+   manage virtual machines through {{:https://libvirt.org/}libvirt}.
 
    {3 Using libvirt interactively}
 
 
    {3 Using libvirt interactively}
 
@@ -58,7 +58,7 @@ v}
 
    The main modules are {!Libvirt.Connect}, {!Libvirt.Domain} and
    {!Libvirt.Network} corresponding respectively to the
 
    The main modules are {!Libvirt.Connect}, {!Libvirt.Domain} and
    {!Libvirt.Network} corresponding respectively to the
-   {{:http://libvirt.org/html/libvirt-libvirt.html}virConnect*, virDomain* and virNetwork* functions from libvirt}.
+   {{:https://libvirt.org/html/libvirt-libvirt.html}virConnect*, virDomain* and virNetwork* functions from libvirt}.
    For brevity I usually rename these modules like this:
 
 {[
    For brevity I usually rename these modules like this:
 
 {[
@@ -211,7 +211,7 @@ val uuid_string_length : int
 type rw = [`R|`W]
 type ro = [`R]
     (** These
 type rw = [`R|`W]
 type ro = [`R]
     (** These
-       {{:http://caml.inria.fr/pub/ml-archives/caml-list/2004/07/80683af867cce6bf8fff273973f70c95.en.html}phantom types}
+       {{:https://caml.inria.fr/pub/ml-archives/caml-list/2004/07/80683af867cce6bf8fff273973f70c95.en.html}phantom types}
        are used to ensure the type-safety of read-only
        versus read-write connections.
 
        are used to ensure the type-safety of read-only
        versus read-write connections.
 
@@ -1587,7 +1587,7 @@ exception Not_supported of string
     not supported at either compile or run time.  This applies to
     any libvirt function added after version 0.2.1.
 
     not supported at either compile or run time.  This applies to
     any libvirt function added after version 0.2.1.
 
-    See also {{:http://libvirt.org/hvsupport.html}http://libvirt.org/hvsupport.html}
+    See also {{:https://libvirt.org/hvsupport.html}https://libvirt.org/hvsupport.html}
 *)
 
 (** {3 Utility functions} *)
 *)
 
 (** {3 Utility functions} *)
index 497ae6d..29656a4 100644 (file)
@@ -1,6 +1,6 @@
 /* OCaml bindings for libvirt.
  * (C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
 /* OCaml bindings for libvirt.
  * (C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
- * http://libvirt.org/
+ * https://libvirt.org/
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
index eb71d24..71ca78e 100644 (file)
@@ -1,6 +1,6 @@
 /* OCaml bindings for libvirt.
  * (C) Copyright 2007-2017 Richard W.M. Jones, Red Hat Inc.
 /* OCaml bindings for libvirt.
  * (C) Copyright 2007-2017 Richard W.M. Jones, Red Hat Inc.
- * http://libvirt.org/
+ * https://libvirt.org/
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
index db8aca7..8533618 100644 (file)
@@ -1,6 +1,6 @@
 /* OCaml bindings for libvirt.
  * (C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
 /* OCaml bindings for libvirt.
  * (C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
- * http://libvirt.org/
+ * https://libvirt.org/
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -34,7 +34,7 @@ static value Val_virconnectcredential (const virConnectCredentialPtr cred);
 /* Use this around synchronous libvirt API calls to release the OCaml
  * lock, allowing other threads to run simultaneously.  'code' must not
  * perform any caml_* calls, run any OCaml code, or raise any exception.
 /* Use this around synchronous libvirt API calls to release the OCaml
  * lock, allowing other threads to run simultaneously.  'code' must not
  * perform any caml_* calls, run any OCaml code, or raise any exception.
- * http://web.archive.org/web/20030521020915/http://caml.inria.fr/archives/200106/msg00199.html
+ * https://web.archive.org/web/20030521020915/http://caml.inria.fr/archives/200106/msg00199.html
  */
 #define NONBLOCKING(code)                      \
   do {                                         \
  */
 #define NONBLOCKING(code)                      \
   do {                                         \
index b70d09d..4fc570c 100644 (file)
@@ -1,6 +1,6 @@
 (* Helper module containing the version of the OCaml bindings.
    (C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
 (* Helper module containing the version of the OCaml bindings.
    (C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
-   http://libvirt.org/
+   https://libvirt.org/
 
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
 
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
index 79f8a70..15970c5 100644 (file)
@@ -1,6 +1,6 @@
 (* OCaml bindings for libvirt.
    (C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
 (* OCaml bindings for libvirt.
    (C) Copyright 2007 Richard W.M. Jones, Red Hat Inc.
-   http://libvirt.org/
+   https://libvirt.org/
 
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
 
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public