-
Notifications
You must be signed in to change notification settings - Fork 791
Expand file tree
/
Copy pathmkdescidx
More file actions
executable file
·138 lines (120 loc) · 2.98 KB
/
mkdescidx
File metadata and controls
executable file
·138 lines (120 loc) · 2.98 KB
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
#!/usr/local/bin/perl
# Index of descriptor names.
# Arnaud Le Hors lehors@w3.org/Ian Jacobs ij@w3.org
# $Id: mkdescidx,v 2.5 2006-10-09 18:55:52 ihickson Exp $
use English;
if (($_ = $ARGV[0], /^-r/) && $ARGV[0]) {
shift;
$realpath = $ARGV[0];
shift;
} else {
$realpath = ();
}
$PROGNAME = substr($0, rindex($0, "/") + 1);
if (!$ARGV[1]) {
print "Usage: $PROGNAME [-r realpath] indexfile dbase\n";
exit 1;
} else {
$indexf = $ARGV[0];
$dbasef = $ARGV[1];
}
### main
# compute path relative to index file
$root = "";
@elems = split("/", $indexf);
pop @elems; # get rid of the file itself
foreach (@elems) {
$root .= "../";
}
# copy file in memory
sub readdb {
if (!open(DBASE, $_[0])) {
die "$PROGNAME Error: Cannot open file: $_[0]\n";
}
$INPUT_RECORD_SEPARATOR="/*";
$buf = "";
$indexes = ();
while ($buf = <DBASE>) {
$INPUT_RECORD_SEPARATOR="*/";
unless (eof(DBASE)) {
$entry=<DBASE>;
$INPUT_RECORD_SEPARATOR="/*";
if ($entry =~ /((.*?);;.*)\*\//sio) {
$data = $1;
$key = $2;
# Newlines and tabs-> space
$data =~ s/[\n\t]+/ /gs;
$indexes{$key} = $data;
} else {
warn "Bad syntax: $entry\n";
}
}
}
close(DBASE);
}
sub cleanup {
# Put in right HTML markup
$arg = $_[0];
$arg =~ s/^[ \t\n]+//gs;
$arg =~ s/[ \t\n]+$//gs;
$arg =~ s/[&]/\&\;/gs;
$arg =~ s/[<]/\<\;/gs;
$arg =~ s/[>]/\>\;/gs;
$arg =~ s/\{([^\}]*)\}([^{]*)\{\}/<a href=\"$1\">$2<\/a>/g;
return "$arg";
}
# Descriptor database entries between "/*" and "*/"
sub format_name {
$name = cleanup($_[0]);
print OUTPUT "<td><span class=\"descinst-" . $name . " xref\">'" . $name . "'<\/span>\n";
}
sub format_val {
# Replace <n> by link to value def of n
# Replace <'m'> by link to descriptor 'm'
$value = $_[0];
$value =~ s/^[ \t\n]+//gs;
$value =~ s/[ \t\n]+$//gs;
$value =~ s/\<([^']+?)\>/<span class=\"value-inst-\1\">\<\;\1\>\;<\/span>/sgi;
$value =~ s/\<\'(.+?)\'\>/<span class=\"descinst-\1\">\'\1\'<\/span>/sgi;
print OUTPUT "<td>$value\n";
}
sub format_init {
print OUTPUT "<td>" . cleanup($_[0]) . "\n";
}
#sub format_media {
# # If just visual, replace by space.
# $fmedia = cleanup($_[0]);
# $fmedia =~ s/^visual$/ /;
# print OUTPUT "<td>$fmedia\n";
#}
sub table_head {
print OUTPUT "<table border=1 align=center>\n";
print OUTPUT "<thead>";
print OUTPUT "<tr align=center>";
print OUTPUT "<th>Name";
print OUTPUT "<th>Values";
print OUTPUT "<th>Initial value";
print OUTPUT "</thead>";
print OUTPUT "\n";
}
sub table_body {
foreach $key (sort (keys %indexes)) {
($name, $val, $init, $media) = split(/;;/, $indexes{$key});
print OUTPUT "<tr>";
format_name($name);
format_val($val);
format_init($init);
print OUTPUT "\n";
}
}
sub table_foot {
print OUTPUT "</table>\n";
}
# main
readdb($dbasef);
open(OUTPUT, "> $indexf");
table_head();
table_body();
table_foot();
close(OUTPUT);
close(DBASE);