package xm::pfe::tekrefs;
use strict;
use xm::o;
"
scan in comments for known symbols and mark them as URLs
- just a specialty.
"}
my $in = shift;
$in =~ s{(\bTektronix\b)}
{<a href=http://www.tek.com>$1</a>}g;
$in =~ s{(\bLGPL\b)}
{<a href=http://www.opensource.com/licenses/lgpl-license.html>$1</a>}g;
$in =~ s{(\bderived_by:\s*)(guidod\b)}
{$1<a href=mailto:guidod\@exgate.tek.com>$2</a>}g;
return $in;
}
my $in = shift;
$in =~ s{(<CDOC>)(.*(?!</CDOC>).)(</CDOC>)} { $1.do_cdoc($2).$3 }gsex;
return $in;
}
return xm::o::args_stdin(@_,DESC); }
return DO(xm::o::args_stdin(@_,DESC)); }
1;