Rev 443: Add replay function. in file:///home/jelmer/bzr-svn/replay/
Jelmer Vernooij
jelmer at samba.org
Wed Apr 4 00:22:05 BST 2007
At file:///home/jelmer/bzr-svn/replay/
------------------------------------------------------------
revno: 443
revision-id: jelmer at samba.org-20070403232158-vo06rjr59iuvpw8o
parent: jelmer at samba.org-20070403203246-0tnykd16qpi4uy3n
committer: Jelmer Vernooij <jelmer at samba.org>
branch nick: replay
timestamp: Wed 2007-04-04 01:21:58 +0200
message:
Add replay function.
modified:
transport.py transport.py-20060406231150-b3472d06b3a0818d
=== modified file 'transport.py'
--- a/transport.py 2007-03-25 14:41:44 +0000
+++ b/transport.py 2007-04-03 23:21:58 +0000
@@ -163,6 +163,11 @@
return svn.ra.get_log(self._ra, [path], from_revnum, to_revnum, *args, **kwargs)
@need_lock
+ def reparent(self, revision, low_water_mark, *args, **kwargs):
+ mutter('svn reparent -r%r:%r' % (low_water_mark, revision))
+ return svn.ra.reparent(self._ra, revision, low_water_mark, *args, **kwargs)
+
+ @need_lock
def reparent(self, url):
url = url.rstrip("/")
if url == self.svn_url:
More information about the bazaar-commits
mailing list