Skip to:
Content

bbPress.org

{26} bbPress.org Tickets for Importers, Themes, and the site

Grouped by component. The following components are tracked here:

  • Importer: The core importers, now in the plugins repository
  • Themes: previously bundled themes (Twenty Ten, Kakumei), now in the themes repository
  • bbPress.org: Tickets related to the workings of the bbpress.org site
Report execution failed:
OperationalError: ambiguous column name: description

SELECT COUNT(*) FROM (
SELECT
  component as __group__,
  ABS(6 - p.value) AS __color__,
  id AS ticket,
  summary,
  CASE
  WHEN status = 'accepted'
  THEN owner || '*'
  WHEN owner <> 'anonymous'
  THEN owner
  ELSE ''
  END as owner,
  component,
  priority as priority,
  severity,
  milestone as milestone,
  t.type AS type,
  status AS _status,
  CASE
  WHEN keywords LIKE '%needs_unit_tests%'
  THEN 'needs-unit-tests'
  WHEN keywords LIKE '%needs_docs%'
  THEN 'needs-docs'
  WHEN keywords LIKE '%close%'
  THEN 'close'
  WHEN keywords LIKE '%needs_review%'
  THEN 'needs-review'
  WHEN keywords LIKE '%dev_feedback%' OR keywords LIKE '%2nd_opinion%'
  THEN 'dev-feedback'
  WHEN keywords LIKE '%reporter_feedback%'
  THEN 'reporter-feedback'
  WHEN keywords LIKE '%commit%'
  THEN 'commit'
  WHEN keywords LIKE '%tested%'
  THEN 'tested'
  WHEN keywords LIKE '%has_patch%'
    OR keywords LIKE '%needs_testing%' AND keywords NOT LIKE '%needs_patch%'
  THEN 'has-patch'
  WHEN keywords LIKE '%early%'
  THEN 'early'
  ELSE ''
  END as workflow,
  time AS created,
  changetime AS modified,
  description AS _description,
  reporter AS _reporter
FROM ticket t,
  enum s, enum p
WHERE status <> 'closed' 
  AND s.name = t.severity AND s.type = 'severity'
  AND p.name = t.priority AND p.type = 'priority'
  AND milestone = 'bbPress.org'
ORDER BY Component, p.value DESC, s.value DESC, t.type, summary

) AS tab
Note: See TracReports for help on using and creating reports.