Community
Participate
Working Groups
I created several tabular reports that I bookmarked in my browser (Firefox 3.6): ex: http://tinyurl.com/35vlkjs When I click on any link in the table, the "Bugzilla is pondering your search / Please stand by ..." page is displayed for a long while (at least 10 minutes) then I get this error: - "Problem loading page / The connection was reset" I never had this problem before. Can the recent Bugzilla upgrade be the cause? Thanks for your help, Pierre
Can you paste an actual URL? I don't do URL shorteners.
Here's the 759-character long URL, I hope it won't get messed up: https://bugs.eclipse.org/bugs/report.cgi?x_axis_field=target_milestone&y_axis_field=component&z_axis_field=&query_format=report-table&short_desc_type=allwordssubstr&short_desc=&classification=Eclipse&product=Platform&component=User+Assistance&target_milestone=3.7&target_milestone=3.7+M1&target_milestone=3.7+M2&target_milestone=3.7+M3&target_milestone=3.7+M4&target_milestone=3.7+M5&longdesc_type=allwordssubstr&longdesc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&status_whiteboard_type=allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&emailtype1=substring&email1=&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&format=table&action=wrap&field0-0-0=noop&type0-0-0=noop&value0-0-0= NB: if you don't trust a TinyUrl, you can use their preview feature: http://tinyurl.com/preview.php?num=35vlkjs
I don't if this will help, but I noticed another behavior with a different report: https://bugs.eclipse.org/bugs/report.cgi?x_axis_field=target_milestone&y_axis_field=component&z_axis_field=&query_format=report-table&short_desc_type=allwordssubstr&short_desc=&classification=WebTools&product=WTP+Source+Editing&component=wst.xsl&target_milestone=3.1+RC2&longdesc_type=allwordssubstr&longdesc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&status_whiteboard_type=allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&emailtype1=substring&email1=&emailtype2=substring&email2=&bug_id_type=anyexact&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&format=table&action=wrap&field0-0-0=noop&type0-0-0=noop&value0-0-0= When I click on the upper-left link, the page loads after a long time but it displays 5407 bugs, though there should only be 1?
The common patterm I'm seeing is that, in the URL, there is a blank parameter that is causing Bugzilla to ignore all the remaining parameters. For instance, one link on your report page ends like this: &value0-0-0=&votes=&=&component=wst.xsl&target_milestone=3.1 RC2 -------------------^^ That &= is not good. Removing it causes the link to work.
Here is a report URL generated from scratch with the current deployed version of bugzilla. Note that report links aren't returning the expected number of bugs. I did not find any "&=" instances in this URL. https://bugs.eclipse.org/bugs/report.cgi?x_axis_field=bug_status&y_axis_field=bug_severity&z_axis_field=&query_format=report-table&short_desc_type=allwordssubstr&short_desc=&classification=Technology&product=Sapphire&target_milestone=0.2&longdesc_type=allwordssubstr&longdesc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&status_whiteboard_type=allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&emailtype1=substring&email1=&emailtype2=substring&email2=&bug_id_type=anyexact&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&format=table&action=wrap&field0-0-0=noop&type0-0-0=noop&value0-0-0=
> Here is a report URL The report URL itself is fine .. the links it contain have an extra &=
I looked at the report template, and I found what was causing the empty &=. I don't understand why this is happening, since this is unmodified bugzilla, but by removing the specific piece of code this becomes fixed. --- ../../default/reports/report-table.html.tmpl 2011-01-02 08:11:23.000000000 -0500 +++ report-table.html.tmpl 2011-01-07 16:15:20.000000000 -0500 @@ -39,8 +39,7 @@ [% urlbase = BLOCK %]buglist.cgi?[% buglistbase FILTER html %] [% "&$tbl_vals" IF tbl_vals %][% END %] [% ELSE %] - [% urlbase = BLOCK %]buglist.cgi?[% buglistbase FILTER html %]& - [% tbl_field FILTER url_quote %]=[% tbl FILTER url_quote %][% END %] + [% urlbase = BLOCK %]buglist.cgi?[% buglistbase FILTER html %][% END %] [% END %] [% IF tbl_field %] I'll need to compare our local version of that template to Bugzilla's CVS. In the meanwhile, the links inside the report should now work as expected (ie, clicking on "24" should return the correct list of 24 bugs).
Thanks for fixing this. I can confirm that this is now working as expected.
As I close this, I scratch my head.