[SCM] exiv2 packaging branch, master, updated. debian/0.25-3.1-3734-gdcbc29a

Maximiliano Curia maxy at moszumanska.debian.org
Thu Jul 13 17:36:24 UTC 2017


Gitweb-URL: http://git.debian.org/?p=pkg-kde/kde-extras/exiv2.git;a=commitdiff;h=a622c2c

The following commit has been merged in the master branch:
commit a622c2c552513ea1b3d0a6b03e1ec8b5cae19ae9
Author: Andreas Huggel <ahuggel at gmx.net>
Date:   Wed May 26 03:15:59 2004 +0000

    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 f593df7..4f10c8b 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)
-#          <a href="mailto:ahuggel at gmx.net">ahuggel at gmx.net</a>
-#  Date    07-Feb-04, ahu: created
+# File     : tags.awk
+# Version  : $Name:  $ $Revision: 1.3 $
+# Author(s): Andreas Huggel (ahu) <ahuggel at gmx.net>
+# 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 "<?xml version = '1.0'?>";   
    print "<?xml-stylesheet type=\"text/xsl\" href=\"tags.xsl\"?>";
+
+   print "<TAGLIST>"
+   print "<HEADER>"
+   print "<title>XYZ MakerNote Tags defined in Exiv2</title>"
+   print "<text>"
+   print "<p>Tags found in the MakerNote of images taken with XYZ cameras. These tags "
+   print "are defined by Exiv2 in accordance with <a href=\"makernote.html#RX\">[X]</a>.</p>"
+   print "<p>Click on a column header to sort the table.</p>"
+   print "</text>"
+   print "</HEADER>"
    print "<ROWSET>"
 }
 
@@ -29,4 +39,5 @@ BEGIN {
 
 END {
    print "</ROWSET>"   
+   print "</TAGLIST>"
 }

-- 
exiv2 packaging



More information about the pkg-kde-commits mailing list