X-Git-Url: https://git.deb.at/?a=blobdiff_plain;f=lib%2FPackages%2FCGI.pm;h=b2b261db705b7c009b9cb62c2534b2c3ed4039a7;hb=bcfcaa38f5df98ccff82e7ec1b9473b92b850c17;hp=e9d834cb16feffc43a17d2885e13457c7d4fb2ff;hpb=9c048903c83d44428f638e77df45daaf076362c6;p=deb%2Fpackages.git diff --git a/lib/Packages/CGI.pm b/lib/Packages/CGI.pm index e9d834c..b2b261d 100644 --- a/lib/Packages/CGI.pm +++ b/lib/Packages/CGI.pm @@ -2,15 +2,16 @@ package Packages::CGI; use Exporter; our @ISA = qw( Exporter ); -our @EXPORT = qw( fatal_error error hint debug msg - print_errors print_hints print_debug print_msgs ); +our @EXPORT = qw( fatal_error error hint debug msg note + print_errors print_hints print_debug print_msgs + print_notes ); our $debug = 0; -our (@fatal_errors, @errors, @debug, @msgs, @hints); +our (@fatal_errors, @errors, @debug, @msgs, @hints, @notes); sub reset { - @fatal_errors = @errors = @debug = @msgs = @hints = (); + @fatal_errors = @errors = @debug = @msgs = @hints = @notes = (); } sub fatal_error { @@ -29,6 +30,12 @@ sub debug { sub msg { push @msgs, $_[0]; } +sub note { + push @notes, $_[0]; +} +sub notes { + push @notes, [ @_ ]; +} sub print_errors { return unless @fatal_errors || @errors; print '
'; @@ -45,7 +52,6 @@ sub print_debug { print "$_\n"; } print '
'; - } sub print_hints { return unless @hints; @@ -60,5 +66,19 @@ sub print_msgs { print "

$_

"; } } +sub print_notes { + foreach (@notes) { + my ( $title, $note ) = @$_; + my $str = ""; + + if ($note) { + $str .= "

$title

"; + } else { + $note = $title; + } + $str .= "

$note

"; + return $str; + } +} 1;