Closed Bug 762783 Opened 12 years ago Closed 12 years ago

Cannot view dependent bugs when there are many

Categories

(Bugzilla :: Dependency Views, defect)

defect
Not set
minor

Tracking

()

RESOLVED FIXED
Bugzilla 4.2

People

(Reporter: mail, Assigned: mail)

References

Details

Attachments

(1 file, 2 obsolete files)

User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:12.0) Gecko/20100101 Firefox/12.0
Build ID: 20120424151700

Steps to reproduce:

In the dependency tree view, there are two links (if you have the editbugs privilege, otherwise one link) that links to buglist.cgi. The URL has a comma separated list of bug ids.


Actual results:

If the URL is bigger than 2,048 characters, you get a "414 Request URI too long" HTTP error


Expected results:

The bug list should show.
Attached patch v1 patch (obsolete) — Splinter Review
This patch will force the URL to post if the URL would be too long. I am using a table so that we can keep the submit buttons aligned.
Assignee: dependency.views → sgreen+mozilla
Attachment #631273 - Flags: review?
Patch is against trunk, but will work with 4.2 as well.
Summary: Dependency tree links gibe 414 error when too many bugs → Cannot view dependent bugs when there are many
Attached patch v2 patch (obsolete) — Splinter Review
Uses CGI_URI_LIMIT and fixes up some indentation issues.
Attachment #631273 - Attachment is obsolete: true
Attachment #631273 - Flags: review?
Attachment #631283 - Flags: review?
Comment on attachment 631283 [details] [diff] [review]
v2 patch

r=glob

this is fine; although lines 87-91 and 93 needs to be indented one more level, which can be fixed when committing.
Attachment #631283 - Flags: review? → review+
Flags: approval?
Flags: blocking4.2.2?
Flags: approval4.2?
Not a blocker as this problem has always been here. And to trigger this problem, you would need several hundreds of bugs in the dependency list, which is not that common.
Severity: normal → minor
Status: NEW → ASSIGNED
Flags: blocking4.2.2? → blocking4.2.2-
Comment on attachment 631283 [details] [diff] [review]
v2 patch

>=== modified file 'template/en/default/bug/dependency-tree.html.tmpl'

>+    [% use_post = (ids.join(",").length > constants.CGI_URI_LIMIT - 32 ) ? 1 : 0 %]

What's the rationale for removing 32 bits from the length? To take the length of the domain name into account? I wouldn't worry about that.


>+          [% IF use_post %]
>+          <form action="buglist.cgi" method="post">
>+          <input type="hidden" name="bug_id" value="[% ids.join(",") %]">

You don't need two separate forms. This would avoid duplicating these lines. Instead of using <input> for buttons, simply use <button>; they will be inlined automatically and are more powerful than <input>. For instance, you can replace:

>+          <input type="hidden" name="tweak" value="1">
>+          <input type="submit" value="change several">

by:

   <button type="submit" name="tweak" value="1">Change several</button>

This way, if you click this button, tweak=1 will be automatically passed to the CGI script, which is the reason why you don't need two forms. This would also skip the need to use a table.

Also, I think we don't need parens to be displayed when using the form, which will make your code even smaller.


Please update your patch accordingly.
Please re-request approval once the patch has been updated and reviewed. If the patch is small enough, we could take it for 4.2.2.
Flags: approval?
Flags: approval4.2?
Attached patch v3 patchSplinter Review
Patch with improvements suggested by LpSolit.

The top part of the the <form has to appear before the "Ip to X levels", otherwise the line splits on the browser.

  -- simon
Attachment #631283 - Attachment is obsolete: true
Attachment #632054 - Flags: review?
Attachment #632054 - Flags: review? → review?(glob)
Comment on attachment 632054 [details] [diff] [review]
v3 patch

r=glob
Attachment #632054 - Flags: review?(glob) → review+
Flags: approval?
As per comment #5, requesting approval for v4.2 release too.

  -- simon
Flags: blocking4.2.2- → blocking4.2.2?
(In reply to Simon Green from comment #10)
> As per comment #5, requesting approval for v4.2 release too.

In comment 5, I said this was not a blocker.
Flags: blocking4.2.2?
Flags: blocking4.2.2-
Flags: approval?
Flags: approval4.2+
Flags: approval+
Target Milestone: --- → Bugzilla 4.2
Committing to: bzr+ssh://bjones%40mozilla.com@bzr.mozilla.org/bugzilla/4.2/
modified template/en/default/bug/dependency-tree.html.tmpl
Committed revision 8100.

Committing to: bzr+ssh://bjones%40mozilla.com@bzr.mozilla.org/bugzilla/trunk/
modified template/en/default/bug/dependency-tree.html.tmpl
Committed revision 8280.
Status: ASSIGNED → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Creator:
Created:
Updated:
Size: