From 5dd8c784465ab5651d76abcf056defbbc7bffa6b Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Fri, 21 Sep 2018 11:59:43 +0200 Subject: [PATCH] Switch all the links to https This does not fix broken links. --- README | 6 +++--- examples/domain_events.ml | 2 +- examples/get_all_domain_stats.ml | 2 +- examples/get_cpu_stats.ml | 2 +- examples/list_domains.ml | 2 +- examples/list_secrets.ml | 2 +- examples/node_info.ml | 2 +- libvirt/generator.pl | 4 ++-- libvirt/libvirt.ml | 4 ++-- libvirt/libvirt.mli | 10 +++++----- libvirt/libvirt_c_epilogue.c | 2 +- libvirt/libvirt_c_oneoffs.c | 2 +- libvirt/libvirt_c_prologue.c | 4 ++-- libvirt/libvirt_version.ml.in | 2 +- libvirt/libvirt_version.mli | 2 +- 15 files changed, 24 insertions(+), 24 deletions(-) diff --git a/README b/README index 38a1902..5ff9829 100644 --- a/README +++ b/README @@ -2,8 +2,8 @@ ocaml-libvirt ---------------------------------------------------------------------- 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. @@ -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 libvirt itself, see http://libvirt.org/html/ +For documentation on libvirt itself, see https://libvirt.org/html/ License diff --git a/examples/domain_events.ml b/examples/domain_events.ml index b180676..afe686f 100644 --- a/examples/domain_events.ml +++ b/examples/domain_events.ml @@ -2,7 +2,7 @@ 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 diff --git a/examples/get_all_domain_stats.ml b/examples/get_all_domain_stats.ml index 68b7160..9a4f4c2 100644 --- a/examples/get_all_domain_stats.ml +++ b/examples/get_all_domain_stats.ml @@ -1,6 +1,6 @@ (* Example of using Domain.get_all_domain_stats (virConnectGetAllDomainStats). * Usage: get_all_domain_stats - * http://libvirt.org/ + * https://libvirt.org/ *) open Printf diff --git a/examples/get_cpu_stats.ml b/examples/get_cpu_stats.ml index 27e1306..082cf72 100644 --- a/examples/get_cpu_stats.ml +++ b/examples/get_cpu_stats.ml @@ -1,6 +1,6 @@ (* List CPU stats for a domain. * Usage: get_cpu_stats domain - * http://libvirt.org/ + * https://libvirt.org/ *) open Printf diff --git a/examples/list_domains.ml b/examples/list_domains.ml index 87ccd8c..e8809b4 100644 --- a/examples/list_domains.ml +++ b/examples/list_domains.ml @@ -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. - http://libvirt.org/ + https://libvirt.org/ *) open Printf diff --git a/examples/list_secrets.ml b/examples/list_secrets.ml index d59175b..0094748 100644 --- a/examples/list_secrets.ml +++ b/examples/list_secrets.ml @@ -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. - http://libvirt.org/ + https://libvirt.org/ *) open Printf diff --git a/examples/node_info.ml b/examples/node_info.ml index 16ddf22..e733525 100644 --- a/examples/node_info.ml +++ b/examples/node_info.ml @@ -1,7 +1,7 @@ (* 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 diff --git a/libvirt/generator.pl b/libvirt/generator.pl index 1d9a61c..490ef9a 100755 --- a/libvirt/generator.pl +++ b/libvirt/generator.pl @@ -2,7 +2,7 @@ # # 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 @@ -213,7 +213,7 @@ print F <<'END'; /* 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 diff --git a/libvirt/libvirt.ml b/libvirt/libvirt.ml index 6d3edf9..fb5803a 100644 --- a/libvirt/libvirt.ml +++ b/libvirt/libvirt.ml @@ -1,6 +1,6 @@ (* 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 @@ -29,7 +29,7 @@ external get_version : ?driver:string -> unit -> int * int = "ocaml_libvirt_get_ 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] diff --git a/libvirt/libvirt.mli b/libvirt/libvirt.mli index c9b9723..117fd22 100644 --- a/libvirt/libvirt.mli +++ b/libvirt/libvirt.mli @@ -1,6 +1,6 @@ (** 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 @@ -22,7 +22,7 @@ {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} @@ -58,7 +58,7 @@ v} 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: {[ @@ -211,7 +211,7 @@ val uuid_string_length : int 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. @@ -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. - 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} *) diff --git a/libvirt/libvirt_c_epilogue.c b/libvirt/libvirt_c_epilogue.c index 497ae6d..29656a4 100644 --- a/libvirt/libvirt_c_epilogue.c +++ b/libvirt/libvirt_c_epilogue.c @@ -1,6 +1,6 @@ /* 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 diff --git a/libvirt/libvirt_c_oneoffs.c b/libvirt/libvirt_c_oneoffs.c index eb71d24..71ca78e 100644 --- a/libvirt/libvirt_c_oneoffs.c +++ b/libvirt/libvirt_c_oneoffs.c @@ -1,6 +1,6 @@ /* 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 diff --git a/libvirt/libvirt_c_prologue.c b/libvirt/libvirt_c_prologue.c index db8aca7..8533618 100644 --- a/libvirt/libvirt_c_prologue.c +++ b/libvirt/libvirt_c_prologue.c @@ -1,6 +1,6 @@ /* 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 @@ -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. - * 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 { \ diff --git a/libvirt/libvirt_version.ml.in b/libvirt/libvirt_version.ml.in index b70d09d..4fc570c 100644 --- a/libvirt/libvirt_version.ml.in +++ b/libvirt/libvirt_version.ml.in @@ -1,6 +1,6 @@ (* 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 diff --git a/libvirt/libvirt_version.mli b/libvirt/libvirt_version.mli index 79f8a70..15970c5 100644 --- a/libvirt/libvirt_version.mli +++ b/libvirt/libvirt_version.mli @@ -1,6 +1,6 @@ (* 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 -- 1.8.3.1