Rev 306: Fix compatibility with Subversion 1.5 in file:///data/jelmer/bzr-svn/0.4.10-fixed/
Jelmer Vernooij
jelmer at samba.org
Fri Jul 4 15:57:37 BST 2008
At file:///data/jelmer/bzr-svn/0.4.10-fixed/
------------------------------------------------------------
revno: 306
revision-id: jelmer at samba.org-20080704145736-0jz9bpyk5bcs9kcw
parent: jelmer at samba.org-20080704144907-mutus804mvouwl7y
committer: Jelmer Vernooij <jelmer at samba.org>
branch nick: 0.4.10-fixed
timestamp: Fri 2008-07-04 16:57:36 +0200
message:
Fix compatibility with Subversion 1.5
modified:
debian/changelog changelog-20061009030331-beff4307o0ccq70i-3
transport.py transport.py-20060406231150-b3472d06b3a0818d
=== modified file 'debian/changelog'
--- a/debian/changelog 2008-05-11 23:49:46 +0000
+++ b/debian/changelog 2008-07-04 14:57:36 +0000
@@ -1,3 +1,10 @@
+bzr-svn (0.4.10-2) unstable; urgency=high
+
+ * Fix compatibility with Subversion 1.5.
+ * Get rid of relative imports since they conflict with some other plugins.
+
+ -- Jelmer Vernooij <jelmer at samba.org> Fri, 04 Jul 2008 16:56:59 +0200
+
bzr-svn (0.4.10-1) unstable; urgency=low
* New upstream release.
=== modified file 'transport.py'
--- a/transport.py 2008-07-04 14:49:07 +0000
+++ b/transport.py 2008-07-04 14:57:36 +0000
@@ -411,7 +411,7 @@
discover_changed_paths, strict_node_history, revprops, rcvr,
pool=None):
if paths is None:
- paths = ["/"]
+ paths = [""]
self.mutter('svn log %r:%r %r (limit: %r)' % (from_revnum, to_revnum, paths, limit))
if hasattr(svn.ra, 'get_log2'):
return svn.ra.get_log2(self._ra, paths,
@@ -755,8 +755,7 @@
return self.PhonyLock() # FIXME
def _is_http_transport(self):
- return (self.svn_url.startswith("http://") or
- self.svn_url.startswith("https://"))
+ return False
def clone_root(self):
if self._is_http_transport():
More information about the bazaar-commits
mailing list