At file:///data/jelmer/bzr-svn/trunk/
------------------------------------------------------------
revno: 1934
revision-id: [EMAIL PROTECTED]
parent: [EMAIL PROTECTED]
parent: [EMAIL PROTECTED]
committer: Jelmer Vernooij <[EMAIL PROTECTED]>
branch nick: trunk
timestamp: Mon 2008-10-06 17:42:31 +0200
message:
Fix encoding issue.
modified:
server.py server.py-20081006150454-t45tvwmbhpesdh7d-1
subvertpy/subvertpy/server.py server.py-20081006143330-f9p0l7eih6izgoct-1
------------------------------------------------------------
revno: 1925.1.19
revision-id: [EMAIL PROTECTED]
parent: [EMAIL PROTECTED]
committer: Jelmer Vernooij <[EMAIL PROTECTED]>
branch nick: trunk
timestamp: Mon 2008-10-06 17:33:17 +0200
message:
Add extra newline in output.
modified:
subvertpy/server.py server.py-20081006143330-f9p0l7eih6izgoct-1
------------------------------------------------------------
revno: 1925.1.18
revision-id: [EMAIL PROTECTED]
parent: [EMAIL PROTECTED]
committer: Jelmer Vernooij <[EMAIL PROTECTED]>
branch nick: trunk
timestamp: Mon 2008-10-06 17:30:25 +0200
message:
Use literal.
modified:
subvertpy/server.py server.py-20081006143330-f9p0l7eih6izgoct-1
=== modified file 'server.py'
--- a/server.py 2008-10-06 15:30:38 +0000
+++ b/server.py 2008-10-06 15:42:31 +0000
@@ -55,7 +55,7 @@
break
if revno != 0:
rev =
self.branch.repository.get_revision(self.branch.get_rev_id(revno))
- send_revision(revno, rev.committer,
time.strftime("%Y-%m-%dT%H:%M:%S.00000Z", time.gmtime(rev.timestamp)),
rev.message)
+ send_revision(revno, rev.committer.encode("utf-8"),
time.strftime("%Y-%m-%dT%H:%M:%S.00000Z", time.gmtime(rev.timestamp)),
rev.message.encode("utf-8"))
finally:
self.branch.repository.unlock()
=== modified file 'subvertpy/subvertpy/server.py'
--- a/subvertpy/subvertpy/server.py 2008-10-06 15:30:38 +0000
+++ b/subvertpy/subvertpy/server.py 2008-10-06 15:42:31 +0000
@@ -80,7 +80,8 @@
return NODE_DIR
def log(self, target_path, start_rev, end_rev, changed_paths,
- strict_node, limit=None):
+ strict_node, limit=None, include_merged_revisions=False,
+ all_revprops=None, revprops=None):
def send_revision(revno, author, date, message):
self.send_msg([[], revno, [author], [date], [message]])
self.send_success([], "")
@@ -206,4 +207,4 @@
def mutter(self, text):
if self._logf is not None:
- self._logf.write(text)
+ self._logf.write("%s\n" % text)
--
bazaar-commits mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/bazaar-commits