[Codestriker-commits] CVS update: codestriker/lib/Codestriker/Repository Subversion.pm
Brought to you by:
sits
|
From: <si...@us...> - 2006-07-12 00:07:22
|
User: sits
Date: 06/07/11 17:07:21
Modified: . CHANGELOG
lib Codestriker.pm
lib/Codestriker/Repository Subversion.pm
Log:
* Newer versions of the Subversion client (1.3.2) were returning
warning text that was not parsed correctly. This has now been
fixed. Contributed by Vladimir Sizikov <vsi...@gm...>.
Index: CHANGELOG
===================================================================
RCS file: /cvsroot/codestriker/codestriker/CHANGELOG,v
retrieving revision 1.193
retrieving revision 1.194
diff -u -r1.193 -r1.194
--- CHANGELOG 4 Jul 2006 00:33:31 -0000 1.193
+++ CHANGELOG 12 Jul 2006 00:07:20 -0000 1.194
@@ -96,6 +96,10 @@
* Improved memory usage when integrated with very large LXR databases.
Contributed by Patrick Diamond <pat...@ma...>.
+* Newer versions of the Subversion client (1.3.2) were returning
+ warning text that was not parsed correctly. This has now been
+ fixed. Contributed by Vladimir Sizikov <vsi...@gm...>.
+
Version 1.9.1
* Correct problem introduced in 1.9.0 release where the email address
Index: Codestriker.pm
===================================================================
RCS file: /cvsroot/codestriker/codestriker/lib/Codestriker.pm,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- Codestriker.pm 15 Jun 2006 06:46:18 -0000 1.93
+++ Codestriker.pm 12 Jul 2006 00:07:21 -0000 1.94
@@ -31,7 +31,7 @@
);
# Version of Codestriker.
-$Codestriker::VERSION = "1.9.2-alpha-9";
+$Codestriker::VERSION = "1.9.2-rc1";
# Default title to display on each Codestriker screen.
$Codestriker::title = "Codestriker $Codestriker::VERSION";
Index: Subversion.pm
===================================================================
RCS file: /cvsroot/codestriker/codestriker/lib/Codestriker/Repository/Subversion.pm,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- Subversion.pm 7 Jun 2006 00:35:02 -0000 1.13
+++ Subversion.pm 12 Jul 2006 00:07:21 -0000 1.14
@@ -143,7 +143,7 @@
while(<$read_stderr_fh>) {
my $line = $_;
- if ($line =~ /^svn: URL '.*' refers to a directory/) {
+ if ($line =~ /^svn:.*URL '.*' refers to a directory/) {
$directory = $module_name;
}
}
|