# build-history.awk - Build a history HTML -*- coding: latin1 *-* # page from the NEWS file # Copyright (C) 2006 g10 Code GmbH # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of # the License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, # USA. # We use a slightly modified format of the NEWS file to cope with i18n # issues. Here is an example of such a news file: # # Noteworthy changes in version 42.1 (2000-01-01) # ----------------------------------------------- # # (en) New: Script to build a HTML version # of the NEWS. # (de) Neu: Script zum Erzeugen der HTML Version # # (en) Blurb # (de) Blabla # # ~~~~~~~~~~~~~~~ # foo.lisp: 1.17 # bar.lisp: 7.53.1 # ~~~~~~~~~~~~~~~ # # Noteworthy changes in version 42.0 (1999-12-31) # ------------------------------------------------ # # Empty lines as well as lines starting with a hash mark are entirly # ignored. Paragraphs are indicated by the language tags. A new # revision history starts with the "Noteworthy .." line; the release # date is expected in parentheses on that line. If it is not given the # section won't be rendered. BEGIN { if ( lang == "" ) lang = "en"; in_section = 0; in_para = 0; in_vers = 0; any_para = 0; version = ""; reldate = ""; header_text["en"] = "" \ "m4_dnl -*-html-*-\n" \ "m4_include(`template.m4')\n" \ "m4_define(`EN')\n" \ "m4_define(`DE_FILE', `change-history-de.html')\n" \ "PAGE_START\n" \ "
Please note that old release still contain meanwhile fixed\n" \ "security issues.
\n" ; header_text["de"] = "" \ "m4_dnl -*-html-*-\n" \ "m4_include(`template.m4')\n" \ "m4_define(`DE')\n" \ "m4_define(`EN_FILE', `change-history.html')\n" \ "PAGE_START\n" \ "Die deutsche Übersetzung der Historie ist nicht notwendigerweise\n" \ "vollständig. Begonnen wurde sie mit Version 1.0.0.
\n" \ "Bitte beachten Sie, dass die alten Versionen die ggf.\n" \ "zwischenzeitlich beseitigten Sicherheitslöcher weiterhin enthalten!
\n"; release_text["en"] = "released "; release_text["de"] = "veröffentlicht "; noreldate_text["en"] = "[ in progress; not yet released ]"; noreldate_text["de"] = "[ in Arbeit; bisher noch nicht veröffentlicht ]"; explicit_dl_text["en"] = "Explicit download of this version:"; explicit_dl_text["de"] = "Expliziter Download dieser Version:"; print header_text[lang]; } /^#/ { next } /^---/ { next } in_section && $0 ~ /^Noteworthy/ { if (in_para) print "" if (in_vers) print "" in_section = 0; in_para = 0; in_vers = 0; any_para = 0; } !in_section { if ($0 !~ /^Noteworthy/) next; version = $5; reldate = ""; if (index ($0, "(")) { sub (/^.*\(/, ""); sub (/\).*$/, ""); reldate = $0; print "" next; } in_para { print $0; } in_vers && /^~~~/ { in_vers = 0; print "" printf "
%s ", explicit_dl_text[lang];
printf "gpg4win-%s.exe
", version, version;
printf "