unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#49968: Fwd: issue website creates invalid comment expectations
       [not found] <CAOhKva1sUrv7iqUcEpuS8knUAPDrS5tGhqn5h0u8gn-R1CDUTw@mail.gmail.com>
@ 2021-08-09 18:27 ` François-René Rideau
  2021-08-10 15:22   ` John Kehayias via Bug reports for GNU Guix
                     ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: François-René Rideau @ 2021-08-09 18:27 UTC (permalink / raw)
  To: 49968

When viewing an issue on the website https://issues.guix.gnu.org/ the
web interface allows you to post a comment, what more without
authentication. Unfortunately, I am told by ropstat and podiki[m] on
irc.libera.chat #guix that web comments don't actually work in their
experience. If this option cannot be fixed in a timely fashion, it
should not be offered at all. Otherwise, it only creates deep
frustration in users, and maybe even lost comments depending on what
client they use.

The same web interface also, correctly, invites users to instead send
mail to <bug-number>@debbugs.gnu.org — however, the same helpful IRC
users tell me that the mail is manually reviewed by a human moderator
and may take up to a day to show up. This as such is perfectly fine,
but does deserve mention as part of the same message on the web
interface, otherwise it will once again create wrong expectations from
users, frustration, messages sent multiple times, and more work for
both users and moderators.

PS: also, several of my attempts to post comments via the web form
failed with an unhelpful error message when posting "There was an
error submitting your comment!". At some point I conjectured that it
was due to my using an accent in my name "Faré", but one of my
attempts with that name did end up with "Your comment has been
submitted!". This is moot considering the above issue, but may become
important if the resolution is to fix web comments.




^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#49968: Fwd: issue website creates invalid comment expectations
  2021-08-09 18:27 ` bug#49968: Fwd: issue website creates invalid comment expectations François-René Rideau
@ 2021-08-10 15:22   ` John Kehayias via Bug reports for GNU Guix
  2021-08-10 15:30   ` Maxime Devos
  2021-08-10 17:46   ` John Kehayias via Bug reports for GNU Guix
  2 siblings, 0 replies; 6+ messages in thread
From: John Kehayias via Bug reports for GNU Guix @ 2021-08-10 15:22 UTC (permalink / raw)
  To: 49968@debbugs.gnu.org

(I think the bug title should be "comments sent via issues.guix.gnu.org disappear" as they seem to get swallowed by the server)

I sent a comment just a few minutes ago via the webform, that got the message that was successful. I'll check back to see if it appears later, but have not had it work in the past.

Hope this helps if anyone is checking some logs for what is happening with the web comment suggestion.




^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#49968: Fwd: issue website creates invalid comment expectations
  2021-08-09 18:27 ` bug#49968: Fwd: issue website creates invalid comment expectations François-René Rideau
  2021-08-10 15:22   ` John Kehayias via Bug reports for GNU Guix
@ 2021-08-10 15:30   ` Maxime Devos
  2021-09-01 14:03     ` Ludovic Courtès
  2021-08-10 17:46   ` John Kehayias via Bug reports for GNU Guix
  2 siblings, 1 reply; 6+ messages in thread
From: Maxime Devos @ 2021-08-10 15:30 UTC (permalink / raw)
  To: François-René Rideau, 49968

[-- Attachment #1: Type: text/plain, Size: 445 bytes --]

> [... mumi ‘send comment’ interface doesn't work ...]

Some time ago, I received a copy of the logs and Ludovic
and I found out what causes comments to be swallowed:
<https://issues.guix.gnu.org/49295>.  Ludovic has a suggestion
on how to fix it.

The source code is at
<https://git.elephly.net/gitweb.cgi?p=software/mumi.git>,
if anyone is interested in fixing it, or just disabling
the comment interface.

Greetings,
Maxime

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#49968: Fwd: issue website creates invalid comment expectations
  2021-08-09 18:27 ` bug#49968: Fwd: issue website creates invalid comment expectations François-René Rideau
  2021-08-10 15:22   ` John Kehayias via Bug reports for GNU Guix
  2021-08-10 15:30   ` Maxime Devos
@ 2021-08-10 17:46   ` John Kehayias via Bug reports for GNU Guix
  2021-08-17 22:07     ` bug#49295: " Maxime Devos
  2 siblings, 1 reply; 6+ messages in thread
From: John Kehayias via Bug reports for GNU Guix @ 2021-08-10 17:46 UTC (permalink / raw)
  To: 49968@debbugs.gnu.org

Hi Maxime,

I took a quick look, but I'm not seeing how the proposed fix works: there is already that line for defining mu-debug in the only file that uses mu-message-send...? (Perhaps this should be sent to that original issue, I can send it again there if that is helpful.)

If there is not a relatively quick fix, I would vote for disabling the comment submission until it can be fixed. Otherwise, we're losing comments with no indication to the submitter.

John




^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#49295: bug#49968: Fwd: issue website creates invalid comment expectations
  2021-08-10 17:46   ` John Kehayias via Bug reports for GNU Guix
@ 2021-08-17 22:07     ` Maxime Devos
  0 siblings, 0 replies; 6+ messages in thread
From: Maxime Devos @ 2021-08-17 22:07 UTC (permalink / raw)
  To: John Kehayias, 49968@debbugs.gnu.org, 49295

[-- Attachment #1: Type: text/plain, Size: 1217 bytes --]

John Kehayias via Bug reports for GNU Guix schreef op di 10-08-2021 om 17:46 [+0000]:
> Hi Maxime,
> 
> I took a quick look, but I'm not seeing how the proposed fix works: there is already
> that line for defining mu-debug in the only file that uses mu-message-send...?
> (Perhaps this should be sent to that original issue, I can send it again there if that
> is helpful.)

‘the current module’ is whatever (current-module) evaluates to.
It is not necessarily the module wherein 'mu-message-send' is used.
IIUC, every time a (define-module ([...])) form is encountered,
(current-module) is set to [...], or something like that (details
might be a little different).  It works for stand-alone scripts and
in the REPL I guess, but otherwise it's a very cumbersome interface.

This interface should be changed (in mailutils) IMO.

> 
> If there is not a relatively quick fix, I would vote for disabling the comment
> submission until it can be fixed. Otherwise, we're losing comments with no indication
> to the submitter.

nckx has done that recently.  Pages on <https://issues.guix.gnu.org/NNN>
now end with ‘Commenting via the web interface is currently disabled.’.

Greetings,
Ma

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 260 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#49968: Fwd: issue website creates invalid comment expectations
  2021-08-10 15:30   ` Maxime Devos
@ 2021-09-01 14:03     ` Ludovic Courtès
  0 siblings, 0 replies; 6+ messages in thread
From: Ludovic Courtès @ 2021-09-01 14:03 UTC (permalink / raw)
  To: Maxime Devos; +Cc: 49968, François-René Rideau

Hi,

Maxime Devos <maximedevos@telenet.be> skribis:

> Some time ago, I received a copy of the logs and Ludovic
> and I found out what causes comments to be swallowed:
> <https://issues.guix.gnu.org/49295>.  Ludovic has a suggestion
> on how to fix it.
>
> The source code is at
> <https://git.elephly.net/gitweb.cgi?p=software/mumi.git>,
> if anyone is interested in fixing it, or just disabling
> the comment interface.

Tobias disabled the comment interface a couple of weeks ago:

  https://git.savannah.gnu.org/cgit/guix/maintenance.git/commit/?id=f8deebe7e9b00db1971ff3d32c78eaef3acb6864

Ludo’.




^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-09-01 14:04 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <CAOhKva1sUrv7iqUcEpuS8knUAPDrS5tGhqn5h0u8gn-R1CDUTw@mail.gmail.com>
2021-08-09 18:27 ` bug#49968: Fwd: issue website creates invalid comment expectations François-René Rideau
2021-08-10 15:22   ` John Kehayias via Bug reports for GNU Guix
2021-08-10 15:30   ` Maxime Devos
2021-09-01 14:03     ` Ludovic Courtès
2021-08-10 17:46   ` John Kehayias via Bug reports for GNU Guix
2021-08-17 22:07     ` bug#49295: " Maxime Devos

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).