diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2014-12-13 09:16:09 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2014-12-13 09:16:09 +0100 |
commit | 0cd2aff765d378259ea6f60fcade0afb1b473699 (patch) | |
tree | 784006023b42704aac6d24b94bcc6e4532f4fa18 /doc/ja/weechat_scripting.ja.asciidoc | |
parent | 7818e0896424e00f89a9a72eb7fd548f12a8fd49 (diff) | |
download | weechat-0cd2aff765d378259ea6f60fcade0afb1b473699.zip |
core: use https for WeeChat URLs
Diffstat (limited to 'doc/ja/weechat_scripting.ja.asciidoc')
-rw-r--r-- | doc/ja/weechat_scripting.ja.asciidoc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/ja/weechat_scripting.ja.asciidoc b/doc/ja/weechat_scripting.ja.asciidoc index 5fedd5969..2bc7822cf 100644 --- a/doc/ja/weechat_scripting.ja.asciidoc +++ b/doc/ja/weechat_scripting.ja.asciidoc @@ -9,7 +9,7 @@ このマニュアルは WeeChat チャットクライアントについて説明しており、WeeChat の一部です。 このマニュアルの最新版は以下のページを参照してください: -http://weechat.org/doc +https://weechat.org/doc [[introduction]] @@ -715,12 +715,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] -WeeChat に関して利用できる情報は全て http://weechat.org/dev/info にあります +WeeChat に関して利用できる情報は全て https://weechat.org/dev/info にあります オプション有りの URL 転送の例: 最新の WeeChat 開発パッケージをファイル '/tmp/weechat-devel.tar.gz' にダウンロード: @@ -732,7 +732,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", "") ---- |