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

File: [local] / www / Attic / groups.awk (download)

Revision 1.2, Mon Sep 20 13:48:01 1999 UTC (24 years, 8 months ago) by ian
Branch: MAIN
Changes since 1.1: +6 -1 lines

Comment out one FreeBSD-specific group. Clarify wording another place.
Fix awk script to allow comments. Add working URL for Brazil group.
Add a *BSD group in Munich.

#!/usr/bin/nawk -f

# convert data like this (order doesn't matter except 0 at front)
# 0
# C Canada
# P Ontario
# T Palgrave
# A R R # 1
# 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 "<TR><TD BGCOLOR=\"#FFFF00\" COLSPAN=6 ALIGN=CENTER><B>" country "</B>"
	 }
	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 == "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 "<TR><TD>" 
	if (indv != "")
		print indv "<BR>" 
	print org "<BR>" addr
	print "	<TD>" city "<BR>" prov
	print "	<TD>" phone "<BR>" fax
	print "	<TD>"
		print "<A HREF=\"mailto:" email "\">" email "</A>"
		print "<BR>"
		print "<A HREF=\"" url "\">" url "</A>"
	print "	<TD>" note
}

function reset() {
	prov = ""
	city = ""
	addr = ""
	org = ""
	indv = ""
	email = ""
	phone = ""
	fax = ""
	url = ""
	note = ""
}

END {
	dump();		# don't forget the last guy!
}