Index: openacs-4/packages/bug-tracker/www/admin/versions-oracle.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/bug-tracker/www/admin/Attic/versions-oracle.xql,v diff -u -N --- openacs-4/packages/bug-tracker/www/admin/versions-oracle.xql 5 Mar 2003 17:41:17 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,102 +0,0 @@ - - - - oracle8.1.6 - - - - select v.version_id, - v.version_name, - v.description, - v.anticipated_freeze_date, - v.actual_freeze_date, - v.anticipated_release_date, - v.maintainer, - u.first_names as maintainer_first_names, - u.last_name as maintainer_last_name, - u.email as maintainer_email, - v.supported_platforms, - v.active_version_p, - v.assignable_p, - decode( v.assignable_p, 't', 'Yes', 'No' ) as assignable_p_pretty, - (select count(*) - from bt_bugs b - where b.found_in_version = v.version_id - or b.fix_for_version = v.version_id - or b.fixed_in_version = v.version_id) as num_bugs - from bt_versions v, - cc_users u - where v.project_id = :package_id - and v.active_version_p = 't' - and v.actual_release_date is null - and v.maintainer = u.user_id (+) - - - - - - - - select v.version_id, - v.version_name, - v.description, - v.anticipated_freeze_date, - v.actual_freeze_date, - v.anticipated_release_date, - v.maintainer, - u.first_names as maintainer_first_names, - u.last_name as maintainer_last_name, - u.email as maintainer_email, - v.supported_platforms, - v.active_version_p, - v.assignable_p, - decode( v.assignable_p, 't', 'Yes', 'No' ) as assignable_p_pretty, - (select count(*) - from bt_bugs b - where b.found_in_version = v.version_id - or b.fix_for_version = v.version_id - or b.fixed_in_version = v.version_id) as num_bugs - from bt_versions v, - cc_users u - where v.project_id = :package_id - and v.actual_release_date is null - and v.active_version_p = 'f' - and v.maintainer = u.user_id (+) - order by v.anticipated_release_date, version_name - - - - - - - - - select v.version_id, - v.version_name, - v.description, - v.anticipated_freeze_date, - v.actual_freeze_date, - v.anticipated_release_date, - v.actual_release_date, - v.maintainer, - u.first_names as maintainer_first_names, - u.last_name as maintainer_last_name, - u.email as maintainer_email, - v.supported_platforms, - v.active_version_p, - v.assignable_p, - decode( v.assignable_p, 't', 'Yes', 'No' ) as assignable_p_pretty, - (select count(*) - from bt_bugs b - where b.found_in_version = v.version_id - or b.fix_for_version = v.version_id - or b.fixed_in_version = v.version_id) as num_bugs - from bt_versions v, - cc_users u - where v.project_id = :package_id - and v.actual_release_date is not null - and v.maintainer = u.user_id (+) - order by v.actual_release_date, version_name - - - Index: openacs-4/packages/bug-tracker/www/admin/versions-postgresql.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/bug-tracker/www/admin/Attic/versions-postgresql.xql,v diff -u -N --- openacs-4/packages/bug-tracker/www/admin/versions-postgresql.xql 5 Mar 2003 17:41:17 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,99 +0,0 @@ - - - - postgresql7.1 - - - - select v.version_id, - v.version_name, - v.description, - v.anticipated_freeze_date, - v.actual_freeze_date, - v.anticipated_release_date, - v.maintainer, - u.first_names as maintainer_first_names, - u.last_name as maintainer_last_name, - u.email as maintainer_email, - v.supported_platforms, - v.active_version_p, - v.assignable_p, - case when v.assignable_p = 't' then 'Yes' else 'No' end as assignable_p_pretty, - (select count(*) - from bt_bugs b - where b.found_in_version = v.version_id - or b.fix_for_version = v.version_id - or b.fixed_in_version = v.version_id) as num_bugs - from bt_versions v left outer join - cc_users u on (u.user_id = v.maintainer) - where v.project_id = :package_id - and v.active_version_p = 't' - and v.actual_release_date is null - - - - - - - select v.version_id, - v.version_name, - v.description, - v.anticipated_freeze_date, - v.actual_freeze_date, - v.anticipated_release_date, - v.maintainer, - u.first_names as maintainer_first_names, - u.last_name as maintainer_last_name, - u.email as maintainer_email, - v.supported_platforms, - v.active_version_p, - v.assignable_p, - case when v.assignable_p = 't' then 'Yes' else 'No' end as assignable_p_pretty, - (select count(*) - from bt_bugs b - where b.found_in_version = v.version_id - or b.fix_for_version = v.version_id - or b.fixed_in_version = v.version_id) as num_bugs - from bt_versions v left outer join - cc_users u on (u.user_id = v.maintainer) - where v.project_id = :package_id - and v.actual_release_date is null - and v.active_version_p = 'f' - order by v.anticipated_release_date, version_name - - - - - - - - - select v.version_id, - v.version_name, - v.description, - v.anticipated_freeze_date, - v.actual_freeze_date, - v.anticipated_release_date, - v.actual_release_date, - v.maintainer, - u.first_names as maintainer_first_names, - u.last_name as maintainer_last_name, - u.email as maintainer_email, - v.supported_platforms, - v.active_version_p, - v.assignable_p, - case when v.assignable_p = 't' then 'Yes' else 'No' end as assignable_p_pretty, - (select count(*) - from bt_bugs b - where b.found_in_version = v.version_id - or b.fix_for_version = v.version_id - or b.fixed_in_version = v.version_id) as num_bugs - from bt_versions v left outer join - cc_users u on (u.user_id = v.maintainer) - where v.project_id = :package_id - and v.actual_release_date is not null - order by v.actual_release_date, version_name - - - - Index: openacs-4/packages/bug-tracker/www/admin/versions.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/bug-tracker/www/admin/versions.xql,v diff -u -N -r1.1 -r1.2 --- openacs-4/packages/bug-tracker/www/admin/versions.xql 5 Mar 2003 17:41:17 -0000 1.1 +++ openacs-4/packages/bug-tracker/www/admin/versions.xql 14 Jun 2018 13:21:19 -0000 1.2 @@ -1,4 +1,96 @@ + + + select v.version_id, + v.version_name, + v.description, + v.anticipated_freeze_date, + v.actual_freeze_date, + v.anticipated_release_date, + v.maintainer, + u.first_names as maintainer_first_names, + u.last_name as maintainer_last_name, + u.email as maintainer_email, + v.supported_platforms, + v.active_version_p, + v.assignable_p, + case when v.assignable_p = 't' then 'Yes' else 'No' end as assignable_p_pretty, + (select count(*) + from bt_bugs b + where b.found_in_version = v.version_id + or b.fix_for_version = v.version_id + or b.fixed_in_version = v.version_id) as num_bugs + from bt_versions v left outer join + cc_users u on (u.user_id = v.maintainer) + where v.project_id = :package_id + and v.active_version_p = 't' + and v.actual_release_date is null + + + + + + + select v.version_id, + v.version_name, + v.description, + v.anticipated_freeze_date, + v.actual_freeze_date, + v.anticipated_release_date, + v.maintainer, + u.first_names as maintainer_first_names, + u.last_name as maintainer_last_name, + u.email as maintainer_email, + v.supported_platforms, + v.active_version_p, + v.assignable_p, + case when v.assignable_p = 't' then 'Yes' else 'No' end as assignable_p_pretty, + (select count(*) + from bt_bugs b + where b.found_in_version = v.version_id + or b.fix_for_version = v.version_id + or b.fixed_in_version = v.version_id) as num_bugs + from bt_versions v left outer join + cc_users u on (u.user_id = v.maintainer) + where v.project_id = :package_id + and v.actual_release_date is null + and v.active_version_p = 'f' + order by v.anticipated_release_date, version_name + + + + + + + + select v.version_id, + v.version_name, + v.description, + v.anticipated_freeze_date, + v.actual_freeze_date, + v.anticipated_release_date, + v.actual_release_date, + v.maintainer, + u.first_names as maintainer_first_names, + u.last_name as maintainer_last_name, + u.email as maintainer_email, + v.supported_platforms, + v.active_version_p, + v.assignable_p, + case when v.assignable_p = 't' then 'Yes' else 'No' end as assignable_p_pretty, + (select count(*) + from bt_bugs b + where b.found_in_version = v.version_id + or b.fix_for_version = v.version_id + or b.fixed_in_version = v.version_id) as num_bugs + from bt_versions v left outer join + cc_users u on (u.user_id = v.maintainer) + where v.project_id = :package_id + and v.actual_release_date is not null + order by v.actual_release_date, version_name + + +