summaryrefslogtreecommitdiff
path: root/doc/en/weechat_scripting.en.asciidoc
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2014-12-13 09:16:09 +0100
committerSébastien Helleu <flashcode@flashtux.org>2014-12-13 09:16:09 +0100
commit0cd2aff765d378259ea6f60fcade0afb1b473699 (patch)
tree784006023b42704aac6d24b94bcc6e4532f4fa18 /doc/en/weechat_scripting.en.asciidoc
parent7818e0896424e00f89a9a72eb7fd548f12a8fd49 (diff)
downloadweechat-0cd2aff765d378259ea6f60fcade0afb1b473699.zip
core: use https for WeeChat URLs
Diffstat (limited to 'doc/en/weechat_scripting.en.asciidoc')
-rw-r--r--doc/en/weechat_scripting.en.asciidoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/en/weechat_scripting.en.asciidoc b/doc/en/weechat_scripting.en.asciidoc
index 242a87c10..956b3989f 100644
--- a/doc/en/weechat_scripting.en.asciidoc
+++ b/doc/en/weechat_scripting.en.asciidoc
@@ -9,7 +9,7 @@
This manual documents WeeChat chat client, it is part of WeeChat.
Latest version of this document can be found on this page:
-http://weechat.org/doc
+https://weechat.org/doc
[[introduction]]
@@ -712,12 +712,12 @@ def weechat_process_cb(data, command, rc, out, err):
weechat.prnt("", "Current WeeChat stable is: %s" % weechat_version)
return weechat.WEECHAT_RC_OK
-weechat.hook_process("url:http://weechat.org/dev/info/stable/",
+weechat.hook_process("url:https://weechat.org/dev/info/stable/",
30 * 1000, "weechat_process_cb", "")
----
[TIP]
-All infos available about WeeChat are on page http://weechat.org/dev/info
+All infos available about WeeChat are on page https://weechat.org/dev/info
Example of URL transfer with an option: download latest WeeChat development
package in file '/tmp/weechat-devel.tar.gz':
@@ -729,7 +729,7 @@ def my_process_cb(data, command, rc, out, err):
weechat.prnt("", "End of transfer (rc=%s)" % rc)
return weechat.WEECHAT_RC_OK
-weechat.hook_process_hashtable("url:http://weechat.org/files/src/weechat-devel.tar.gz",
+weechat.hook_process_hashtable("url:https://weechat.org/files/src/weechat-devel.tar.gz",
{"file_out": "/tmp/weechat-devel.tar.gz"},
30 * 1000, "my_process_cb", "")
----