#!/usr/bin/nawk -f # used by support.bld to generate the table in support.html # convert data like this (order doesn't matter except 0 at front) # 0 # C Canada # P Ontario # T Palgrave # A R R # 1 # Z L0N 1P0 # O Consultant # I Ian F. Darwin # M ian@darwinsys.com # U http://www.darwinsys.com # N Author of lots of kool stuff. # into HTML to make nice neat tables. $1 ~ /^#/ { next; } $1 == "0" { if (FNR != 1) dump(); reset(); next; } $1 == "C" { country = substr($0, 2); if (country != oldCountry) { print "" country "" } oldCountry = country next } $1 == "P" { prov = substr($0, 2); next } $1 == "T" { city = substr($0, 2); next } $1 == "A" { addr = substr($0, 2); next } $1 == "Z" { zip = substr($0, 2); next } $1 == "O" { org = substr($0, 2); next } $1 == "I" { indv = substr($0, 2); next } $1 == "B" { phone = substr($0, 2); next } $1 == "F" { fax = substr($0, 2); next } $1 == "M" { email = substr($0, 2); next } $1 == "U" { url = substr($0, 2); next } $1 == "N" { note = substr($0, 2); next } # left over - must be part of note? { note = note "\n" $0 next } function dump() { print "" print "" if (indv != "") print "Name: " indv "
" if (org != "") print "Organization: " org "
" if (addr != "") print "Address: " addr "
" if (city != "") { print "City: " city if (prov != "") print ", " prov if (zip != "") print " " zip print "
" } if (phone != "") print "Phone: " phone "
" if (fax != "") print "FAX: " fax "
" if (email != "") print "Email: " email "" "
" if (url != "") print "URL: " url "" print " " note } function reset() { prov = "" city = "" addr = "" zip = "" org = "" indv = "" email = "" phone = "" fax = "" url = "" note = "" } END { dump(); # don't forget the last guy! }