From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] updatexlrator.cgi: Fix Bug 10477 - Update Accelerator disk usage statistics are very cramped in 2.15 beta1 Date: Mon, 09 Aug 2021 22:32:53 +0200 Message-ID: <20210809203253.59446-1-adolf.belka@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7308805495530646392==" List-Id: --===============7308805495530646392== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable - This bug has been open for a long time and is still valid. The Cache statis= tics on the Update accelerator configuration page are jammed closely together maki= ng it not so easy to see what the numbers are. - Implemented similar approach as used on the Memory table section of the Mem= ory information page. - Installed on vm testbed machine and confirmed to provide the desired layout. Tested-by Adolf Belka Signed-off-by: Adolf Belka --- html/cgi-bin/updatexlrator.cgi | 58 +++++++++++++++++++--------------- 1 file changed, 32 insertions(+), 26 deletions(-) diff --git a/html/cgi-bin/updatexlrator.cgi b/html/cgi-bin/updatexlrator.cgi index 9cfe08f4e..deead7d79 100644 --- a/html/cgi-bin/updatexlrator.cgi +++ b/html/cgi-bin/updatexlrator.cgi @@ -722,15 +722,18 @@ unless ($numfiles) { print "$Lang::tr{'updxlrtr empt= y repository'}\n
-$Lang::tr{'updxlrtr disk usage'} + +$Lang::tr{'updxlrtr disk usage'} + - +
- - - - - + + + + + + END ; @@ -745,17 +748,17 @@ my ($device,$size,$used,$free,$percent,$mount) =3D spli= t(' ',$dfstr); =20 print < - - - - - + + + + +
$Lang::tr{'updxlrtr cache dir'}$Lang::tr{'size'}$Lang::tr{'used'}$Lang::tr{'free'}$Lang::tr{'percentage'}$Lang::tr{'updxlrtr cache dir'}$Lang::tr{'size'}$Lang::tr{'used'}$Lang::tr{'free'}$Lang::tr{'percentage= '}
[$repository]$size$used$free +[$repository]$size$used$free END ; &percentbar($percent); print < -$percent$percent
END @@ -1015,15 +1018,18 @@ unless (@repositoryfiles) { print "$Lang::tr{'updx= lrtr empty repository'} =20 print < -$Lang::tr{'updxlrtr disk usage'} + +$Lang::tr{'updxlrtr disk usage'} + - +
- - - - - + + + + + + END ; @@ -1038,17 +1044,17 @@ my ($device,$size,$used,$free,$percent,$mount) =3D sp= lit(' ',$dfstr); =20 print < - - - - - + + + + +
$Lang::tr{'updxlrtr cache dir'}$Lang::tr{'size'}$Lang::tr{'used'}$Lang::tr{'free'}$Lang::tr{'percentage'}$Lang::tr{'updxlrtr cache dir'}$Lang::tr{'size'}$Lang::tr{'used'}$Lang::tr{'free'}$Lang::tr{'percentage= '}
[$repository]$size$used$free +[$repository]$size$used$free END ; &percentbar($percent); print < -$percent$percent
END --=20 2.32.0 --===============7308805495530646392==--