Closed
Bug 100639
Opened 22 years ago
Closed 21 years ago
make resolution more visible on mostfreq list
Categories
(Bugzilla :: Query/Bug List, enhancement, P3)
Tracking
()
RESOLVED
FIXED
Bugzilla 2.18
People
(Reporter: jruderman, Assigned: gerv)
References
()
Details
Attachments
(1 file)
1.43 KB,
patch
|
justdave
:
review+
|
Details | Diff | Splinter Review |
At http://bugzilla.mozilla.org/duplicates.cgi, the only indication that a bug is resolved is that the bug number is crossed out. This makes it hard to quickly scan the list for only open bugs. Suggested fix: show the resolution of closed bugs in the target milestone column ("FIXED" for fixed bugs, "INVALID" for invalid bugs, etc). So the list might look like: . . . mozilla0.9.6 summary . . . INVALID summary . . . --- summary . . . mozilla1.0 summary . . . Future summary . . . FIXED summary
Updated•22 years ago
|
Priority: -- → P3
Target Milestone: --- → Bugzilla 2.20
Reporter | ||
Comment 1•22 years ago
|
||
In addition, give resolved bugs a gray background. Here's a bookmarklet workaround that does the same thing: javascript:TRs = document.getElementsByTagName('tr'); for(i=0; i < TRs.length; ++i) { tr = TRs[i]; if (tr.getElementsByTagName('strike').length!=0) tr.style.backgroundColor='#cccccc'; } void 0; A similar bookmarklet can be used to hide resolved bugs: javascript:TRs = document.getElementsByTagName('tr'); for(i=0; i < TRs.length; ++i) { tr = TRs[i]; if (tr.getElementsByTagName('strike').length!=0) tr.style.display = 'none'; } void 0;
Assignee | ||
Comment 3•22 years ago
|
||
The rewrite/templatisation allows you to hide resolved bugs. Gerv
Assignee | ||
Comment 4•21 years ago
|
||
You can now hide resolved bugs on that page. Gerv
Status: NEW → RESOLVED
Closed: 21 years ago
Resolution: --- → WORKSFORME
Comment 5•21 years ago
|
||
clearing target in DUPLICATE/WORKSFORME/INVALID/WONTFIX bugs so they'll show up as untriaged if they get reopened.
Target Milestone: Bugzilla 2.20 → ---
Reporter | ||
Comment 6•21 years ago
|
||
This is still a problem when you don't hide resolved bugs. Not hiding resolved bugs is a common setting.
Status: RESOLVED → REOPENED
Resolution: WORKSFORME → ---
Assignee | ||
Comment 7•21 years ago
|
||
This uses the same styling for resolved bugs as the dependency tree view. Gerv
Assignee | ||
Comment 8•21 years ago
|
||
Comment on attachment 106292 [details] [diff] [review] Patch v.1 Dave - can you make jesse happy and review this, please? :-) Gerv
Attachment #106292 -
Flags: review?(justdave)
Comment 9•21 years ago
|
||
Comment on attachment 106292 [details] [diff] [review] Patch v.1 r= justdave a= justdave
Attachment #106292 -
Flags: review?(justdave) → review+
Assignee | ||
Comment 10•21 years ago
|
||
Fixed. Checking in template/en/default/reports/duplicates-table.html.tmpl; /cvsroot/mozilla/webtools/bugzilla/template/en/default/reports/duplicates-table.html.tmpl,v <-- duplicates-table.html.tmpl new revision: 1.6; previous revision: 1.5 done Checking in template/en/default/reports/duplicates.html.tmpl; /cvsroot/mozilla/webtools/bugzilla/template/en/default/reports/duplicates.html.tmpl,v <-- duplicates.html.tmpl new revision: 1.8; previous revision: 1.7 done Gerv
Status: REOPENED → RESOLVED
Closed: 21 years ago → 21 years ago
Resolution: --- → FIXED
Updated•21 years ago
|
Target Milestone: --- → Bugzilla 2.18
Updated•11 years ago
|
QA Contact: matty_is_a_geek → default-qa
You need to log in
before you can comment on or make changes to this bug.
Description
•