[BACK]Return to support.awk CVS log [TXT][DIR] Up to [local] / www

Diff for /www/Attic/support.awk between version 1.1 and 1.2

version 1.1, 1998/12/01 23:16:23 version 1.2, 1999/09/20 13:48:01
Line 15 
Line 15 
 # into HTML to make nice neat tables.  # into HTML to make nice neat tables.
   
   
   $1 ~ /^#/ { next; }
   
 $1 == "0" {  $1 == "0" {
         if (FNR != 1)          if (FNR != 1)
                 dump();                  dump();
Line 47 
Line 49 
         }          }
   
 function dump() {  function dump() {
         print "<TR><TD>" indv "<BR>" org "<BR>" addr          print "<TR><TD>"
           if (indv != "")
                   print indv "<BR>"
           print org "<BR>" addr
         print " <TD>" city "<BR>" prov          print " <TD>" city "<BR>" prov
         print " <TD>" phone "<BR>" fax          print " <TD>" phone "<BR>" fax
         print " <TD>"          print " <TD>"

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2