summaryrefslogtreecommitdiffstats
path: root/doc/tools
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-10-07 18:23:40 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-10-07 18:23:40 +0000
commit754e4446ab7dc2863990b9400f29ad461500fd34 (patch)
treea4b2456e3928e97c797b61436cbb5213ccb319b8 /doc/tools
parentRemove $(PROJECT).pdf not *.pdf. We were accidentally removing the (diff)
downloadrtems-754e4446ab7dc2863990b9400f29ad461500fd34.tar.bz2
Enhanced to support @email{} as supported in texi2html in texinfo 4.0.
This way we maintain compatibility but continue to use the better, more flexible tool.
Diffstat (limited to 'doc/tools')
-rwxr-xr-xdoc/tools/texi2www/texi2www5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/tools/texi2www/texi2www b/doc/tools/texi2www/texi2www
index e7c8e51f92..48b5684c47 100755
--- a/doc/tools/texi2www/texi2www
+++ b/doc/tools/texi2www/texi2www
@@ -211,6 +211,10 @@ sub expand_xref
$topic = $manual = '';
} elsif ($cmd eq 'href') {
($xrefname,$node,$infofile,$url) = split(/,/,$arg);
+ } elsif ($cmd eq 'email') {
+ ($xrefname,$node,$infofile,$url) = split(/,/,$arg);
+ $xrefname = "mailto:$xrefname";
+ $url = $xrefname
} elsif ($cmd eq 'uref') {
($url,$xrefname,$node,$infofile) = split(/,/,$arg);
} else {
@@ -1149,6 +1153,7 @@ sub initialize_tables
'pxref', 'Xsee ',
'href', 'X',
'uref', 'X',
+ 'email', 'X',
'inforef', 'XSee ',
);