I added a couple of links to the bottom right-hand frame, to get to reputer and xNN (because everyone has them too, right?).
Change sub ctrl to something like this:
sub ctrl
{ # display links and $NORM
if(-e $normfile){ $norm = io('read',$normfile,$norm)} else {$norm = 'n
+/a'}
$norm = 'n/a' unless $norm =~ /\S/;
my $extra = '';
if( $url_xnn or $url_reputer ) {
$extra = '<li><nobr>';
$extra .= qq{<a href="$url_xnn" target="_blank">xNN</a>} if $url_x
+nn;
$extra .= ' - ' if $url_xnn and $url_reputer;
$extra .= qq{<a href="$url_reputer" target="_blank">reputer</a>} i
+f $url_reputer;
$extra .= '</nobr></li>';
}
my$prnt = qq~<html> $bodytag
<table border="0" height="100%" width="100%" cellpadding="0" cellspaci
+ng="0" align="center">
<tr><td><font size="-1">$extra
And right up the top with the rest of the definitions, you want to add something like:
my $url_xnn = '/cgi-bin/nn.cgi'; # url to xNN script
my $url_reputer = '/cgi-bin/reputer.cgi'; # url to reputer script
and you're all set! You can leave one or the other blank and it will do The Right Thing.
--g r i n d e r
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|