=================================================================== RCS file: /cvsrepo/anoncvs/cvs/www/Attic/groups.awk,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- www/Attic/groups.awk 1999/09/20 14:30:53 1.3 +++ www/Attic/groups.awk 1999/09/30 18:43:32 1.4 @@ -26,23 +26,23 @@ next; } -$1 == "C" { country = substr($0, 2); +$1 == "C" { country = substr($0, 3); 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 == "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 } +$1 == "P" { prov = substr($0, 3); next } +$1 == "T" { city = substr($0, 3); next } +$1 == "A" { addr = substr($0, 3); next } +$1 == "O" { org = substr($0, 3); next } +$1 == "I" { indv = substr($0, 3); next } +$1 == "B" { phone = substr($0, 3); next } +$1 == "F" { fax = substr($0, 3); next } +$1 == "M" { email = substr($0, 3); next } +$1 == "U" { url = substr($0, 3); next } +$1 == "N" { note = substr($0, 3); next } # left over - must be part of note? {