*** empty log message ***
authordjk <djk>
Sun, 18 Jul 1999 16:03:56 +0000 (16:03 +0000)
committerdjk <djk>
Sun, 18 Jul 1999 16:03:56 +0000 (16:03 +0000)
Changes
cmd/show/dx.pl
filter/spots/GB7DJK.pl.issue

diff --git a/Changes b/Changes
index 4484aed95926214ff00ad13ba4e1925b9f6e6ce1..7faaf0cb3bac9fa4b5faa6e97548238d1a5f93f5 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,6 @@
 17Jul99=======================================================================
 1. Started database integration.
+2. added qsl clause to sh/dx that searches for qsl or via in the dx info
 16Jul99=======================================================================
 1. drop frames with 'illegal' characters in them (but pass frames with 
 embedded %XX characters).
index 52467faaa8fb1ca7515e27f663e7bdbe718b9f19..fecf16fc1dfdeebf69f62fc6555d9e6a0e525e2b 100644 (file)
@@ -18,7 +18,7 @@ my $pre;
 my $spotter;
 my $info;
 my $expr;
-my $qsl;
+my $doqsl;
 
 while ($f = shift @list) {             # next field
        #  print "f: $f list: ", join(',', @list), "\n";
index a1ee87bde1ff867ddb44ba8456e3deacf5eceed6..184e53559e34e2246506832fe4045a982dce3789 100644 (file)
@@ -1,47 +1,31 @@
 #
-# This is an example filter for the 'isolated' node k1xx
+# This is an example filter for the 'isolated' node GB7YDX
 # 
-# I give him any spots that have a spotter or a spotted in the
-# US. In other filters on the UK side I do the opposite see 
-# GB7DJK.pl.issue
-#
-# the elements of each list are 
-#
-# [action, field_no, sort, possible_values, hops]
-#
-# where:-
-#
-#   action is 1 or 0 
-# 
-#   the field list is:-
-#      0 = frequency
-#      1 = call
-#      2 = date in unix format
-#      3 = comment
-#      4 = spotter
-#      5 = spotted dxcc country
-#      6 = spotter's dxcc country
-#      7 = origin
-#      8 = spotted itu
-#      9 = spotted cq
-#      10 = spotter's itu
-#      11 = spotter's cq
-#      12 = callsign of the channel on which the spot has appeared
-#
-#   sort is
-#     n - numeric list of numbers e.g. [ 1,2,3 ]
-#     r - ranges of pairs of numbers e.g. between 2 and 4 or 10 to 17 - [ 2,4, 10,17 ] 
-#     a - an alphanumeric regex
-#     d - the default rule
-#
-#   if hops is left out or zero then the existing hop count will be used as normal
+# I give him all spots with a fixed hop count of one using the
+# 'default' rule.
+#
+# The element list is:-
+#   0 = frequency
+#   1 = call
+#   2 = date in unix format
+#   3 = comment
+#   4 = spotter
+#   5 = spotted dxcc country
+#   6 = spotter's dxcc country
+#   7 = origin
+#   8 = spotted itu
+#   9 = spotted cq
+#   10 = spotter's itu
+#   11 = spotter's cq
 #
 # The spot data (in this case '15') is the used as the hop count
 # if this is missing then the normal default applies
 #
 
+# In this the first arg is 'true', next is null, next is 'd' for
+# default rule, next is null (ignored) and last is 2 which is the
+# hop count
+
 $in = [
-          [ 1, 9, 'n', [ 14,15 ], 15 ],   # 14 and 15 is CQ region for europe   
-          [ 1, 11, 'n', [ 14,15 ], 15 ],  
-       [ 0, 0, 'd' ],
+       [ 1, 0, 'd', 0, 4 ]
 ];