mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
add source links
This commit is contained in:
parent
0c891f28db
commit
7383736cf8
5 changed files with 34 additions and 7 deletions
3
CHANGES
3
CHANGES
|
@ -1,3 +1,6 @@
|
|||
February 14, 2005
|
||||
add source links to man pages
|
||||
|
||||
February 13, 2005
|
||||
lib9: add readcons(1)
|
||||
add laddr, raddr to Netconninfo (see dial(3))
|
||||
|
|
24
dist/addsrclinks
vendored
Executable file
24
dist/addsrclinks
vendored
Executable file
|
@ -0,0 +1,24 @@
|
|||
#!/usr/bin/perl
|
||||
|
||||
@_ = <>;
|
||||
my $root = $ENV{'PLAN9'};
|
||||
my $html = join("", @_);
|
||||
$html =~ s;$root;XXX$root;g;
|
||||
while($html =~ /((.|\n)*)XXX($root\/([a-zA-Z0-9_.\/]|−)*[a-zA-Z0-9_\/])((.|\n)*)/){
|
||||
($a, $b, $c) = ($1, $3, $5);
|
||||
$b =~ s/−/-/g;
|
||||
$l = $b;
|
||||
while(! -e $l){
|
||||
if($l =~ /(.*\/)(.+)/){
|
||||
$l = $1;
|
||||
}else{
|
||||
last;
|
||||
}
|
||||
}
|
||||
$bb = substr($b, length($l));
|
||||
$b = $l;
|
||||
$b =~ s/-/\−/g;
|
||||
$bb =~ s/-/\−/g;
|
||||
$html = "$a<a href=\"$l\">$b</a>$bb$c";
|
||||
}
|
||||
print $html;
|
3
dist/checkman.awk
vendored
3
dist/checkman.awk
vendored
|
@ -46,7 +46,6 @@ BEGIN {
|
|||
Omitman["sh(1)"] = 1
|
||||
Omitman["ssh(1)"] = 1
|
||||
Omitman["stty(1)"] = 1
|
||||
Omitman["tar(1)"] = 1
|
||||
Omitman["tex(1)"] = 1
|
||||
Omitman["unutf(1)"] = 1
|
||||
Omitman["vnc(1)"] = 1
|
||||
|
@ -83,8 +82,6 @@ BEGIN {
|
|||
Omitman["sin(3)"] = 1
|
||||
Omitman["strerror(3)"] = 1
|
||||
|
||||
Omitman["factotum(4)"] = 1 # for now leave undocumented
|
||||
|
||||
Omitman["core(5)"] = 1
|
||||
Omitman["passwd(5)"] = 1
|
||||
|
||||
|
|
9
dist/main.html
vendored
9
dist/main.html
vendored
|
@ -30,6 +30,8 @@ Edit ./^$/,s/<Table/<table border=0 cellspacing=0 cellpadding=0 width=100%/g
|
|||
|
|
||||
<a href="man/man1/install.html">install notes</a>
|
||||
|
|
||||
<a href="/usr/local/plan9/">browse</a>
|
||||
|
|
||||
<a href="man/man1/cvs.html">cvs</a>
|
||||
|
|
||||
<a href="http://cvs.pdos.lcs.mit.edu/cvs/plan9">cvsweb</a>
|
||||
|
@ -71,8 +73,8 @@ Edit ./^$/,s/<Table/<table border=0 cellspacing=0 cellpadding=0 width=100%/g
|
|||
<tr><td><td>
|
||||
latest tree: <a href="plan9port.tgz">plan9port.tgz</a>
|
||||
<font size=-1>(<a href="/cgi-bin/info.cgi?file=/plan9port/plan9port.tgz">date and checksums</a>;
|
||||
<a href="http://cvs.pdos.lcs.mit.edu/cvs/plan9/CHANGES?rev=HEAD">list of recent changes</a>;
|
||||
<a href="http://cvs.pdos.lcs.mit.edu/cvs/plan9/LICENSE?rev=HEAD">license</a>)</font>
|
||||
<a href="/usr/local/plan9/CHANGES">list of recent changes</a>;
|
||||
<a href="/usr/local/plan9/LICENSE">license</a>)</font>
|
||||
<br>
|
||||
</table>
|
||||
|
||||
|
@ -111,7 +113,8 @@ Edit ./^$/,s/<Table/<table border=0 cellspacing=0 cellpadding=0 width=100%/g
|
|||
|
||||
<table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=10><td></table>
|
||||
|
||||
Latchesar Ionkov has contributed many fixes to tricky bugs.
|
||||
Latchesar Ionkov has contributed many fixes to tricky bugs, and
|
||||
got <a href="man/man4/factotum.html"><i>factotum</i>(4)</a> up and running.
|
||||
|
||||
<table border=0 cellspacing=0 cellpadding=0 width=100%><tr height=10><td></table>
|
||||
|
||||
|
|
2
dist/manweb
vendored
2
dist/manweb
vendored
|
@ -72,7 +72,7 @@ for (i in */[~.]*.[0-9]*){
|
|||
sed '/<!-- TRAILER -->/q' /tmp/manweb.html
|
||||
cat $PLAN9/dist/mantrailer.html
|
||||
sed -n '/<!-- TRAILER -->/,$p' /tmp/manweb.html
|
||||
} >$d/$p.html
|
||||
} | $PLAN9/dist/addsrclinks >$d/$p.html
|
||||
}
|
||||
rm /tmp/manweb.html
|
||||
cd $PLAN9/dist
|
||||
|
|
Loading…
Reference in a new issue