[Codestriker-commits] CVS update: codestriker/lib/Codestriker/Repository Subversion.pm
Brought to you by:
sits
|
From: <si...@us...> - 2008-08-06 05:24:45
|
User: sits
Date: 08/08/05 22:24:43
Modified: . CHANGELOG
lib/Codestriker/Repository Subversion.pm
Log:
* Use pegged revisions instead of operative revisions when retrieving
files from Subversion to handle situations where files have been moved
within the repository since the review was created. Fixed by
cle...@us....
Index: CHANGELOG
===================================================================
RCS file: /cvsroot/codestriker/codestriker/CHANGELOG,v
retrieving revision 1.253
retrieving revision 1.254
diff -u -r1.253 -r1.254
--- CHANGELOG 5 Aug 2008 10:45:12 -0000 1.253
+++ CHANGELOG 6 Aug 2008 05:24:42 -0000 1.254
@@ -43,7 +43,12 @@
* Make the topic title in the edit comment page link directly to the
code location being commented on rather than just the top of the
- view topic page.
+ view topic page.
+
+* Use pegged revisions instead of operative revisions when retrieving
+ files from Subversion to handle situations where files have been moved
+ within the repository since the review was created. Fixed by
+ cle...@us....
Version 1.9.5
Index: Subversion.pm
===================================================================
RCS file: /cvsroot/codestriker/codestriker/lib/Codestriker/Repository/Subversion.pm,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- Subversion.pm 3 Aug 2008 01:59:55 -0000 1.23
+++ Subversion.pm 6 Aug 2008 05:24:43 -0000 1.24
@@ -71,9 +71,7 @@
push @args, '--non-interactive';
push @args, '--no-auth-cache';
push @args, @{ $self->{userCmdLine} };
- push @args, '--revision';
- push @args, $revision;
- push @args, $self->{repository_url} . '/' . $filename;
+ push @args, $self->{repository_url} . '/' . $filename . '@' . $revision;
Codestriker::execute_command($read_stdout_fh, undef,
$Codestriker::svn, @args);
|