From a622c2c552513ea1b3d0a6b03e1ec8b5cae19ae9 Mon Sep 17 00:00:00 2001 From: Andreas Huggel Date: Wed, 26 May 2004 03:15:59 +0000 Subject: [PATCH] Updated script to include a header --- src/tags.awk | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/src/tags.awk b/src/tags.awk index f593df7f..4f10c8bc 100644 --- a/src/tags.awk +++ b/src/tags.awk @@ -1,18 +1,28 @@ ################################################################################ -# File tags.awk -# Brief Awk script to convert a taglist to XML format used in the -# documentation. -# $ taglist [make [model]] | awk -f tags.awk > tags.xml -# Version $Name: $ $Revision: 1.2 $ -# Author Andreas Huggel (ahu) -# ahuggel@gmx.net -# Date 07-Feb-04, ahu: created +# File : tags.awk +# Version : $Name: $ $Revision: 1.3 $ +# 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 tags.awk > tags.xml ################################################################################ BEGIN { FS = ", " print ""; print ""; + + print "" + print "
" + print "XYZ MakerNote Tags defined in Exiv2" + print "" + print "

Tags found in the MakerNote of images taken with XYZ cameras. These tags " + print "are defined by Exiv2 in accordance with [X].

" + print "

Click on a column header to sort the table.

" + print "
" + print "
" print "" } @@ -29,4 +39,5 @@ BEGIN { END { print "" + print "
" }