{ head("Lintian Tag: $tag", 1) }

{$code} {$tag}

All reports of {$tag} for the archive. The extended description of this tag is:

{$description}

The package names link to the relevant maintainer page and the corresponding report for the source package. The links go to the full maintainer report page, which includes info and experimental tags and overridden tags, rather than the default page that shows only errors and warnings.

{ # We get a list of tag data. We create a separate paragraph for each # package name. my ($last, $tag, $has_nonoverridden); for my $info (sort { $a->{package} cmp $b->{package} } @tags) { if (!$last or "$info->{package} $info->{type}" ne "$last->{package} $last->{type}") { if ($last) { my $overridden = $has_nonoverridden ? '' : qq{ overridden}; $OUT .= qq(

); $OUT .= "$last->{package} ($last->{type})$overridden

\n"; $OUT .= qq( \n"; } $last = $info; $tag = ''; $has_nonoverridden = 0; } $has_nonoverridden = 1 if $info->{code} ne 'O'; if ($info->{extra}) { $tag .= qq{
  • }; $tag .= qq{O } if $info->{code} eq 'O'; $tag .= "$info->{extra}
  • \n"; } } my $overridden = $has_nonoverridden ? '' : qq{ overridden}; $OUT .= qq(

    ); $OUT .= "$last->{package} ($last->{type})$overridden

    \n"; $OUT .= qq( \n"; } { foot() }