New file.
[bpt/emacs.git] / lispref / permute-index
CommitLineData
e3eb9fa7
EZ
1#!/bin/csh -f
2# Generate a permuted index of all names.
3# The result is a file called index.fns.
4
5# Copyright (C) 2001 Free Software Foundation, Inc.
6#
7# This file is part of GNU Emacs.
8#
9# GNU Emacs is free software; you can redistribute it and/or modify
10# it under the terms of the GNU General Public License as published by
11# the Free Software Foundation; either version 2, or (at your option)
12# any later version.
13#
14# GNU Emacs is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17# GNU General Public License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with GNU Emacs; see the file COPYING. If not, write to the
21# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22# Boston, MA 02111-1307, USA.
23
24# You will need to modify this for your needs.
25
26
27set TEXINDEX=texindex # path to texindex command
28#set EMACS=gnuemacs # your emacs command
29#set TEX=tex # your tex command
30
31set MANUAL=elisp # the base name of the manual
32
33# goto 3
34
351:
36echo "Extract raw index from texinfo fn index."
37# Let texindex combine duplicate entries, later.
38# But it wants to protect non-alphanumerics thus confusing ptx.
39# Also change `\ ' to just a ` ', since texindex will fail. This is produced
40# by `@findex two words' in an example environment (no doubt among others).
41# delete wrapper parens
42# change dots {} to dots{}
43# change {-} to char form, so ptx wont ignore it.
44# delete leading \entry {
45# change '\ ' to ' '
46# change lines with = < > since they mess up field extraction.
47# separate into fields delimited by "
48cat ${MANUAL}.fn | \
49 sed \
50 -e 's/(\([^)]*\))/\1/' \
51 -e 's/\\dots {}/(\\dots{})/' \
52 -e "s/{-}/{{\\tt\\char'055}}/" \
53 -e 's,^[^ ]* {,,' \
54 -e 's, },},' \
55 -e 's,\\ , ,g' \
56 -e 's/{\\tt\\char61}/=/' \
57 -e 's/{\\tt\\gtr}/>/' \
58 -e 's/{\\tt\\less}/</' \
59 -e 's/}{/"/g' \
60 | awk -F\" '{print $2, $1}' >! permuted.raw
61
622:
63# Build break file for ptx.
64cat <<EOF > permuted.break
65-
66:
67EOF
68# Build the ignore file for ptx.
69# We would like to ignore "and", "or", and "for",
70# but ptx ignores ignore words even if they stand alone.
71cat <<EOF > permuted.ignore
72the
73in
74to
75as
76a
77an
78of
79on
80them
81how
82from
83by
84EOF
85
86echo "Make troff permuted index."
87ptx -i permuted.ignore -b permuted.break -f -r -w 144 \
88 < permuted.raw >! permuted.t
89
903:
91echo "Extract the desired fields."
92awk -F\" '{printf "%s\"%s\"%s\n", $4,$6,$9}' permuted.t >! permuted.fields
93
944:
95echo "Format for texindex."
96# delete lines that start with "and ", "for "
97sed < permuted.fields \
98 -e 's/=/{\\tt\\char61}/' \
99 -e 's/>/{\\tt\\gtr}/' \
100 -e 's/</{\\tt\\less}/' \
101 -e '/"and /d' \
102 -e '/"for /d' \
103 | awk -F\" 'NF>0 {if ($1=="") {\
104 print "\entry {" $2 "}{" 0+$3 "}{" $2 "}" }\
105 else {\
106 print "\entry {" $2 ", " $1 "}{" 0+$3 "}{" $2 ", " $1 "}"} }'\
107 > permuted.fn
108
1095:
110echo "Sort with texindex."
111${TEXINDEX} permuted.fn
112#mv permuted.fns ${MANUAL}.fns
113
114# The resulting permuted.fns will be read when we run TeX
115# on the manual the second time. Or you can use permuted.texinfo here.
116#${TEX} permuted.texinfo
117
1186:
119echo "Clean up."
120rm -f permuted.fields permuted.t permuted.raw
121rm -f permuted.break permuted.ignore permuted.fn