On Wed, 2006-09-06 at 16:02 +0300, Leonid Shulov wrote:
> I upgraded mysql to Ver 14.12 Distrib 5.0.24 and Bugzilla to Version 2.22.
> After that I can't see transaction in Bugzilla, in CVSziila I see them.
>
> Is there any way to solve this?
>
> Thanks,
>
Hi, we haven't ported to 2.22, so I don't know if there are any hidden
problems.
At the very least, you will need to re-apply the 2.18rc2 bugzilla patch
to provide transaction links.
The patch is at the bottom of the email.
Are you able to see the comments at all? Are there any error messages
from commit?
Regards,
Jason
Index: globals.pl
===================================================================
RCS file: /cvsroot/mozilla/webtools/bugzilla/Attic/globals.pl,v
retrieving revision 1.348
diff -u -r1.348 globals.pl
--- globals.pl 9 Jan 2006 18:59:53 -0000 1.348
+++ globals.pl 11 Sep 2006 03:26:26 -0000
@@ -536,6 +536,9 @@
$text =~ s~\b(mailto:|)?([\w\.\-\+\=]+\@[\w\-]+(?:\.[\w\-]+)+)\b
~<a href=\"mailto:$2\">$1$2</a>~igx;
+ # Transaction links - check for: CVS Transaction #xx: and transaction x
+ $text =~ s~(CVS Transaction \#|Subversion Revision \#)(\d+)~$1<a
href=\"/cvszilla/transaction.cgi?id=$2\">$2</a>~ig;
+
# attachment links - handle both cases separately for simplicity
$text =~ s~((?:^Created\ an\ |\b)attachment\s*\(id=(\d+)\)(\s\[edit\])?)
~($things[$count++] = GetAttachmentLink($2, $1)) &&