Skip to content

Commit 5db2ec6

Browse files
committed
Add redirects for GitHub README rendered pages "xref"ing to sub-sections
Signed-off-by: Jim Klimov <jimklimov@gmail.com>
1 parent e535ce3 commit 5db2ec6

3 files changed

Lines changed: 12 additions & 0 deletions

File tree

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<HTML><HEAD><meta http-equiv="refresh" content="0; url=Configuration_notes.html#BigServers"/></HEAD><BODY>Please see <a href=Configuration_notes.html#BigServers>BigServers</a> section.</BODY></HTML>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<HTML><HEAD><meta http-equiv="refresh" content="0; url=Configuration_notes.html#UPS_shutdown"/></HEAD><BODY>Please see <a href=Configuration_notes.html#UPS_shutdown>UPS_shutdown</a> section.</BODY></HTML>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/sh
2+
3+
generate() {
4+
P="$1"
5+
U="Configuration_notes.html#$P"
6+
printf '<HTML><HEAD><meta http-equiv="refresh" content="0; url=%s"/></HEAD><BODY>Please see <a href=%s>%s</a> section.</BODY></HTML>\n' "$U" "$U" "$P" > "$P.html"
7+
}
8+
9+
for S in UPS_shutdown BigServers ; do generate $S; done
10+

0 commit comments

Comments
 (0)