[python-committers] Code review tool (rietveld) bug
"Martin v. Löwis"
martin at v.loewis.de
Mon Jan 27 23:01:17 CET 2014
Am 27.01.14 21:18, schrieb Yury Selivanov:
> OK, I've tried another browser (regularly I use Safari, this
> time I was trying it with Chrome) -- same thing.
>
> For those who want to try to reproduce it:
>
> 1. Open http://bugs.python.org/issue20356
> 2. Click 'review' for pos_only_format_02.patch
> 3. Click on message from @larry
> 4. Hit 'reply' link for it
> 5. Erase everything from the text area and type something in
> 5. Submit the form.
I can add a message just fine, but I think something is broken still.
Can you get your web browser to see the source of the reply form? I get
<form method="POST" action="/review/20356/publish"
id="message-reply-form">
<input type="hidden" name="xsrf_token"
value="7e667aa15c51043fea022aa837edaaa5">
<div></div>
<input type="hidden" name="in_reply_to" value="" />
<input type="hidden" name="subject" value="fix formatting of
positional-only parameters in inspect.Signature" />
<input type="hidden" name="message_only" value="1" />
<input type="submit" value="Send Message" />
<input type="button" value="Discard" name="discard" />
<input type="checkbox" name="send_mail" value="1"
id="message-reply-send-mail" checked="checked" />
<label>Send mail to reviewers</label>
</form>
I believe the issue is the hidden in_reply_to field.
a) it shouldn't be an empty string (I think); if it wasn't, Rietveld
might actually make insert it in a threaded way. IIUC, js ought
to have inserted a value for in_reply_to.
b) if it is empty, it apparently crashes for you because it then finds
that there is no message with the id "".
Looking a bit further - maybe Safari doesn't tell me the dynamic code.
I also see
<a href="javascript:M_replyToMessage('0', '2014/01/25 11:25:44',
'larry', 'Message_2687')"
id="message-reply-href-0">Reply</a>
which really ought to fill out the in_reply_to field (with Message_2687)
If anybody wants to investigate: the source of this is at
http://hg.python.org/tracker/rietveld
Regards,
Martin
More information about the python-committers
mailing list