X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=web%2Fhtdocs%2Fdetails%2Fcheck.mc;h=39245219adbaed5df5fcfa1fbd68ffb142d1874d;hb=d1e6ec25c0d535d5faad8dc01da8f3da9b3d845a;hp=87775a33915af30aa2878f778f80e379df710b3b;hpb=42616f8bebfc87e20d0bffce98c794abbbf7a771;p=irspy-moved-to-github.git diff --git a/web/htdocs/details/check.mc b/web/htdocs/details/check.mc index 87775a3..3924521 100644 --- a/web/htdocs/details/check.mc +++ b/web/htdocs/details/check.mc @@ -1,12 +1,27 @@ -%# $Id: check.mc,v 1.10 2006-10-25 09:54:16 mike Exp $ +%# $Id: check.mc,v 1.12 2006-11-16 12:15:29 mike Exp $ <%args> @id $test => "Quick" +$really => 0 <%perl> my $allTargets = (@id == 1 && $id[0] eq ""); +if ($allTargets && !$really) { + +

Warning

+

+ Testing all the targets is a very slow process. + Are you sure you want to do this? +

+

+ Yes + No +

+<%perl> +} else { + print "

Testing ...

\n"; -print " \n" +print " \n" if !$allTargets; $m->flush_buffer(); @@ -28,4 +43,5 @@ if ($res == 0) { print "$res tests were skipped\n"; } print "

\n"; +}