=================================================================== RCS file: /cvsrepo/anoncvs/cvs/www/Attic/support.awk,v retrieving revision 1.2 retrieving revision 1.3 diff -c -r1.2 -r1.3 *** www/Attic/support.awk 1999/09/20 13:48:01 1.2 --- www/Attic/support.awk 1999/09/20 14:30:53 1.3 *************** *** 1,5 **** --- 1,7 ---- #!/usr/bin/nawk -f + # used both by support.bld and by groups.bld, since the formats are similar + # convert data like this (order doesn't matter except 0 at front) # 0 # C Canada *************** *** 49,63 **** } function dump() { ! print "" ! if (indv != "") ! print indv "
" ! print org "
" addr print " " city "
" prov ! print " " phone "
" fax print " " ! print "" email "" ! print "
" print "" url "" print " " note } --- 51,69 ---- } function dump() { ! print "" ! print "" ! if (indv != "") ! print indv "
" ! print org "
" addr print " " city "
" prov ! print " " ! if (phone != "") ! print phone "
" ! print fax print " " ! if (email != "") ! print "" email "" "
" print "" url "" print " " note }