--- trunk/lib/Sack/Server.pm 2009/11/23 23:15:31 232 +++ trunk/lib/Sack/Server.pm 2009/11/23 23:52:53 233 @@ -191,7 +191,9 @@ my $shard = 0; foreach my $path ( sort keys %{ $s->{$node} } ) { my $affected = $s->{$node}->{$path}; - $h .= qq|*|; + my $n = '?'; + $n = $1 if $path =~ m{/(\w)\w+/\d+}; + $h .= qq|$n|; $shard += $affected; $total += $affected; } @@ -228,8 +230,12 @@ } print $send qq||; - print $send '
', dump($info), '
' if $param->{debug}; - + if ( $param->{info} ) { + print $send qq|hide info|; + print $send '
', dump($info), '
' + } else { + print $send qq|show info|; + } return 1; } ); } else {