|   Created Codestriker topic at:
  http://codestriker.sourceforge.net/cgi-bin/codestriker.pl?topic=9961406&action=view
  User: sits    
  Date: 05/01/27 16:59:11
  Modified:    .        CHANGELOG
               lib/Codestriker/TopicListeners Bugzilla.pm
  Log:
  * When creating new topics linked to Bugzilla, also include the topic
    description field in the Bugzilla comment.
  
  
  
  Index: CHANGELOG
  ===================================================================
  RCS file: /cvsroot/codestriker/codestriker/CHANGELOG,v
  retrieving revision 1.159
  retrieving revision 1.160
  diff -u -r1.159 -r1.160
  --- CHANGELOG	23 Jan 2005 21:05:25 -0000	1.159
  +++ CHANGELOG	28 Jan 2005 00:59:04 -0000	1.160
  @@ -19,6 +19,9 @@
     the other reviewers of the topic, for important comments that needs
     to be sent to all reviewers.
   
  +* When creating new topics linked to Bugzilla, also include the topic
  +  description field in the Bugzilla comment.
  +
   Version 1.8.5
   
   * Complete support for VSS repositories.  Topics linked to a VSS
  
  
  
  
  
  Index: Bugzilla.pm
  ===================================================================
  RCS file: /cvsroot/codestriker/codestriker/lib/Codestriker/TopicListeners/Bugzilla.pm,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- Bugzilla.pm	27 Sep 2004 22:55:09 -0000	1.5
  +++ Bugzilla.pm	28 Jan 2005 00:59:10 -0000	1.6
  @@ -44,7 +44,8 @@
   	my $text = "Codestriker topic: $topic_url created.\n" .
   	    "Author: $topic->{author}\n" .
   	    "Reviewer(s): $topic->{reviewers}\n" .
  -	    "Title: $topic->{title}\n";
  +            "Title: $topic->{title}\n" .
  +            "Description:\n" . "$topic->{description}\n"; 
               
   	for (my $i = 0; $i <= $#ids; $i++) {
   	    $bug_db_connection->update_bug($ids[$i], $text);
  
  
  
 |