User: sits
Date: 07/06/28 00:01:12
Modified: . CHANGELOG
lib/Codestriker/FileParser SubversionDiff.pm
Log:
Support subversion diff files which contain 'Copied:' entries.
Index: CHANGELOG
===================================================================
RCS file: /cvsroot/codestriker/codestriker/CHANGELOG,v
retrieving revision 1.202
retrieving revision 1.203
diff -u -r1.202 -r1.203
--- CHANGELOG 7 Jun 2007 04:46:26 -0000 1.202
+++ CHANGELOG 28 Jun 2007 07:01:07 -0000 1.203
@@ -11,6 +11,8 @@
'svn://my.subversion.server/repos/product/trunk' rather than
'svn:svn://my.subversion.server/repos/product/trunk'.
+* Support subversion diff files which contain "Copied:" entries.
+
Version 1.9.3
* The project list screen now displays for each project, the total
Index: SubversionDiff.pm
===================================================================
RCS file:
/cvsroot/codestriker/codestriker/lib/Codestriker/FileParser/SubversionDiff.pm,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- SubversionDiff.pm 7 Mar 2007 03:03:40 -0000 1.6
+++ SubversionDiff.pm 28 Jun 2007 07:01:11 -0000 1.7
@@ -54,6 +54,7 @@
$line !~ /^Added:/o &&
$line !~ /^Deleted:/o &&
$line !~ /^Modified:/o &&
+ $line !~ /^Copied:/o &&
$line !~ /^Property changes on:/o) {
$line = <$fh>;
}
@@ -65,7 +66,7 @@
}
return () unless
- $line =~ /^(Index|Added|Modified|Deleted): (.*)$/o;
+ $line =~ /^(Index|Added|Modified|Copied|Deleted): (.*)$/o;
$entry_type = $1;
$filename = $2;
$line = <$fh>;
-------------------------------------------------------------------------
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-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/codestriker-commits