################################################################################ # File : iptc.awk # Author(s): Andreas Huggel (ahu) # History : 07-Feb-04, ahu: created # # Description: # Awk script to convert a taglist to XML format used in the documentation. # $ taglist [SectionName] | awk -f iptc.awk > iptc.xml ################################################################################ BEGIN { FS = ", " print ""; print ""; print "" print "
" print "Iptc datasets defined in Exiv2" print "" print "

Datasets are defined according to the specification of the Iptc " print "Information Interchange Model (IIM).

" print "

Click on a column header to sort the table.

" print "
" print "
" print "" } { print " "; print " " $1 "" print " " $2 "" print " " $3 "" print " " $4 "" print " " $5 "" print " " $6 "" print " " $7 "" print " " $8 "" print " " $9 "" print " " $10 "" print " " $11 "" print " "; } END { print "" print "
" }