From ff9f8c2de0068df79ceef845737031d03b0df26e Mon Sep 17 00:00:00 2001 From: wlemb Date: Wed, 16 Apr 2003 23:34:20 +0000 Subject: * tmac/hyphenex.sh: Replaced with... * tmac/hyphenex.pl: This perl script to avoid sed compatibility nightmares. --- tmac/hyphenex.pl | 64 +++++++++++++++++++++++++++++++++++++++++ tmac/hyphenex.sh | 88 -------------------------------------------------------- 2 files changed, 64 insertions(+), 88 deletions(-) create mode 100644 tmac/hyphenex.pl delete mode 100644 tmac/hyphenex.sh (limited to 'tmac') diff --git a/tmac/hyphenex.pl b/tmac/hyphenex.pl new file mode 100644 index 00000000..493303f2 --- /dev/null +++ b/tmac/hyphenex.pl @@ -0,0 +1,64 @@ +#! /usr/bin/perl +# +# +# hyphenex.pl +# +# This small filter converts a hyphenation exception log article for +# TUGBoat to a real \hyphenation block. +# +# Written by Werner Lemberg . +# +# Version 1.0 (2003/04/16) +# +# Public domain. +# +# +# Usage: +# +# [perl] hyphenex.pl < tugboat-article > hyphenation-exceptions + +print "% Hyphenation exceptions for US English,\n"; +print "% based on the hyphenation exception log article in TUGBoat.\n"; +print "%\n"; +print "% This is an automatically generated file. Do not edit!\n"; +print "%\n"; +print "% Please contact Barbara Beeton \n"; +print "% for corrections and omissions.\n"; +print "\n"; +print "\\hyphenation{\n"; + +while (<>) { + next if not (m/^\\[123456]/ || m/^\\tabalign/); + chop; + s/\\[^123456\s{]+//g; + s/{(.*?)}/\1/g; + next if m/^\s*&/; + s/%.*//; + s/\s*$//; + s/\*$//; + @field = split(' '); + if ($field[0] eq "\\1" || $field[0] eq "\\4") { + print " $field[2]\n"; + } + elsif ($field[0] eq "\\2" || $field[0] eq "\\5") { + print " $field[2]\n"; + @suffix_list = split(/,/, "$field[3]"); + foreach $suffix (@suffix_list) { + print " $field[2]$suffix\n"; + } + } + elsif ($field[0] eq "\\3" || $field[0] eq "\\6") { + @suffix_list = split(/,/, "$field[3],$field[4]"); + foreach $suffix (@suffix_list) { + print " $field[2]$suffix\n"; + } + } + else { + @field = split(/&\s*/); + print " $field[1]\n"; + } +} + +print "}\n"; +print "\n"; +print "% EOF\n"; diff --git a/tmac/hyphenex.sh b/tmac/hyphenex.sh deleted file mode 100644 index 89d94fc7..00000000 --- a/tmac/hyphenex.sh +++ /dev/null @@ -1,88 +0,0 @@ -#! /bin/sh -# -# -# hyphenex.sh -# -# This small filter converts a hyphenation exception log article for -# TUGBoat to a real \hyphenation block. -# -# Written by Werner Lemberg . -# -# Version 1.3 (2003/04/15) -# -# Public domain. -# -# -# Usage: -# -# sh hyphenex.sh < tugboat-article > hyphenation-exceptions - -cat >/tmp/sed.$$ < for corrections and omissions.\\ -\\ -\\\\hyphenation{ -\$ i\\ -}\\ -\\ -% EOF -/^\\\\tabalign/ { - s/{}//g - s/[ ][ ]*/ /g - s/ *\\\\[^ ][^ ]*\$// - s/\\\\tabalign *[^ ][^ ]*.*& *\\(.*\\)\$/ \\1/p - b -} -/^\\\\[123456]/ !d -s/\\\\4/\\\\1/ -s/\\\\5/\\\\2/ -s/\\\\6/\\\\3/ -s/[ ][ ]*/ /g -s/^/ / -s/\\\\1 [^ ][^ ]* {\\(.*\\)}\$/\\1/ -s/\\\\2 [^ ][^ ]* {\\(.*\\) \\(.*\\),\\(.*\\),\\(.*\\)}\$/\\1\\n \\1\\2\\n \\1\\3\\n \\1\\4/ -s/\\\\2 [^ ][^ ]* {\\(.*\\) \\(.*\\),\\(.*\\)}\$/\\1\\n \\1\\2\\n \\1\\3/ -s/\\\\2 [^ ][^ ]* {\\(.*\\) \\(.*\\)}\$/\\1\\n \\1\\2/ -s/\\\\3 [^ ][^ ]* {\\(.*\\) \\(.*\\) \\(.*\\)}\$/\\1\\2\\n \\1\\3/ -s/\\\\1 [^ ][^ ]* {\\(.*\\)} .*\$/\\1/ -s/\\\\2 [^ ][^ ]* {\\(.*\\) \\(.*\\),\\(.*\\),\\(.*\\)} .*\$/\\1\\n \\1\\2\\n \\1\\3\\n \\1\\4/ -s/\\\\2 [^ ][^ ]* {\\(.*\\) \\(.*\\),\\(.*\\)} .*\$/\\1\\n \\1\\2\\n \\1\\3/ -s/\\\\2 [^ ][^ ]* {\\(.*\\) \\(.*\\)} .*\$/\\1\\n \\1\\2/ -s/\\\\3 [^ ][^ ]* {\\(.*\\) \\(.*\\) \\(.*\\)} .*\$/\\1\\2\\n \\1\\3/ -s/\\\\1 {.*} {\\(.*\\)}\$/\\1/ -s/\\\\2 {.*} {\\(.*\\) \\(.*\\),\\(.*\\),\\(.*\\)}\$/\\1\\n \\1\\2\\n \\1\\3\\n \\1\\4/ -s/\\\\2 {.*} {\\(.*\\) \\(.*\\),\\(.*\\)}\$/\\1\\n \\1\\2\\n \\1\\3/ -s/\\\\2 {.*} {\\(.*\\) \\(.*\\)}\$/\\1\\n \\1\\2/ -s/\\\\3 {.*} {\\(.*\\) \\(.*\\) \\(.*\\)}\$/\\1\\2\\n \\1\\3/ -s/\\\\1 {.*} {\\(.*\\)} .*\$/\\1/ -s/\\\\2 {.*} {\\(.*\\) \\(.*\\),\\(.*\\),\\(.*\\)} .*\$/\\1\\n \\1\\2\\n \\1\\3\\n \\1\\4/ -s/\\\\2 {.*} {\\(.*\\) \\(.*\\),\\(.*\\)} .*\$/\\1\\n \\1\\2\\n \\1\\3/ -s/\\\\2 {.*} {\\(.*\\) \\(.*\\)} .*\$/\\1\\n \\1\\2/ -s/\\\\3 {.*} {\\(.*\\) \\(.*\\) \\(.*\\)} .*\$/\\1\\2\\n \\1\\3/ -s/\\\\1 [^ ][^ ]* \\([^ ][^ ]*\\)\$/\\1/ -s/\\\\2 [^ ][^ ]* \\([^ ][^ ]*\\) \\([^ ][^ ]*\\),\\([^ ][^ ]*\\),\\([^ ][^ ]*\\)\$/\\1\\n \\1\\2\\n \\1\\3\\n \\1\\4/ -s/\\\\2 [^ ][^ ]* \\([^ ][^ ]*\\) \\([^ ][^ ]*\\),\\([^ ][^ ]*\\)\$/\\1\\n \\1\\2\\n \\1\\3/ -s/\\\\2 [^ ][^ ]* \\([^ ][^ ]*\\) \\([^ ][^ ]*\\)\$/\\1\\n \\1\\2/ -s/\\\\3 [^ ][^ ]* \\([^ ][^ ]*\\) \\([^ ][^ ]*\\) \\([^ ][^ ]*\\)\$/\\1\\2\\n \\1\\3/ -s/\\\\1 [^ ][^ ]* \\([^ ][^ ]*\\) .*\$/\\1/ -s/\\\\2 [^ ][^ ]* \\([^ ][^ ]*\\) \\([^ ][^ ]*\\),\\([^ ][^ ]*\\),\\([^ ][^ ]*\\) .*\$/\\1\\n \\1\\2\\n \\1\\3\\n \\1\\4/ -s/\\\\2 [^ ][^ ]* \\([^ ][^ ]*\\) \\([^ ][^ ]*\\),\\([^ ][^ ]*\\) .*\$/\\1\\n \\1\\2\\n \\1\\3/ -s/\\\\2 [^ ][^ ]* \\([^ ][^ ]*\\) \\([^ ][^ ]*\\) .*\$/\\1\\n \\1\\2/ -s/\\\\3 [^ ][^ ]* \\([^ ][^ ]*\\) \\([^ ][^ ]*\\) \\([^ ][^ ]*\\) .*\$/\\1\\2\\n \\1\\3/ -s/\\*// -s/\\\\llap *{\\(.*\\)}/\\1/ -s/\\\\[^ ]* // -s/\\\\[^ ][^ ]*\$// -s/{.*}// -p -SED_EOF - -sed -n -f /tmp/sed.$$ -rm /tmp/sed.$$ - -# EOF -- cgit v1.2.1