summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/isodoc
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2014-02-01 22:23:36 +0000
committerKarl Berry <karl@freefriends.org>2014-02-01 22:23:36 +0000
commitba4afd63a042ff0ad82becb55bbdd8e9ddb0fbe9 (patch)
treef40cba20e312446bf498cd992dbb59fef8186325 /Master/texmf-dist/doc/latex/isodoc
parenta31a38cf33bf39e953b2894ed1493b5b421da569 (diff)
empty dir
git-svn-id: svn://tug.org/texlive/trunk@32842 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/isodoc')
-rwxr-xr-xMaster/texmf-dist/doc/latex/isodoc/listkeys50
1 files changed, 0 insertions, 50 deletions
diff --git a/Master/texmf-dist/doc/latex/isodoc/listkeys b/Master/texmf-dist/doc/latex/isodoc/listkeys
deleted file mode 100755
index ab77a2f607d..00000000000
--- a/Master/texmf-dist/doc/latex/isodoc/listkeys
+++ /dev/null
@@ -1,50 +0,0 @@
-#!/bin/bash
-#shopt -s extglob
-
-# after the addition of new options, two regions of the documentation in
-# isodoc.dtx need to be updated:
-# 1. the body of the definition of \showkeys
-# listkeys will print that body with the argument `show'
-# 2. The body of the tabular (in the section `Commands'), which shows
-# the options having a corresponding command.
-# listkeys will print that body with the argument `defs'
-#
-# An easy way to replace the data in isodoc.dtx is, using the vim editor:
-# 1. select the lines (the contents of \def\showkeys, say) with V and then
-# 2. type :!listkeys show
-
-
-usage() { echo "Usage: listkeys defs|show"; }
-[[ -z $1 ]] && usage
-
-type=$1
-[[ $type =~ ^(defs|show)$ ]] || usage
-
-minipage='^(acceptdesc|copyto|enclosures|logoaddres|signature|returnaddress)$'
-undef='^(accountname|accountno|bic|iban|routingno|vatno)$'
-# find keys which have a corresponding command:
-a=($(
- while read -r x; do
- [[ $x =~ define@key ]] || continue
- # \define@key{isodoc}{closing} {\def\closing{#1}}
- re='\\define@key\{isodoc\}\{([[:alpha:]]+)\}.*\\def\\\1\{'
- # ----word---- ^^-same word
- [[ $x =~ $re ]] || continue
- echo ${BASH_REMATCH[1]}
- done<isodoc.dtx |sort
-))
-
-if [[ $type == defs ]]; then
- for i in ${a[@]}; do
- if [[ $i =~ $minipage ]]; then
- printf "%20s & \\%s\\NN\n" $i "@isodocmp{$i}"
- elif [[ $i =~ $undef ]]; then
- printf "%20s & \\%s\\NN\n" $i "@isodocun{$i}"
- else
- printf "%20s & \\%s\\NN\n" $i $i
- fi
- done
-else
- for i in ${a[@]}; do echo $i; done |
- cols -5 --squeeze --sep=' & ' --suf='\NN' --pre='% '
-fi