2
# Copyright (C) 2006 Robey Pointer <robey@lag.net>
4
# This program is free software; you can redistribute it and/or modify
5
# it under the terms of the GNU General Public License as published by
6
# the Free Software Foundation; either version 2 of the License, or
7
# (at your option) any later version.
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
# GNU General Public License for more details.
14
# You should have received a copy of the GNU General Public License
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21
from paste import httpexceptions
22
from paste.request import path_info_pop
25
class BundleUI (object):
27
def __init__(self, branch):
32
def default(self, request, response):
33
# /bundle/<rev_id>/[<compare_rev_id>/]filename
35
h = self._branch.history
41
arg = path_info_pop(request.environ)
46
raise httpexceptions.HTTPMovedPermanently('../changes')
47
revid = h.fix_revid(args[0])
49
compare_revid = h.fix_revid(args[1])
54
bundle_data = h.get_bundle(revid, compare_revid)
56
self.log.exception('Exception fetching bundle')
57
raise httpexceptions.HTTPServerError('Could not fetch bundle')
59
response.headers['Content-Type'] = 'application/octet-stream'
60
response.headers['Content-Length'] = len(bundle_data)
61
response.write(bundle_data)
62
self.log.info('/bundle: %r seconds' % (time.time() - z,))