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

Diff for /www/Attic/support.awk between version 1.4 and 1.5

version 1.4, 1999/09/23 21:54:57 version 1.5, 1999/09/30 18:43:33
Line 27 
Line 27 
         next;          next;
         }          }
   
 $1 == "C" { country = substr($0, 2);  $1 == "C" { country = substr($0, 3);
         if (country != oldCountry) {          if (country != oldCountry) {
                 print "<TR><TD BGCOLOR=\"#FFFF00\" COLSPAN=2 ALIGN=CENTER><B>" country "</B>"                  print "<TR><TD BGCOLOR=\"#FFFF00\" COLSPAN=2 ALIGN=CENTER><B>" country "</B>"
          }           }
         oldCountry = country          oldCountry = country
         next          next
 }  }
 $1 == "P" { prov = substr($0, 2); next }  $1 == "P" { prov = substr($0, 3); next }
 $1 == "T" { city = substr($0, 2); next }  $1 == "T" { city = substr($0, 3); next }
 $1 == "A" { addr = substr($0, 2); next }  $1 == "A" { addr = substr($0, 3); next }
 $1 == "Z" { zip = substr($0, 2); next }  $1 == "Z" { zip = substr($0, 3); next }
 $1 == "O" { org = substr($0, 2); next }  $1 == "O" { org = substr($0, 3); next }
 $1 == "I" { indv = substr($0, 2); next }  $1 == "I" { indv = substr($0, 3); next }
 $1 == "B" { phone = substr($0, 2); next }  $1 == "B" { phone = substr($0, 3); next }
 $1 == "F" { fax = substr($0, 2); next }  $1 == "F" { fax = substr($0, 3); next }
 $1 == "M" { email = substr($0, 2); next }  $1 == "M" { email = substr($0, 3); next }
 $1 == "U" { url = substr($0, 2); next }  $1 == "U" { url = substr($0, 3); next }
 $1 == "N" { note = substr($0, 2); next }  $1 == "N" { note = substr($0, 3); next }
   
 # left over - must be part of note?  # left over - must be part of note?
         {          {

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5