[Codestriker-commits] CVS update: codestriker/lib/Codestriker/Repository Subversion.pm
Brought to you by:
sits
|
From: <si...@us...> - 2008-07-11 23:12:51
|
User: sits
Date: 08/07/11 16:12:50
Modified: . CHANGELOG
lib/Codestriker/Repository Subversion.pm
Log:
* Creation of Subversion topics which use a file for the module field
in the create topic screen may not work correctly for some versions
of Subversion. This has now been fixed by
rob...@us....
Index: CHANGELOG
===================================================================
RCS file: /cvsroot/codestriker/codestriker/CHANGELOG,v
retrieving revision 1.244
retrieving revision 1.245
diff -u -r1.244 -r1.245
--- CHANGELOG 11 Jul 2008 09:50:21 -0000 1.244
+++ CHANGELOG 11 Jul 2008 23:12:50 -0000 1.245
@@ -11,7 +11,12 @@
Perl 5.10 from rob...@us....
* Deleting a topic connected with a TestDirector bug has been fixed
- from rob...@us....
+ by rob...@us....
+
+* Creation of Subversion topics which use a file for the module field
+ in the create topic screen may not work correctly for some versions
+ of Subversion. This has now been fixed by
+ rob...@us....
* Ability to parse git patches correctly.
Index: Subversion.pm
===================================================================
RCS file: /cvsroot/codestriker/codestriker/lib/Codestriker/Repository/Subversion.pm,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- Subversion.pm 18 Jun 2008 04:47:14 -0000 1.21
+++ Subversion.pm 11 Jul 2008 23:12:50 -0000 1.22
@@ -135,7 +135,7 @@
open($read_stdout_fh, '<', \$read_data);
while (<$read_stdout_fh>) {
if (/kind\s*\=\s*\"(\w+)\"/) {
- $file_url = $1 eq "File";
+ $file_url = $1 =~ /^File$/io;
last;
}
}
|