Hi David,

> It seems there needs to be a way to configure codestriker such that a
> reviewer can add lots of comments, and one e-mail notification would
> notify the interested parties that a batch of comments has been added.
>  I'm not at all sure how this would be accomplished.  Perhaps the tool
> could go into a comment mode, where the comments are being queued but
> not submitted yet.  The commenter would be required to submit them
> before they hit the database, and would be warned if he chose to leave
> comment mode without submitting.

Maybe you can do something like the following.  Open up 
codestriker.conf, and set:

$email_send_options =
{
      comments_sent_to_topic_author => 0,
      comments_sent_to_commenter => 0,
      topic_state_change_sent_to_reviewers => 1
};

Then perhaps you can add an additional state, inside @topic_states, such 
as 'Reviewed', eg:

@topic_states = ('Open', 'Closed', 'Committed', 'Obsoleted', 'Deleted',
                  'Reviewed');

So when a topic is created, it is in 'Open' state initially.  Once the 
review has been completed, they can move the topic state to 'Reviewed'. 
  This will then send out an email to the author, who can then go to the 
comments page to work through the issues.

Cheers,
David

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Codestriker-user mailing list
Codestriker-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/codestriker-user

Reply via email to