summaryrefslogtreecommitdiff
path: root/src
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 /src
parent7818e0896424e00f89a9a72eb7fd548f12a8fd49 (diff)
downloadweechat-0cd2aff765d378259ea6f60fcade0afb1b473699.zip
core: use https for WeeChat URLs
Diffstat (limited to 'src')
-rw-r--r--src/core/weechat.c2
-rw-r--r--src/core/weechat.h4
-rw-r--r--src/plugins/exec/exec-command.c2
-rw-r--r--src/plugins/irc/irc-ctcp.c4
-rw-r--r--src/plugins/relay/relay-command.c2
5 files changed, 7 insertions, 7 deletions
diff --git a/src/core/weechat.c b/src/core/weechat.c
index a6b2a06d4..a41151141 100644
--- a/src/core/weechat.c
+++ b/src/core/weechat.c
@@ -11,7 +11,7 @@
* ## ##
* ## By Sébastien Helleu <flashcode@flashtux.org> ##
* ## ##
- * ## http://weechat.org/ ##
+ * ## https://weechat.org/ ##
* ## ##
* ##########################################################################
*
diff --git a/src/core/weechat.h b/src/core/weechat.h
index 6107bd566..d36e91833 100644
--- a/src/core/weechat.h
+++ b/src/core/weechat.h
@@ -52,8 +52,8 @@
#define WEECHAT_COPYRIGHT_DATE "(C) 2003-2014"
-#define WEECHAT_WEBSITE "http://weechat.org/"
-#define WEECHAT_WEBSITE_DOWNLOAD "http://weechat.org/download"
+#define WEECHAT_WEBSITE "https://weechat.org/"
+#define WEECHAT_WEBSITE_DOWNLOAD "https://weechat.org/download"
/* log file */
#define WEECHAT_LOG_NAME "weechat.log"
diff --git a/src/plugins/exec/exec-command.c b/src/plugins/exec/exec-command.c
index 9e211bfa5..b2cc0ada5 100644
--- a/src/plugins/exec/exec-command.c
+++ b/src/plugins/exec/exec-command.c
@@ -865,7 +865,7 @@ exec_command_init ()
" /exec -n ps xu | grep weechat\n"
" /exec -n -norc url:http://pastebin.com/raw.php?i=xxxxxxxx\n"
" /exec -nf -noln links -dump "
- "http://weechat.org/files/doc/devel/weechat_user.en.html\n"
+ "https://weechat.org/files/doc/devel/weechat_user.en.html\n"
" /exec -o uptime\n"
" /exec -pipe \"/print Machine uptime:\" uptime\n"
" /exec -n tail -f /var/log/messages\n"
diff --git a/src/plugins/irc/irc-ctcp.c b/src/plugins/irc/irc-ctcp.c
index 42c61e7af..c87e34646 100644
--- a/src/plugins/irc/irc-ctcp.c
+++ b/src/plugins/irc/irc-ctcp.c
@@ -421,7 +421,7 @@ irc_ctcp_replace_variables (struct t_irc_server *server, const char *format)
/*
* $site: WeeChat web site, example:
- * http://weechat.org/
+ * https://weechat.org/
*/
info = weechat_info_get ("weechat_site", "");
temp = weechat_string_replace (res, "$site", info);
@@ -432,7 +432,7 @@ irc_ctcp_replace_variables (struct t_irc_server *server, const char *format)
/*
* $download: WeeChat download page, example:
- * http://weechat.org/download
+ * https://weechat.org/download
*/
info = weechat_info_get ("weechat_site_download", "");
temp = weechat_string_replace (res, "$download", info);
diff --git a/src/plugins/relay/relay-command.c b/src/plugins/relay/relay-command.c
index 2807154ab..9f4469026 100644
--- a/src/plugins/relay/relay-command.c
+++ b/src/plugins/relay/relay-command.c
@@ -383,7 +383,7 @@ relay_command_init ()
"The \"irc\" protocol allows any IRC client (including WeeChat "
"itself) to connect on the port.\n"
"The \"weechat\" protocol allows a remote interface to connect on "
- "the port, see the list here: http://weechat.org/download/\n"
+ "the port, see the list here: https://weechat.org/download/\n"
"\n"
"Without argument, this command opens buffer with list of relay "
"clients.\n"