-
-
It'd be nicer if this was left-aligned. And actually, maybe we don't even want the headers in this case?
-
This needs more contrast. It looks like it's just white on yellow with no separation, until you look close. Try a darker border.
-
reviewboard/static/rb/js/reviews.js (Diff revision 1) Not sure these comments are really necessary, but they should at least match the indentation of the variables. Same with the ones below.
-
reviewboard/static/rb/js/reviews.js (Diff revision 1) table_tbody should just be tbody, I think. The underscore doesn't match the style of other variables.
-
reviewboard/static/rb/js/reviews.js (Diff revision 1) Most of the code generally does: tbody.append($('<tr/>') .addClass('no-issues') .append($('<td/>') .attr....
-
-
-
reviewboard/templates/reviews/comment_issue.html (Diff revision 1) This will fail. You'll need to use {% static "rb/images/list.png" %}
-
reviewboard/templates/reviews/review_issue_summary_table.html (Diff revision 1) This is going to introduce 3 new SQL queries. I'd like to avoid that. Instead, process what you need in review_detail and diff and use that variable here. Also, does this work on the diff viewer?
Summary Table Patch
Review Request #3167 — Created June 30, 2012 and submitted
Information | |
---|---|
medanat | |
Review Board | |
Reviewers | |
reviewboard | |
Summary Table Patch: -Added issue-link anchor around the issue id column -Added reviewer filter -Added a "There are no (open|closed|dropped) issues [from reviewer]" message for filters with no results -Restyled "Back to summary table" button and fixed overlay issue for non-review owners -Uncollapse the box of the targeted comment if within a collapsed box -Minor optimizations/style fixes/code refactoring A screenshot of "moving the filters into the table columns" suggestion (ChipX86) is also provided.
Local dev, Chrome
Description | From | Last Updated |
---|---|---|
It'd be nicer if this was left-aligned. And actually, maybe we don't even want the headers in this case? |
|
|
This needs more contrast. It looks like it's just white on yellow with no separation, until you look close. Try … |
|
|
Not sure these comments are really necessary, but they should at least match the indentation of the variables. Same with … |
|
|
table_tbody should just be tbody, I think. The underscore doesn't match the style of other variables. |
|
|
Most of the code generally does: tbody.append($('') .addClass('no-issues') .append($('') .attr.... |
|
|
What is this doing? |
|
|
Not sure this is necessary. |
|
|
This will fail. You'll need to use {% static "rb/images/list.png" %} |
|
|
This is going to introduce 3 new SQL queries. I'd like to avoid that. Instead, process what you need in … |
|
|
This should be window.location.hash. Will fix this later tonight. |
ME medanat |
Change Summary:
Handled all issues mentioned in review except for explicitly setting window.location. Added 2 screenshots to show new "Issues" border and left aligned-no header "no issues" message.
Diff: |
Revision 2 (+286 -128) |
||||||
---|---|---|---|---|---|---|---|
Screenshots: |
|
-
-
reviewboard/static/rb/js/reviews.js (Diff revision 2) This should be window.location.hash. Will fix this later tonight.
Change Summary:
Added window prefix to location.hash.