# # # patch "index.psp" # from [25435ec2cde9290caf895bbf929eda38db801c3d] # to [82ba8724528442e6ab8e3be8c74e6859ba26c4cc] # # patch "wrapper.py" # from [9ada4ee3f2078bda572f277642ef1c5fcce150c1] # to [73a2888f5418985fd17550bbd9e97a1c5322a7da] # ============================================================ --- index.psp 25435ec2cde9290caf895bbf929eda38db801c3d +++ index.psp 82ba8724528442e6ab8e3be8c74e6859ba26c4cc @@ -39,12 +39,11 @@

- + <% branches.sort() for branch in branches: - heads = ' '.join(map(lambda x: link("revision", x), mt.heads(branch))) - req.write('' % (link("branch", branch, branch), heads)) + req.write('' % (link("branch", branch, branch))) %>
BranchHead revision(s)
Branch
%s%s
%s
============================================================ --- wrapper.py 9ada4ee3f2078bda572f277642ef1c5fcce150c1 +++ wrapper.py 73a2888f5418985fd17550bbd9e97a1c5322a7da @@ -70,7 +70,7 @@ return apache.HTTP_BAD_REQUEST id = form['id'] tar_file = DummyFile("") - tar_file_name = "%s.tgz" % (id) + tar_file_name = "%s.tar" % (id) req.content_type = 'application/x-tar' req.headers_out["Content-Disposition"] = "attachment; filename=%s" % tar_file_name tf = tarfile.open(mode="w", fileobj=tar_file)