1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
#! /usr/local/bin/gawk -f
# fixref.awk --- fix xrefs in texinfo documents
# Copyright, 1991, Arnold David Robbins, arnold@skeeve.atl.ga.us
# Copyright, 1998, Arnold David Robbins, arnold@gnu.org
# FIXREF 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.
#
# FIXREF 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
# Updated: Jul 21 1992 --- change unknown
# Updated: Jul 18 1997 --- bug fix
# usage: gawk -f fixref.awk input-file > output-file
# or if you have #!: fixref.awk input-file > output-file
# Limitations:
# 1. no more than one cross reference on a line
# 2. cross references may not cross a newline
BEGIN \
{
# we make two passes over the file. To do that we artificially
# tweak the argument vector to do a variable assignment
if (ARGC != 2) {
printf("usage: %s texinfo-file\n", ARGV[0]) > "/dev/stderr"
exit 1
}
ARGV[2] = "pass=2"
ARGV[3] = ARGV[1]
ARGC = 4
# examine paragraphs
RS = ""
heading = "@(chapter|appendix|unnumbered|(appendix(sec|subsec|subsubsec))|section|subsection|subsubsection|unnumberedsec|heading|top)"
pass = 1
# put space between paragraphs on output
ORS = "\n\n"
}
pass == 1 && NF == 0 { next }
# pass == 1 && /@node/ \
# bug fix 7/18/96
pass == 1 && /^@node/ \
{
lname = name = ""
n = split($0, lines, "\n")
for (i = 1; i <= n; i++) {
if (lines[i] ~ ("^" heading)) {
sub(heading, "", lines[i])
sub(/^[ \t]*/, "", lines[i])
lname = lines[i]
# printf "long name is '%s'\n", lines[i]
} else if (lines[i] ~ /@node/) {
sub(/@node[ \t]*/, "", lines[i])
sub(/[ \t]*,.*$/, "", lines[i])
name = lines[i]
# printf "node name is '%s'\n", lines[i]
}
}
if (name && lname)
names[name] = lname
else if (lname)
printf("node name for %s missing!\n", lname) > "/dev/stderr"
else
printf("long name for %s missing!\n", name) > "/dev/stderr"
if (name ~ /:/)
printf("node `%s' contains a `:'\n", name) > "/dev/stderr"
if (lname) {
if (lname ~ /:/)
printf("name `%s' contains a `:'\n", lname) > "/dev/stderr"
else if (lname ~ /,/) {
printf("name `%s' contains a `,'\n", lname) > "/dev/stderr"
gsub(/,/, " ", lname)
names[name] = lname # added 7/18/97
}
}
}
pass == 2 && /@(x|px)?ref{/ \
{
# split the paragraph into lines
# write them out one by one after fixing them
n = split($0, lines, "\n")
for (i = 1; i <= n; i++)
if (lines[i] ~ /@(x|px)?ref{/) {
res = updateref(lines[i])
printf "%s\n", res
} else
printf "%s\n", lines[i]
printf "\n" # avoid ORS
next
}
function updateref(orig, refkind, line)
{
line = orig # work on a copy
# find the beginning of the reference
match(line, "@(x|px)?ref{")
refkind = substr(line, RSTART, RLENGTH)
# pull out just the node name
sub(/.*ref{/, "", line)
sub(/}.*$/, "", line)
sub(/,.*/, "", line)
# debugging
# printf("found ref to node '%s'\n", line) > "/dev/stderr"
# If the node name and the section name are the same
# we don't want to bother doing this.
if (! (line in names)) # sanity checking
printf("no long name for %s\n", line) > "/dev/stderr"
else if (names[line] != line && names[line] !~ /[:,]/) {
# build up new ref
newref = refkind line ", ," names[line] "}"
pat = refkind line "[^}]*}"
sub(pat, newref, orig)
}
return orig
}
pass == 2 { print }
|