<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="MS Exchange Server version 6.0.4417.0">
<TITLE>RE: [Dxspider-support] bug in Spot::formatb</TITLE>
</HEAD>
<BODY>
<!-- Converted from text/plain format -->
<BR>

<P><FONT SIZE=2>Agree with you completely Dirk !</FONT>

<BR><FONT SIZE=2>as they say at Microsoft....</FONT>

<BR><FONT SIZE=2>&quot;it's not a bug, it's a feature !&quot;&nbsp; :-)</FONT>
</P>
<BR>
<BR>

<P><FONT SIZE=2>&gt; -----Original Message-----</FONT>

<BR><FONT SIZE=2>&gt; From: Dirk Koopman [<A HREF="mailto:djk@tobit.co.uk">mailto:djk@tobit.co.uk</A>]</FONT>

<BR><FONT SIZE=2>&gt; Sent: Tuesday, November 13, 2001 12:35 PM</FONT>

<BR><FONT SIZE=2>&gt; To: dxspider-support@dxcluster.org</FONT>

<BR><FONT SIZE=2>&gt; Subject: Re: [Dxspider-support] bug in Spot::formatb</FONT>

<BR><FONT SIZE=2>&gt; </FONT>

<BR><FONT SIZE=2>&gt; </FONT>

<BR><FONT SIZE=2>&gt; On Mon, 2001-11-12 at 09:38, Filip Jonckers wrote:</FONT>

<BR><FONT SIZE=2>&gt; &gt; Dirk,</FONT>

<BR><FONT SIZE=2>&gt; &gt; </FONT>

<BR><FONT SIZE=2>&gt; &gt; probably a very small bug...</FONT>

<BR><FONT SIZE=2>&gt; &gt; but could be a possible source of dupe spots</FONT>

<BR><FONT SIZE=2>&gt; &gt; if someone has a user connection to a spider</FONT>

<BR><FONT SIZE=2>&gt; &gt; </FONT>

<BR><FONT SIZE=2>&gt; &gt; saw this spot:</FONT>

<BR><FONT SIZE=2>&gt; &gt; </FONT>

<BR><FONT SIZE=2>&gt; &gt; DX de VR2XMT:&nbsp;&nbsp;&nbsp; 50150.0&nbsp; GM0PLH&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; noise here QSY back 160</FONT>

<BR><FONT SIZE=2>&gt; &gt; 0925Z</FONT>

<BR><FONT SIZE=2>&gt; &gt; DX de ON4NA:&nbsp;&nbsp;&nbsp;&nbsp; 21253.6&nbsp; JH4TEW&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; KAZU INNOSHIMA ISL </FONT>

<BR><FONT SIZE=2>&gt; AS 117 IF N</FONT>

<BR><FONT SIZE=2>&gt; &gt; 0927Z</FONT>

<BR><FONT SIZE=2>&gt; &gt; DX de F8TSV:&nbsp;&nbsp;&nbsp;&nbsp; 14023.1&nbsp; VK3XU&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; cw &gt;50w 599</FONT>

<BR><FONT SIZE=2>&gt; &gt; 0926Z</FONT>

<BR><FONT SIZE=2>&gt; &gt; </FONT>

<BR><FONT SIZE=2>&gt; &gt; noticed that the text of the ON4NA spot was 1 char too long</FONT>

<BR><FONT SIZE=2>&gt; &gt; looking at the code, there is no maximum length defined</FONT>

<BR><FONT SIZE=2>&gt; &gt; </FONT>

<BR><FONT SIZE=2>&gt; &gt; perl/Spot.pm line 276:</FONT>

<BR><FONT SIZE=2>&gt; &gt; return sprintf &quot;DX de %-7.7s%11.1f&nbsp; %-12.12s %-29s %s$loc&quot;, </FONT>

<BR><FONT SIZE=2>&gt; &quot;$_[4]:&quot;,</FONT>

<BR><FONT SIZE=2>&gt; &gt; $_[0], $_[1], $_[3], $t ;</FONT>

<BR><FONT SIZE=2>&gt; &gt; </FONT>

<BR><FONT SIZE=2>&gt; &gt; should probably be:</FONT>

<BR><FONT SIZE=2>&gt; &gt; return sprintf &quot;DX de %-7.7s%11.1f&nbsp; %-12.12s %-29.29s </FONT>

<BR><FONT SIZE=2>&gt; %s$loc&quot;, &quot;$_[4]:&quot;,</FONT>

<BR><FONT SIZE=2>&gt; &gt; $_[0], $_[1], $_[3], $t ;</FONT>

<BR><FONT SIZE=2>&gt; &gt;</FONT>

<BR><FONT SIZE=2>&gt; </FONT>

<BR><FONT SIZE=2>&gt; This is a subject of some debate. It is the way it is because I</FONT>

<BR><FONT SIZE=2>&gt; (currently) think that is the way it should be. I considered doing it</FONT>

<BR><FONT SIZE=2>&gt; the way you suggest but rejected it. </FONT>

<BR><FONT SIZE=2>&gt; </FONT>

<BR><FONT SIZE=2>&gt; The argument goes something like this:-</FONT>

<BR><FONT SIZE=2>&gt; </FONT>

<BR><FONT SIZE=2>&gt; 1) What comes in, either goes out exactly as it comes in or is dropped</FONT>

<BR><FONT SIZE=2>&gt; (not sent anywhere).</FONT>

<BR><FONT SIZE=2>&gt; </FONT>

<BR><FONT SIZE=2>&gt; 2) If there is some user displayable content then it should ALL be</FONT>

<BR><FONT SIZE=2>&gt; displayed (as all of it may be relevant).</FONT>

<BR><FONT SIZE=2>&gt; </FONT>

<BR><FONT SIZE=2>&gt; 3) I don't approve of spot suckers using user links. I am NOT going to</FONT>

<BR><FONT SIZE=2>&gt; modify my behaviour to make their job easier (which isn't particularly</FONT>

<BR><FONT SIZE=2>&gt; hard anyway). I can write programs that cope with </FONT>

<BR><FONT SIZE=2>&gt; 'overlength' comments,</FONT>

<BR><FONT SIZE=2>&gt; so why can't they? (This goes for the DXTelnet/other 'user' </FONT>

<BR><FONT SIZE=2>&gt; programs as</FONT>

<BR><FONT SIZE=2>&gt; well BTW).</FONT>

<BR><FONT SIZE=2>&gt; </FONT>

<BR><FONT SIZE=2>&gt; 4) The only places that would have dupe problems is in other software</FONT>

<BR><FONT SIZE=2>&gt; that doesn't adhere to the standards which the modern cluster software</FONT>

<BR><FONT SIZE=2>&gt; authors have agreed to. AK1A has dupe problems - period.</FONT>

<BR><FONT SIZE=2>&gt;&nbsp; </FONT>

<BR><FONT SIZE=2>&gt; &gt; </FONT>

<BR><FONT SIZE=2>&gt; &gt; You see Dirk, I'm already going through a lot of code...</FONT>

<BR><FONT SIZE=2>&gt; &gt; b.t.w. very nice written !</FONT>

<BR><FONT SIZE=2>&gt; &gt; </FONT>

<BR><FONT SIZE=2>&gt; </FONT>

<BR><FONT SIZE=2>&gt; Thank you very much.</FONT>

<BR><FONT SIZE=2>&gt; </FONT>

<BR><FONT SIZE=2>&gt; Dirk G1TLH</FONT>

<BR><FONT SIZE=2>&gt; </FONT>

<BR><FONT SIZE=2>&gt; _______________________________________________</FONT>

<BR><FONT SIZE=2>&gt; Dxspider-support mailing list</FONT>

<BR><FONT SIZE=2>&gt; Dxspider-support@dxcluster.org</FONT>

<BR><FONT SIZE=2>&gt; <A HREF="http://www.tobit.co.uk/mailman/listinfo/dxspider-support">http://www.tobit.co.uk/mailman/listinfo/dxspider-support</A></FONT>

<BR><FONT SIZE=2>&gt; </FONT>
</P>

</BODY>
</HTML>