aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2021-08-06 17:14:13 +0200
committerPřemysl Eric Janouch <p@janouch.name>2021-08-06 17:18:06 +0200
commit5d285ffb962ec16b9b0f3e5d7425a3ea2fae2579 (patch)
tree9f2d8b4460cda182e5faf986e58697ac1209281b /plugins
parent50057d5149dda340b3b47aca4096f4a6ec66b9ee (diff)
downloadxK-5d285ffb962ec16b9b0f3e5d7425a3ea2fae2579.tar.gz
xK-5d285ffb962ec16b9b0f3e5d7425a3ea2fae2579.tar.xz
xK-5d285ffb962ec16b9b0f3e5d7425a3ea2fae2579.zip
xB: fix up the special IPC command's name
To reflect the new disorder.
Diffstat (limited to 'plugins')
-rwxr-xr-xplugins/xB/calc4
-rwxr-xr-xplugins/xB/coin4
-rwxr-xr-xplugins/xB/eval4
-rwxr-xr-xplugins/xB/factoids6
-rwxr-xr-xplugins/xB/pomodoro6
-rwxr-xr-xplugins/xB/script6
-rwxr-xr-xplugins/xB/seen4
-rwxr-xr-xplugins/xB/youtube6
8 files changed, 20 insertions, 20 deletions
diff --git a/plugins/xB/calc b/plugins/xB/calc
index e67244b..7d2d660 100755
--- a/plugins/xB/calc
+++ b/plugins/xB/calc
@@ -77,7 +77,7 @@
(substring line 0 (- len 1)) line))))
(define (get-config name)
- (send "ZYKLONB get_config :" name)
+ (send "XB get_config :" name)
(car (message-params (parse-message (get-line-crlf irc-input-port)))))
(define (extract-nick prefix)
@@ -216,7 +216,7 @@
; --- Main loop ----------------------------------------------------------------
(define prefix (get-config "prefix"))
-(send "ZYKLONB register")
+(send "XB register")
(define (process msg)
(when (string-ci=? (message-command msg) "PRIVMSG")
diff --git a/plugins/xB/coin b/plugins/xB/coin
index 14cabb5..770cb32 100755
--- a/plugins/xB/coin
+++ b/plugins/xB/coin
@@ -37,7 +37,7 @@ proc parse {line} {
proc get_config {key} {
global msg
- puts "ZYKLONB get_config :$key"
+ puts "XB get_config :$key"
gets stdin line
parse $line
return [lindex $msg(param) 0]
@@ -53,7 +53,7 @@ fconfigure stdin -translation crlf -encoding iso8859-1
fconfigure stdout -translation crlf -encoding iso8859-1
set prefix [get_config prefix]
-puts "ZYKLONB register"
+puts "XB register"
set eightball [list \
"It is certain" \
diff --git a/plugins/xB/eval b/plugins/xB/eval
index 24e4050..48ea28d 100755
--- a/plugins/xB/eval
+++ b/plugins/xB/eval
@@ -15,7 +15,7 @@ BEGIN \
prefix = get_config("prefix")
- print "ZYKLONB register"
+ print "XB register"
fflush("")
# All functions have to be in this particular array
@@ -258,7 +258,7 @@ function process_end ()
function get_config (key)
{
- print "ZYKLONB get_config :" key
+ print "XB get_config :" key
fflush("")
getline
diff --git a/plugins/xB/factoids b/plugins/xB/factoids
index 9e9a7b4..84f6559 100755
--- a/plugins/xB/factoids
+++ b/plugins/xB/factoids
@@ -24,18 +24,18 @@ sub parse ($) {
}
sub bot_print {
- print "ZYKLONB print :${\shift}";
+ print "XB print :${\shift}";
}
# --- Initialization -----------------------------------------------------------
my %config;
for my $name (qw(prefix)) {
- print "ZYKLONB get_config :$name";
+ print "XB get_config :$name";
$config{$name} = (parse <STDIN>)->{args}->[0];
}
-print "ZYKLONB register";
+print "XB register";
# --- Database -----------------------------------------------------------------
# Simple map of (factoid_name => [definitions]); all factoids are separated
diff --git a/plugins/xB/pomodoro b/plugins/xB/pomodoro
index 08b87cb..910f707 100755
--- a/plugins/xB/pomodoro
+++ b/plugins/xB/pomodoro
@@ -206,7 +206,7 @@ def parse (line)
end
def bot_print (what)
- print "ZYKLONB print :#{what}"
+ print "XB print :#{what}"
end
# --- Initialization -----------------------------------------------------------
@@ -215,12 +215,12 @@ end
# To read it from anywhere else, it has to be done asynchronously
$config = {}
[:prefix].each do |name|
- print "ZYKLONB get_config :#{name}"
+ print "XB get_config :#{name}"
_, _, _, _, args = *parse($stdin.gets.chomp)
$config[name] = args[0]
end
-print "ZYKLONB register"
+print "XB register"
# --- Plugin logic -------------------------------------------------------------
diff --git a/plugins/xB/script b/plugins/xB/script
index 948e7e5..43bd66f 100755
--- a/plugins/xB/script
+++ b/plugins/xB/script
@@ -1964,12 +1964,12 @@ read_message (void)
// --- Interfacing with the bot ------------------------------------------------
-#define BOT_PRINT "ZYKLONB print :script: "
+#define BOT_PRINT "XB print :script: "
static const char *
get_config (const char *key)
{
- printf ("ZYKLONB get_config :%s\r\n", key);
+ printf ("XB get_config :%s\r\n", key);
struct message *msg = read_message ();
if (!msg || msg->n_params <= 0)
exit (EXIT_FAILURE);
@@ -2298,7 +2298,7 @@ main (int argc, char *argv[])
printf (BOT_PRINT "%s\r\n", "runtime library initialization failed");
g_prefix = strdup (get_config ("prefix"));
- printf ("ZYKLONB register\r\n");
+ printf ("XB register\r\n");
struct message *msg;
while ((msg = read_message ()))
process_message (msg);
diff --git a/plugins/xB/seen b/plugins/xB/seen
index da20972..da43488 100755
--- a/plugins/xB/seen
+++ b/plugins/xB/seen
@@ -26,7 +26,7 @@ function parse (line)
end
function get_config (name)
- io.write ("ZYKLONB get_config :", name, "\r\n")
+ io.write ("XB get_config :", name, "\r\n")
return parse (io.read ()).params[1]
end
@@ -34,7 +34,7 @@ end
io.output ():setvbuf ('line')
local prefix = get_config ('prefix')
-io.write ("ZYKLONB register\r\n")
+io.write ("XB register\r\n")
local db = {}
local db_filename = "seen.db"
diff --git a/plugins/xB/youtube b/plugins/xB/youtube
index 0bf0c1e..feaab96 100755
--- a/plugins/xB/youtube
+++ b/plugins/xB/youtube
@@ -27,12 +27,12 @@ class Plugin:
return (nick, user, host, command, args)
def get_config (self, key):
- print ("ZYKLONB get_config :%s" % key)
+ print ("XB get_config :%s" % key)
(_, _, _, _, args) = self.parse (sys.stdin.readline ())
return args[0]
def bot_print (self, what):
- print ('ZYKLONB print :%s' % what)
+ print ('XB print :%s' % what)
class YouTube (Plugin):
re_videos = [re.compile (x) for x in [
@@ -98,7 +98,7 @@ class YouTube (Plugin):
if self.youtube_api_key == "":
self.bot_print ("youtube: missing `youtube_api_key'")
- print ("ZYKLONB register")
+ print ("XB register")
for line in sys.stdin:
self.process_line (line)