Added set/prompt (and unset/prompt) command so that Stephan can fool some
[spider.git] / cmd / set / prompt.pl
diff --git a/cmd/set/prompt.pl b/cmd/set/prompt.pl
new file mode 100644 (file)
index 0000000..c1653c6
--- /dev/null
@@ -0,0 +1,28 @@
+#
+# set the prompt of the user
+#
+# Copyright (c) 2001 - Dirk Koopman
+#
+# $Id$
+#
+
+my ($self, $line) = @_;
+my $call = $self->call;
+my $user;
+
+# remove leading and trailing spaces
+$line =~ s/^\s+//;
+$line =~ s/\s+$//;
+
+return (1, $self->msg('e9')) if !$line;
+
+$user = DXUser->get_current($call);
+if ($user) {
+       $user->prompt($line);
+       $self->{prompt} = $line;    # this is like this because $self->prompt is a function that does something else
+       $user->put();
+       return (1, $self->msg('prs', $line));
+} else {
+       return (1, $self->msg('namee2', $call));
+}
+