Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/blame/commit/e419c0aa650e30a478dd2a84d7bb95e41f09c923/thirdparty/openssl/openssl-1.0.0d/util/tab_num.pl
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
#!/usr/local/bin/perl
|
|
|
|
|
|
|
|
$num=1;
|
|
|
|
$width=40;
|
|
|
|
|
|
|
|
while (<>)
|
|
|
|
{
|
|
|
|
chop;
|
|
|
|
|
|
|
|
$i=length($_);
|
|
|
|
|
|
|
|
$n=$width-$i;
|
|
|
|
$i=int(($n+7)/8);
|
|
|
|
print $_.("\t" x $i).$num."\n";
|
|
|
|
$num++;
|
|
|
|
}
|
|
|
|
|