Brief summary of your issues.

If generally useful, should be added to project_issue directly. Otherwise, altered in with drupalorg.

Comments

drumm’s picture

Assigned: Unassigned » drumm
Issue tags: +drupal.org redesign sprint 4
dww’s picture

Project: Drupal.org customizations » Project issue tracking
Version: » 6.x-1.x-dev
Component: User interface » Views integration

Seems generally useful. Not sure exactly what you envision, but it'd be great if it was done via views. Let me know if you need any help on this.

Cheers,
-Derek

drumm’s picture

Status: Active » Needs review
StatusFileSize
new2.69 KB

Attached is the new display. 2 columns to keep it brief, project and node title. Kept as table so we have standard background coloring.

dww’s picture

Status: Needs review » Needs work
Issue tags: +drupal.org redesign project

Mostly looks good, but I ran into a few problems when I enabled this on a local test site:

A) Since you're reusing the project_issue_user_issues view, you're inheriting a bunch of relationships and filters from the default display that we don't need. This results in a needlessly complicated and expensive query.

B) Enabling this results in a bunch of notices from project_issue_preprocess_views_view_table() since that function assumes (perhaps incorrectly) that the results include the issue status and priority (to allow the table rows to have the right classes and be styled appropriately). You're including status in the query and then excluding it from the display, but we either need to do the same for priority or we need to fix project_issue_preprocess_views_view_table() to not assume both exist in every result.

dww’s picture

StatusFileSize
new3.63 KB

This fixed 4.A. 4.B is still broken.

dww’s picture

Status: Needs work » Needs review
StatusFileSize
new4.68 KB

This fixes 4.B.

drumm’s picture

Tested and works for me.

dww’s picture

Status: Needs review » Fixed

Committed #6 to project_issue HEAD.

Automatically closed -- issue fixed for 2 weeks with no activity.