we have a initial working loging in version. Doesn't do much, but its
[spider.git] / perl / DXM.pm
index e1579fabbd64d52cb25ea3cdb8b7be566460bb9c..99fd3773f6369ae4c3622854e314f714a4c27992 100644 (file)
@@ -1,6 +1,14 @@
 #
 # DX cluster message strings for output
 #
+# Each message string will substitute $_[x] positionally. What this means is
+# that if you don't like the order in which fields in each message is output then 
+# you can change it. Also you can include various globally accessible variables
+# in the string if you want. 
+#
+# Largely because I don't particularly want to have to change all these messages
+# in every upgrade I shall attempt to add new field to the END of the list :-)
+#
 # Copyright (c) 1998 - Dirk Koopman G1TLH
 #
 # $Id$
@@ -10,19 +18,19 @@ package DXM;
 
 require Exporter;
 @ISA = qw(Exporter);
-@EXPORT = qw(m);
+@EXPORT = qw(msg);
 
 %msgs = (
-  l1 => "Sorry $a[0], you are already logged on on another channel",
-  l2 => "Hello $a[0], this is $a[1] located in $a[2]",
+  l1 => 'Sorry $_[0], you are already logged on on another channel',
+  l2 => 'Hello $_[0], this is $main::mycall located in $main::myqth',
 );
 
-sub m
+sub msg
 {
   my $self = shift;
-  local @a = @_;
-  my $s = $msg{$self};
+  my $s = $msgs{$self};
   return "unknown message '$self'" if !defined $s;
-  return eval $s;
+
+  return eval '"'. $s . '"';
 }