Oh yes, we do have a rather lot of these. Thank you for cleaning them up. Acked-by: Peter Müller > Signed-off-by: Leo-Andres Hofmann > --- > html/cgi-bin/pakfire.cgi | 111 ++++++++++++++++++++------------------- > 1 file changed, 56 insertions(+), 55 deletions(-) > > diff --git a/html/cgi-bin/pakfire.cgi b/html/cgi-bin/pakfire.cgi > index b908ec6a0..535168547 100644 > --- a/html/cgi-bin/pakfire.cgi > +++ b/html/cgi-bin/pakfire.cgi > @@ -214,79 +214,80 @@ END > > # Process Pakfire commands > if (($cgiparams{'ACTION'} eq 'install') && (! &_is_pakfire_busy())) { > + &Header::openbox("100%", "center", $Lang::tr{'request'}); > + > my @pkgs = split(/\|/, $cgiparams{'INSPAKS'}); > - &Header::openbox("100%", "center", $Lang::tr{'request'}); > - my @output = &General::system_output("/usr/local/bin/pakfire", "resolvedeps", "--no-colors", @pkgs); > - print < - > + > + > +
$Lang::tr{'pakfire install package'} @pkgs $Lang::tr{'pakfire possible dependency'} > + my @output = &General::system_output("/usr/local/bin/pakfire", "resolvedeps", "--no-colors", @pkgs); > + print < + > > > > - > - > -
$Lang::tr{'pakfire install package'} @pkgs $Lang::tr{'pakfire possible dependency'} >
>  END
> -		foreach (@output) {
> -		  $_ =~ s/\\[[0-1]\;[0-9]+m//g;
> -			print "$_\n";
> -		}
> -		print < +	foreach (@output) {
> +		$_ =~ s/\\[[0-1]\;[0-9]+m//g;
> +		print "$_\n";
> +	}
> +	print <  		
$Lang::tr{'pakfire accept all'}
 
> - > - > - > - > -
> -
> -
> - > - > -
> -
> + > + > + > + > + > +
> +
> + > + > +
> +
> END > - &Header::closebox(); > - &Header::closebigbox(); > - &Header::closepage(); > - exit; > + &Header::closebox(); > + &Header::closebigbox(); > + &Header::closepage(); > + exit; > > } elsif (($cgiparams{'ACTION'} eq 'remove') && (! &_is_pakfire_busy())) { > + &Header::openbox("100%", "center", $Lang::tr{'request'}); > + > my @pkgs = split(/\|/, $cgiparams{'DELPAKS'}); > - &Header::openbox("100%", "center", $Lang::tr{'request'}); > - my @output = &General::system_output("/usr/local/bin/pakfire", "resolvedeps", "--no-colors", @pkgs); > - print < - > + > + > +
$Lang::tr{'pakfire uninstall package'} @pkgs $Lang::tr{'pakfire possible dependency'} > + my @output = &General::system_output("/usr/local/bin/pakfire", "resolvedeps", "--no-colors", @pkgs); > + print < + > > > > - > - > -
$Lang::tr{'pakfire uninstall package'} @pkgs $Lang::tr{'pakfire possible dependency'} >
>  END
> -		foreach (@output) {
> -		  $_ =~ s/\\[[0-1]\;[0-9]+m//g;
> -			print "$_\n";
> -		}
> -		print < +	foreach (@output) {
> +		$_ =~ s/\\[[0-1]\;[0-9]+m//g;
> +		print "$_\n";
> +	}
> +	print <  		
$Lang::tr{'pakfire uninstall all'}
 
> - > - > - > - > -
> -
> -
> - > - > -
> -
> + > + > + > + > + > +
> +
> + > + > +
> +
> END > - &Header::closebox(); > - &Header::closebigbox(); > - &Header::closepage(); > - exit; > - > + &Header::closebox(); > + &Header::closebigbox(); > + &Header::closepage(); > + exit; > } > > my %selected=();