From: Doug Coleman Date: Mon, 6 Dec 2021 00:46:58 +0000 (-0600) Subject: irc: s/freenode/libera/ X-Git-Tag: 0.99~2231 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=d81a9cb5b2f1374a5cf9521553b56b116576f98f irc: s/freenode/libera/ --- diff --git a/basis/help/tips/tips-docs.factor b/basis/help/tips/tips-docs.factor index 17890c1a33..8fbca07d2b 100644 --- a/basis/help/tips/tips-docs.factor +++ b/basis/help/tips/tips-docs.factor @@ -11,7 +11,7 @@ TIP: "Learn to use " { $link "editor" } " to be able to jump to the source code TIP: "Check out " { $url "http://concatenative.org/wiki/view/Factor/FAQ" } " to get answers to frequently-asked questions." ; -TIP: "Drop by the " { $snippet "#concatenative" } " IRC channel on " { $snippet "irc.freenode.net" } " some time." ; +TIP: "Drop by the " { $snippet "#concatenative" } " IRC channel on " { $snippet "irc.libera.chat" } " some time." ; TIP: "You can write documentation for your own code using the " { $link "help" } "." ; diff --git a/extra/irc/client/client-docs.factor b/extra/irc/client/client-docs.factor index 6a05cb38bf..dd00e76840 100644 --- a/extra/irc/client/client-docs.factor +++ b/extra/irc/client/client-docs.factor @@ -81,7 +81,7 @@ ARTICLE: "irc.client" "IRC Client" "SYMBOL: bot" "SYMBOL: mychannel" "! Create the profile and client objects" - "\"irc.freenode.org\" irc-port \"mybot123\" f bot set" + "\"irc.libera.chat\" irc-port \"mybot123\" f bot set" "! Connect to the server" "bot get connect-irc" "! Create a channel chat" diff --git a/extra/irc/gitbot/gitbot.factor b/extra/irc/gitbot/gitbot.factor index 5dff259062..76cef57daa 100644 --- a/extra/irc/gitbot/gitbot.factor +++ b/extra/irc/gitbot/gitbot.factor @@ -9,7 +9,7 @@ SYMBOL: nickserv-handle SYMBOL: nickserv-password : bot-profile ( -- obj ) - "irc.freenode.org" 6667 + "irc.libera.chat" 6697 nickserv-handle get "stackoid2" or nickserv-password get ; diff --git a/extra/irc/logbot/logbot.factor b/extra/irc/logbot/logbot.factor index 2732b251a0..410446428c 100644 --- a/extra/irc/logbot/logbot.factor +++ b/extra/irc/logbot/logbot.factor @@ -18,7 +18,7 @@ SYMBOL: current-day SYMBOL: current-stream : bot-profile ( -- obj ) - "irc.freenode.org" 6667 + "irc.libera.chat" 6697 nickserv-handle get default-nickserv-handle or nickserv-password get ;