From: "Peter Müller" <peter.mueller@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH 3/7] pakfire.cgi: Show error and log messages earlier
Date: Sun, 08 May 2022 13:12:06 +0000 [thread overview]
Message-ID: <ad4921e3-b3c4-4b35-8b54-3631cb2b0a72@ipfire.org> (raw)
In-Reply-To: <20220508120952.52-3-hofmann@leo-andres.de>
[-- Attachment #1: Type: text/plain, Size: 3718 bytes --]
Acked-by: Peter Müller <peter.muelle(a)ipfire.org>
> The main page cannot be used while an installation is running.
> Therefore it makes more sense to generate the log output first.
>
> Signed-off-by: Leo-Andres Hofmann <hofmann(a)leo-andres.de>
> ---
> html/cgi-bin/pakfire.cgi | 79 ++++++++++++++++++++--------------------
> 1 file changed, 40 insertions(+), 39 deletions(-)
>
> diff --git a/html/cgi-bin/pakfire.cgi b/html/cgi-bin/pakfire.cgi
> index 535168547..daa82e34c 100644
> --- a/html/cgi-bin/pakfire.cgi
> +++ b/html/cgi-bin/pakfire.cgi
> @@ -212,7 +212,45 @@ END
> &Header::openpage($Lang::tr{'pakfire configuration'}, 1, $extraHead);
> &Header::openbigbox('100%', 'left', '', $errormessage);
>
> -# Process Pakfire commands
> +# Show error message
> +if ($errormessage) {
> + &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
> + print "<font class='base'>$errormessage </font>\n";
> + &Header::closebox();
> +}
> +
> +# Show log output while Pakfire is running
> +if(&_is_pakfire_busy()) {
> + &Header::openbox("100%", "center", "Pakfire");
> +
> + print <<END
> +<section id="pflog-header">
> + <div><img src="/images/indicator.gif" alt="$Lang::tr{'active'}" title="$Lang::tr{'pagerefresh'}"></div>
> + <div>
> + <span id="pflog-status">$Lang::tr{'pakfire working'}</span><br>
> + <span id="pflog-time"></span><br>
> + <span id="pflog-action"></span>
> + </div>
> + <div><a href="$ENV{'SCRIPT_NAME'}"><img src="/images/view-refresh.png" alt="$Lang::tr{'refresh'}" title="$Lang::tr{'refresh'}"></a></div>
> +</section>
> +
> +<!-- Pakfire log messages -->
> +<pre id="pflog-messages"></pre>
> +<script>
> + // Start automatic log refresh
> + pakfire.running = true;
> +</script>
> +
> +END
> +;
> +
> + &Header::closebox();
> + &Header::closebigbox();
> + &Header::closepage();
> + exit;
> +}
> +
> +# Show Pakfire install/remove dependencies and confirm form
> if (($cgiparams{'ACTION'} eq 'install') && (! &_is_pakfire_busy())) {
> &Header::openbox("100%", "center", $Lang::tr{'request'});
>
> @@ -290,6 +328,7 @@ END
> exit;
> }
>
> +# Show Pakfire main page
> my %selected=();
> my %checked=();
>
> @@ -299,44 +338,6 @@ $selected{"TREE"}{"testing"} = "";
> $selected{"TREE"}{"unstable"} = "";
> $selected{"TREE"}{$pakfiresettings{"TREE"}} = "selected";
>
> -# DPC move error message to top so it is seen!
> -if ($errormessage) {
> - &Header::openbox('100%', 'left', $Lang::tr{'error messages'});
> - print "<font class='base'>$errormessage </font>\n";
> - &Header::closebox();
> -}
> -
> -# Show log output while Pakfire is running
> -if(&_is_pakfire_busy()) {
> - &Header::openbox("100%", "center", "Pakfire");
> -
> - print <<END
> -<section id="pflog-header">
> - <div><img src="/images/indicator.gif" alt="$Lang::tr{'active'}" title="$Lang::tr{'pagerefresh'}"></div>
> - <div>
> - <span id="pflog-status">$Lang::tr{'pakfire working'}</span><br>
> - <span id="pflog-time"></span><br>
> - <span id="pflog-action"></span>
> - </div>
> - <div><a href="$ENV{'SCRIPT_NAME'}"><img src="/images/view-refresh.png" alt="$Lang::tr{'refresh'}" title="$Lang::tr{'refresh'}"></a></div>
> -</section>
> -
> -<!-- Pakfire log messages -->
> -<pre id="pflog-messages"></pre>
> -<script>
> - // Start automatic log refresh
> - pakfire.running = true;
> -</script>
> -
> -END
> -;
> -
> - &Header::closebox();
> - &Header::closebigbox();
> - &Header::closepage();
> - exit;
> -}
> -
> my $core_release = `cat /opt/pakfire/db/core/mine 2>/dev/null`;
> chomp($core_release);
> my $core_update_age = &General::age("/opt/pakfire/db/core/mine");
next prev parent reply other threads:[~2022-05-08 13:12 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-08 12:09 [PATCH 1/7] pakfire.cgi: Separate command processing and HTML generation Leo-Andres Hofmann
2022-05-08 12:09 ` [PATCH 2/7] pakfire.cgi: Fix indentation Leo-Andres Hofmann
2022-05-08 13:11 ` Peter Müller
2022-05-08 12:09 ` [PATCH 3/7] pakfire.cgi: Show error and log messages earlier Leo-Andres Hofmann
2022-05-08 13:12 ` Peter Müller [this message]
2022-05-08 12:09 ` [PATCH 4/7] pakfire.cgi: Notify user if Pakfire is already performing a task Leo-Andres Hofmann
2022-05-08 13:12 ` Peter Müller
2022-05-08 12:09 ` [PATCH 5/7] pakfire.cgi: Implement Post/Redirect/Get pattern Leo-Andres Hofmann
2022-05-08 13:12 ` Peter Müller
2022-05-12 9:30 ` Michael Tremer
2022-05-20 9:47 ` hofmann
2022-05-08 12:09 ` [PATCH 6/7] pakfire.cgi: Discard tac stderr output Leo-Andres Hofmann
2022-05-08 13:12 ` Peter Müller
2022-05-08 12:09 ` [PATCH 7/7] pakfire.cgi: Cosmetic fixes Leo-Andres Hofmann
2022-05-08 13:12 ` Peter Müller
2022-05-08 13:11 ` [PATCH 1/7] pakfire.cgi: Separate command processing and HTML generation Peter Müller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ad4921e3-b3c4-4b35-8b54-3631cb2b0a72@ipfire.org \
--to=peter.mueller@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox