"Mark Phippard" <markphip@gmail.com> writes:
> I can tentatively volunteer (I'd rather you have more time to help
> code). The tentative part is that I am not sure what the job is. I
> guess I'd be looking for things that are now DONE with an eye for any
> 1.5 blockers that we missed? What do I do with everything else
> though? Leave at --- or assign to 1.6-consider or what?
The job is basically this:
for i in issues_marked_as("---"):
if issue_is_a_dup_of_some_other_issue(i):
close_as_dup(i)
elif issue_is_invalid(i):
close_as_invalid(i)
elif issue_already_fixed(i):
close_as_fixed(i)
elif issue_unreproducible(i):
close_as_worksforme(i)
elif issue_is_real_but_we_won't_fix_it(i):
close_as_wontfix(i)
elif issue_is_closeable_for_some_other_reason(i):
close_as_it_for_that_reason(i)
# Else issue should remain open, so DTRT with it...
# Set priority, platform, subcomponent, whatever, as needed.
adjust_all_fields_that_need_adjustment(i)
# Figure out where to put it.
if issue_is_not_important_enough_to_block_any_particular_release(i):
move_to_milestone(i, "nonblocking")
elif issue_resolution_would_require_incompatible_changes(i):
move_to_milestone(i, "2.0")
elif issue_hurts_people_somewhat(i):
move_to_milestone(i, "1.6") # or whatever
elif issue_hurts_people_a_lot(i):
move_to_milestone(i, "1.5-consider")
elif issue_hurts_and_hurts_and_won't_stop_hurting(i):
move_to_milestone(i, "1.5")
-K
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Thu Oct 4 20:40:29 2007