summaryrefslogtreecommitdiff
path: root/doc/en
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2018-11-29 23:18:55 +0100
committerSébastien Helleu <flashcode@flashtux.org>2018-11-29 23:18:55 +0100
commit342261d35b7cb778d8b04ca5bcd6a274494e9205 (patch)
tree4ed7b75331b9656afd6ec953ed38cd2d5bc5678b /doc/en
parent4712d0bb0653b4827ed699c4ac0493a68c531c1d (diff)
downloadweechat-342261d35b7cb778d8b04ca5bcd6a274494e9205.zip
core: use https for all links where secured http is supported
Diffstat (limited to 'doc/en')
-rw-r--r--doc/en/autogen/user/exec_commands.adoc2
-rw-r--r--doc/en/autogen/user/relay_options.adoc2
-rw-r--r--doc/en/weechat_dev.en.adoc2
-rw-r--r--doc/en/weechat_faq.en.adoc2
-rw-r--r--doc/en/weechat_plugin_api.en.adoc4
-rw-r--r--doc/en/weechat_tester.en.adoc2
-rw-r--r--doc/en/weechat_user.en.adoc18
7 files changed, 16 insertions, 16 deletions
diff --git a/doc/en/autogen/user/exec_commands.adoc b/doc/en/autogen/user/exec_commands.adoc
index 3923258ad..d36def7eb 100644
--- a/doc/en/autogen/user/exec_commands.adoc
+++ b/doc/en/autogen/user/exec_commands.adoc
@@ -67,7 +67,7 @@ Default options can be set in the option exec.command.default_options.
Examples:
/exec -n ls -l /tmp
/exec -sh -n ps xu | grep weechat
- /exec -n -norc url:http://pastebin.com/raw.php?i=xxxxxxxx
+ /exec -n -norc url:https://pastebin.com/raw.php?i=xxxxxxxx
/exec -nf -noln links -dump https://weechat.org/files/doc/devel/weechat_user.en.html
/exec -o uptime
/exec -pipe "/print Machine uptime:" uptime
diff --git a/doc/en/autogen/user/relay_options.adoc b/doc/en/autogen/user/relay_options.adoc
index edf7af80a..649cb4c35 100644
--- a/doc/en/autogen/user/relay_options.adoc
+++ b/doc/en/autogen/user/relay_options.adoc
@@ -177,7 +177,7 @@
** default value: `+0+`
* [[option_relay.network.websocket_allowed_origins]] *relay.network.websocket_allowed_origins*
-** description: pass:none[POSIX extended regular expression with origins allowed in websockets (case insensitive, use "(?-i)" at beginning to make it case sensitive), example: "^http://(www\.)?example\.(com|org)"]
+** description: pass:none[POSIX extended regular expression with origins allowed in websockets (case insensitive, use "(?-i)" at beginning to make it case sensitive), example: "^https?://(www\.)?example\.(com|org)"]
** type: string
** values: any string
** default value: `+""+`
diff --git a/doc/en/weechat_dev.en.adoc b/doc/en/weechat_dev.en.adoc
index 8366e3b3c..ee399403f 100644
--- a/doc/en/weechat_dev.en.adoc
+++ b/doc/en/weechat_dev.en.adoc
@@ -674,7 +674,7 @@ new_hook_fd = malloc (sizeof (*new_hook_fd));
[[coding_python_style]]
=== Python style
-See http://www.python.org/dev/peps/pep-0008/
+See https://www.python.org/dev/peps/pep-0008/
[[core_internals]]
== Core internals
diff --git a/doc/en/weechat_faq.en.adoc b/doc/en/weechat_faq.en.adoc
index 4c319b1a3..74d03a474 100644
--- a/doc/en/weechat_faq.en.adoc
+++ b/doc/en/weechat_faq.en.adoc
@@ -60,7 +60,7 @@ than git cloning for installing updates.
[[compile_macos]]
=== How can I install WeeChat on macOS?
-It is recommended to use http://brew.sh/[Homebrew], you can get help with:
+It is recommended to use https://brew.sh/[Homebrew], you can get help with:
----
brew info weechat
diff --git a/doc/en/weechat_plugin_api.en.adoc b/doc/en/weechat_plugin_api.en.adoc
index ec2d5cf28..769b8365a 100644
--- a/doc/en/weechat_plugin_api.en.adoc
+++ b/doc/en/weechat_plugin_api.en.adoc
@@ -1504,7 +1504,7 @@ _WeeChat ≥ 1.0._
Split a string like the shell does for a command with arguments.
This function is a C conversion of Python class "shlex" (file: Lib/shlex.py in
-Python repository), see: http://docs.python.org/3/library/shlex.html.
+Python repository), see: https://docs.python.org/3/library/shlex.html.
Prototype:
@@ -8552,7 +8552,7 @@ Return value:
When command has ended, or if timeout is reached, WeeChat will automatically
unhook (and kill process if it is still running).
-The command can be an URL with format: "url:http://www.example.com",
+The command can be an URL with format: "url:https://www.example.com",
to download content of URL _(WeeChat ≥ 0.3.7)_. Options are possible for URL
with function <<_hook_process_hashtable,hook_process_hashtable>>.
diff --git a/doc/en/weechat_tester.en.adoc b/doc/en/weechat_tester.en.adoc
index f747ac62d..54aa29485 100644
--- a/doc/en/weechat_tester.en.adoc
+++ b/doc/en/weechat_tester.en.adoc
@@ -109,7 +109,7 @@ According to your Linux distribution:
* Debian: https://weechat.org/download/debian
* Gentoo: https://weechat.org/download
-* ArchLinux: PKGBUILD from http://aur.archlinux.org/
+* ArchLinux: PKGBUILD from https://aur.archlinux.org/
* other: we don't know! Eheh.
diff --git a/doc/en/weechat_user.en.adoc b/doc/en/weechat_user.en.adoc
index 479fdca0b..4e72f27b2 100644
--- a/doc/en/weechat_user.en.adoc
+++ b/doc/en/weechat_user.en.adoc
@@ -31,11 +31,11 @@ Main features are:
* small, fast and light
* customizable and extensible with plugins and scripts
* compliant with IRC RFCs
- http://tools.ietf.org/html/rfc1459[1459],
- http://tools.ietf.org/html/rfc2810[2810],
- http://tools.ietf.org/html/rfc2811[2811],
- http://tools.ietf.org/html/rfc2812[2812] and
- http://tools.ietf.org/html/rfc2813[2813]
+ https://tools.ietf.org/html/rfc1459[1459],
+ https://tools.ietf.org/html/rfc2810[2810],
+ https://tools.ietf.org/html/rfc2811[2811],
+ https://tools.ietf.org/html/rfc2812[2812] and
+ https://tools.ietf.org/html/rfc2813[2813]
* IRC proxy and relay for remote interfaces
* multi-platform (GNU/Linux, *BSD, macOS, Windows and other)
* 100% GPL, free software
@@ -82,7 +82,7 @@ instructions.
WeeChat can be compiled with cmake or autotools (cmake is recommended way).
[NOTE]
-On macOS, you can use http://brew.sh/[Homebrew]:
+On macOS, you can use https://brew.sh/[Homebrew]:
`brew install weechat --with-python --with-perl`
(for help: `brew info weechat`).
@@ -2562,7 +2562,7 @@ even if it was OK with versions prior to 0.3.1.
----
$ mkdir -p ~/.weechat/ssl
-$ wget -O ~/.weechat/ssl/CAs.pem http://www.spi-inc.org/ca/spi-cacert.crt
+$ wget -O ~/.weechat/ssl/CAs.pem https://www.spi-inc.org/ca/spi-cacert.crt
----
[NOTE]
@@ -2711,7 +2711,7 @@ And finally, connection to server:
----
For more info about Freenode and TOR:
-http://freenode.net/kb/answer/chat#accessing-freenode-via-tor
+https://freenode.net/kb/answer/chat#accessing-freenode-via-tor
[[irc_smart_filter_join_part_quit]]
==== Smart filter for join/part/quit messages
@@ -3265,7 +3265,7 @@ Now you can connect on port 9000 with a remote interface using password
[[relay_websocket]]
==== WebSocket
-WebSocket protocol (http://tools.ietf.org/html/rfc6455[RFC 6455]) is supported
+WebSocket protocol (https://tools.ietf.org/html/rfc6455[RFC 6455]) is supported
in Relay plugin for all protocols.
The WebSocket handshake is automatically detected and socket becomes ready for