Re: Error in form on site commitfest.postgresql.org

Lists: pgsql-bugspgsql-www
From: Vladlen Popolitov <v(dot)popolitov(at)postgrespro(dot)ru>
To: pgsql-bugs(at)lists(dot)postgresql(dot)org
Subject: Error in form on site commitfest.postgresql.org
Date: 2025-02-13 12:46:41
Message-ID: ff6853183ac7d25acf2451d5eea7f6a5@postgrespro.ru
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs pgsql-www


Hi!

I do not know, who supports commitfest site, it why I am writing here.

Every time I add my review in commit fest, I see wrong form -
not all field in form are visible, see attached picture.
As result review generate wrong misleading text, that tests are failed,
like this from my last review:
The following review has been posted through the commitfest application:
make installcheck-world: tested, failed
Implements feature: tested, failed
Spec compliant: tested, failed
Documentation: tested, failed

I tried Safari, Chrome on Mac, Chrome, Edge and Explorer on Windows -
the same result.

The reason: the field "Passed" under field "Tested" is not visible.
I suppose the problem in bootstrap classes. I tried to change them to
documented classes from Bootstrap 3 (as referenced in this page),
and form works.

The solution.

If change the :
<div id="id_review_installcheck" class="form-control"><div>
to
<div id="id_review_installcheck" class="container pull-left"><div>

<div id="id_review_implements" class="form-control"><div>
to
<div id="id_review_implements" class="container pull-left"><div>

<div id="id_review_spec" class="form-control"><div>
to
<div id="id_review_spec" class="container pull-left"><div>

<div id="id_review_doc" class="form-control"><div>
to
<div id="id_review_doc" class="container pull-left"><div>

And all checkbook should be changed from
<input type="checkbox" name="review_installcheck" value="0"
class="form-control" id="id_review_installcheck_0">
to
<input type="checkbox" name="review_installcheck" value="0"
class="form-check-input" id="id_review_installcheck_0">

for better presentation.

In this case all fields will be visible.

--
Best regards,

Vladlen Popolitov.

Attachment Content-Type Size
image/png 35.7 KB

From: Daniel Gustafsson <daniel(at)yesql(dot)se>
To: Vladlen Popolitov <v(dot)popolitov(at)postgrespro(dot)ru>
Cc: PostgreSQL WWW <pgsql-www(at)lists(dot)postgresql(dot)org>
Subject: Re: Error in form on site commitfest.postgresql.org
Date: 2025-02-13 14:41:48
Message-ID: 7CFA9589-F307-4EDB-9F5D-E21E76C05D50@yesql.se
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs pgsql-www

I am moving this to pgsql-www@ where the project websites are discussed,
removing pgsql-bugs@ to avoid getting caught in cross-post moderation.

> On 13 Feb 2025, at 13:46, Vladlen Popolitov <v(dot)popolitov(at)postgrespro(dot)ru> wrote:
>
>
> Hi!
>
> I do not know, who supports commitfest site, it why I am writing here.
>
> Every time I add my review in commit fest, I see wrong form -
> not all field in form are visible, see attached picture.
> As result review generate wrong misleading text, that tests are failed,
> like this from my last review:
> The following review has been posted through the commitfest application:
> make installcheck-world: tested, failed
> Implements feature: tested, failed
> Spec compliant: tested, failed
> Documentation: tested, failed
>
> I tried Safari, Chrome on Mac, Chrome, Edge and Explorer on Windows -
> the same result.
>
> The reason: the field "Passed" under field "Tested" is not visible.
> I suppose the problem in bootstrap classes. I tried to change them to
> documented classes from Bootstrap 3 (as referenced in this page),
> and form works.
>
> The solution.
>
> If change the :
> <div id="id_review_installcheck" class="form-control"><div>
> to
> <div id="id_review_installcheck" class="container pull-left"><div>
>
> <div id="id_review_implements" class="form-control"><div>
> to
> <div id="id_review_implements" class="container pull-left"><div>
>
> <div id="id_review_spec" class="form-control"><div>
> to
> <div id="id_review_spec" class="container pull-left"><div>
>
> <div id="id_review_doc" class="form-control"><div>
> to
> <div id="id_review_doc" class="container pull-left"><div>
>
> And all checkbook should be changed from
> <input type="checkbox" name="review_installcheck" value="0"
> class="form-control" id="id_review_installcheck_0">
> to
> <input type="checkbox" name="review_installcheck" value="0"
> class="form-check-input" id="id_review_installcheck_0">
>
> for better presentation.
>
>
> In this case all fields will be visible.
>
> --
> Best regards,
>
> Vladlen Popolitov.

Attachment Content-Type Size
image/png 35.7 KB
unknown_filename text/plain 23 bytes

From: Vladlen Popolitov <v(dot)popolitov(at)postgrespro(dot)ru>
To: Daniel Gustafsson <daniel(at)yesql(dot)se>
Cc: PostgreSQL WWW <pgsql-www(at)lists(dot)postgresql(dot)org>
Subject: Re: Error in form on site commitfest.postgresql.org
Date: 2025-02-21 04:57:54
Message-ID: 78c6b9661e1f88988b9b4fcd29b42751@postgrespro.ru
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs pgsql-www

Hi!

I have included the solution into the body of the email.
Should I send some patch to the git of the sites source code?

I did not find any advice to fix www pages except sending
email to this mailing list. I hope it will work later or
ealier.

Daniel Gustafsson писал(а) 2025-02-13 21:41:
> I am moving this to pgsql-www@ where the project websites are
> discussed,
> removing pgsql-bugs@ to avoid getting caught in cross-post moderation.
>
>> On 13 Feb 2025, at 13:46, Vladlen Popolitov
>> <v(dot)popolitov(at)postgrespro(dot)ru> wrote:
>>
>>
>> Hi!
>>
>> I do not know, who supports commitfest site, it why I am writing here.
>>
>> Every time I add my review in commit fest, I see wrong form -
>> not all field in form are visible, see attached picture.
>> As result review generate wrong misleading text, that tests are
>> failed,
>> like this from my last review:
>> The following review has been posted through the commitfest
>> application:
>> make installcheck-world: tested, failed
>> Implements feature: tested, failed
>> Spec compliant: tested, failed
>> Documentation: tested, failed
>>
>> I tried Safari, Chrome on Mac, Chrome, Edge and Explorer on Windows -
>> the same result.
>>
>> The reason: the field "Passed" under field "Tested" is not visible.
>> I suppose the problem in bootstrap classes. I tried to change them to
>> documented classes from Bootstrap 3 (as referenced in this page),
>> and form works.
>>

The solution.

>>
>> If change the :
>> <div id="id_review_installcheck" class="form-control"><div>
>> to
>> <div id="id_review_installcheck" class="container pull-left"><div>
>>
>> <div id="id_review_implements" class="form-control"><div>
>> to
>> <div id="id_review_implements" class="container pull-left"><div>
>>
>> <div id="id_review_spec" class="form-control"><div>
>> to
>> <div id="id_review_spec" class="container pull-left"><div>
>>
>> <div id="id_review_doc" class="form-control"><div>
>> to
>> <div id="id_review_doc" class="container pull-left"><div>
>>
>> And all checkbook should be changed from
>> <input type="checkbox" name="review_installcheck" value="0"
>> class="form-control" id="id_review_installcheck_0">
>> to
>> <input type="checkbox" name="review_installcheck" value="0"
>> class="form-check-input" id="id_review_installcheck_0">
>>
>> for better presentation.
>>
>>
>> In this case all fields will be visible.
>>
>> --
>> Best regards,
>>
>> Vladlen Popolitov.
>
>
> --
> Daniel Gustafsson

--
Best regards,

Vladlen Popolitov.


From: Jelte Fennema-Nio <me(at)jeltef(dot)nl>
To: Vladlen Popolitov <v(dot)popolitov(at)postgrespro(dot)ru>
Cc: Daniel Gustafsson <daniel(at)yesql(dot)se>, PostgreSQL WWW <pgsql-www(at)lists(dot)postgresql(dot)org>
Subject: Re: Error in form on site commitfest.postgresql.org
Date: 2025-02-21 09:23:57
Message-ID: CAGECzQSLjwh77NCGxyG+d+BxvyMmwLoqvbt8kqnNWcODiHQyNQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs pgsql-www

On Fri, 21 Feb 2025 at 10:18, Vladlen Popolitov
<v(dot)popolitov(at)postgrespro(dot)ru> wrote:
> I have included the solution into the body of the email.
> Should I send some patch to the git of the sites source code?

Hi Vladlen,

Thanks for suggesting a fix for this issue! Contributions to the
commitfest app are done through GitHub PRs:
https://github.com/postgres/pgcommitfest

If for some reason that doesn't work for you, sending a patch file to
this thread would also be okay.

Jelte