From a18d95449bcab62b0ed21ea8b93798c2e31bdf62 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Tue, 5 Jun 2018 11:38:08 -0400 Subject: [PATCH] Use https in links to the lttng.org website MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérémie Galarneau --- doc/man/common-footer.txt | 4 ++-- doc/man/lttng-crash.1.txt | 2 +- doc/man/lttng-relayd.8.txt | 2 +- doc/man/lttng-sessiond.8.txt | 2 +- doc/man/lttng.1.txt | 2 +- doc/quickstart.txt | 4 ++-- src/bin/lttng/commands/version.c | 2 +- src/common/defaults.h | 2 +- src/common/mi-lttng-3.0.xsd | 4 ++-- src/common/mi-lttng.c | 2 +- 10 files changed, 13 insertions(+), 13 deletions(-) diff --git a/doc/man/common-footer.txt b/doc/man/common-footer.txt index a3e38adaa..a44518f7a 100644 --- a/doc/man/common-footer.txt +++ b/doc/man/common-footer.txt @@ -6,8 +6,8 @@ https://bugs.lttng.org/projects/lttng-tools[LTTng bug tracker]. RESOURCES --------- -* http://lttng.org[LTTng project website] -* http://lttng.org/docs[LTTng documentation] +* https://lttng.org[LTTng project website] +* https://lttng.org/docs[LTTng documentation] * http://git.lttng.org[Git repositories] * http://github.com/lttng[GitHub organization] * http://ci.lttng.org/[Continuous integration] diff --git a/doc/man/lttng-crash.1.txt b/doc/man/lttng-crash.1.txt index 7c3ebcea6..b3982d039 100644 --- a/doc/man/lttng-crash.1.txt +++ b/doc/man/lttng-crash.1.txt @@ -15,7 +15,7 @@ SYNOPSIS DESCRIPTION ----------- -The http://lttng.org/[_Linux Trace Toolkit: next generation_] is an open +The https://lttng.org/[_Linux Trace Toolkit: next generation_] is an open source software package used for correlated tracing of the Linux kernel, user applications, and user libraries. diff --git a/doc/man/lttng-relayd.8.txt b/doc/man/lttng-relayd.8.txt index a4ac43431..6a1f0bee2 100644 --- a/doc/man/lttng-relayd.8.txt +++ b/doc/man/lttng-relayd.8.txt @@ -17,7 +17,7 @@ SYNOPSIS DESCRIPTION ----------- -The http://lttng.org/[_Linux Trace Toolkit: next generation_] is an open +The https://lttng.org/[_Linux Trace Toolkit: next generation_] is an open source software package used for correlated tracing of the Linux kernel, user applications, and user libraries. diff --git a/doc/man/lttng-sessiond.8.txt b/doc/man/lttng-sessiond.8.txt index e84aecc4c..07d087cb2 100644 --- a/doc/man/lttng-sessiond.8.txt +++ b/doc/man/lttng-sessiond.8.txt @@ -29,7 +29,7 @@ SYNOPSIS DESCRIPTION ----------- -The http://lttng.org/[_Linux Trace Toolkit: next generation_] is an open +The https://lttng.org/[_Linux Trace Toolkit: next generation_] is an open source software package used for correlated tracing of the Linux kernel, user applications, and user libraries. diff --git a/doc/man/lttng.1.txt b/doc/man/lttng.1.txt index 5e949e20d..bcd240762 100644 --- a/doc/man/lttng.1.txt +++ b/doc/man/lttng.1.txt @@ -16,7 +16,7 @@ SYNOPSIS DESCRIPTION ----------- -The http://lttng.org/[_Linux Trace Toolkit: next generation_] is an open +The https://lttng.org/[_Linux Trace Toolkit: next generation_] is an open source software package used for correlated tracing of the Linux kernel, user applications, and user libraries. diff --git a/doc/quickstart.txt b/doc/quickstart.txt index 018c27b2b..0e9751b59 100644 --- a/doc/quickstart.txt +++ b/doc/quickstart.txt @@ -17,7 +17,7 @@ See the README.md file for installation procedure or use the various Linux distribution packages. In order to trace the kernel, you'll need the lttng-modules 2.0 compiled and -installed. See http://lttng.org/lttng2.0 for more instructions for that part. +installed. See https://lttng.org/lttng2.0 for more instructions for that part. For user-space tracing, you'll need an instrumented application with lttng-ust 2.0. @@ -161,7 +161,7 @@ applications. However, if you run the session daemon under non-root user rights, only applications of that user will be traced. So, after instrumenting you applications with LTTng-ust 2.0 -(http://lttng.org/lttng2.0), upon startup, it will automatically register to +(https://lttng.org/lttng2.0), upon startup, it will automatically register to the session daemon. If there is none running, it will simply wait on a seperate thread for a session daemon to appear and then register. diff --git a/src/bin/lttng/commands/version.c b/src/bin/lttng/commands/version.c index f0b63a452..722804e8e 100644 --- a/src/bin/lttng/commands/version.c +++ b/src/bin/lttng/commands/version.c @@ -159,7 +159,7 @@ int cmd_version(int argc, const char **argv) MSG("lttng version " VERSION " - " VERSION_NAME "%s", GIT_VERSION[0] == '\0' ? "" : " - " GIT_VERSION); MSG("\n" VERSION_DESCRIPTION "\n"); - MSG("Web site: http://lttng.org"); + MSG("Web site: https://lttng.org"); MSG("\n%s", lttng_license); } diff --git a/src/common/defaults.h b/src/common/defaults.h index fabcf0852..e19881f6b 100644 --- a/src/common/defaults.h +++ b/src/common/defaults.h @@ -325,7 +325,7 @@ #define DEFAULT_RUN_AS_WORKER_NAME "lttng-runas" /* Default LTTng MI XML namespace. */ -#define DEFAULT_LTTNG_MI_NAMESPACE "http://lttng.org/xml/ns/lttng-mi" +#define DEFAULT_LTTNG_MI_NAMESPACE "https://lttng.org/xml/ns/lttng-mi" /* Default thread stack size; the default mandated by pthread_create(3) */ #define DEFAULT_LTTNG_THREAD_STACK_SIZE 2097152 diff --git a/src/common/mi-lttng-3.0.xsd b/src/common/mi-lttng-3.0.xsd index ee221903b..789fbcb9b 100644 --- a/src/common/mi-lttng-3.0.xsd +++ b/src/common/mi-lttng-3.0.xsd @@ -23,8 +23,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --> diff --git a/src/common/mi-lttng.c b/src/common/mi-lttng.c index 3d43da091..01819b8bf 100644 --- a/src/common/mi-lttng.c +++ b/src/common/mi-lttng.c @@ -36,7 +36,7 @@ LTTNG_HIDDEN const char * const mi_lttng_w3_schema_uri = "http://www.w3.org/2001 LTTNG_HIDDEN const char * const mi_lttng_schema_location = "xsi:schemaLocation"; LTTNG_HIDDEN const char * const mi_lttng_schema_location_uri = DEFAULT_LTTNG_MI_NAMESPACE " " - "http://lttng.org/xml/schemas/lttng-mi/" XSTR(MI_SCHEMA_MAJOR_VERSION) + "https://lttng.org/xml/schemas/lttng-mi/" XSTR(MI_SCHEMA_MAJOR_VERSION) "/lttng-mi-" XSTR(MI_SCHEMA_MAJOR_VERSION) "." XSTR(MI_SCHEMA_MINOR_VERSION) ".xsd"; LTTNG_HIDDEN const char * const mi_lttng_schema_version = "schemaVersion"; -- 2.34.1