From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter =?utf-8?q?M=C3=BCller?= To: development@lists.ipfire.org Subject: Re: [PATCH 2/7] pakfire.cgi: Fix indentation Date: Sun, 08 May 2022 13:11:53 +0000 Message-ID: <71fbc912-b59f-ab84-c084-01879a2d4bb0@ipfire.org> In-Reply-To: <20220508120952.52-2-hofmann@leo-andres.de> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0096961147147508406==" List-Id: --===============0096961147147508406== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Oh yes, we do have a rather lot of these. Thank you for cleaning them up. Acked-by: Peter M=C3=BCller > Signed-off-by: Leo-Andres Hofmann > --- > html/cgi-bin/pakfire.cgi | 111 ++++++++++++++++++++------------------- > 1 file changed, 56 insertions(+), 55 deletions(-) >=20 > 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 > =20 > # Process Pakfire commands > if (($cgiparams{'ACTION'} eq 'install') && (! &_is_pakfire_busy())) { > + &Header::openbox("100%", "center", $Lang::tr{'request'}); > + > my @pkgs =3D split(/\|/, $cgiparams{'INSPAKS'}); > - &Header::openbox("100%", "center", $Lang::tr{'request'}); > - my @output =3D &General::system_output("/usr/local/bin/pakfire", "resolv= edeps", "--no-colors", @pkgs); > - print < - > + > + > +
$Lang::tr{'pakfire install package'} @pkgs = $Lang::tr{'pakfire possible dependency'} > + my @output =3D &General::system_output("/usr/local/bin/pakfire", "resolve= deps", "--no-colors", @pkgs); > + print < + > > > > - > - > -
$Lang::tr{'pakfire install package'} @pkgs $= Lang::tr{'pakfire possible dependency'} >
>  END
> -		foreach (@output) {
> -		  $_ =3D~ s/\=1B\[[0-1]\;[0-9]+m//g;
> -			print "$_\n";
> -		}
> -		print < +	foreach (@output) {
> +		$_ =3D~ s/\=1B\[[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; > =20 > } elsif (($cgiparams{'ACTION'} eq 'remove') && (! &_is_pakfire_busy())) { > + &Header::openbox("100%", "center", $Lang::tr{'request'}); > + > my @pkgs =3D split(/\|/, $cgiparams{'DELPAKS'}); > - &Header::openbox("100%", "center", $Lang::tr{'request'}); > - my @output =3D &General::system_output("/usr/local/bin/pakfire", "resolv= edeps", "--no-colors", @pkgs); > - print < - > + > + > +
$Lang::tr{'pakfire uninstall package'} @pkg= s $Lang::tr{'pakfire possible dependency'} > + my @output =3D &General::system_output("/usr/local/bin/pakfire", "resolve= deps", "--no-colors", @pkgs); > + print < + > > > > - > - > -
$Lang::tr{'pakfire uninstall package'} @pkgs= $Lang::tr{'pakfire possible dependency'} >
>  END
> -		foreach (@output) {
> -		  $_ =3D~ s/\=1B\[[0-1]\;[0-9]+m//g;
> -			print "$_\n";
> -		}
> -		print < +	foreach (@output) {
> +		$_ =3D~ s/\=1B\[[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; > } > =20 > my %selected=3D(); --===============0096961147147508406==--