Skip to content
Snippets Groups Projects
Commit c7d2898a authored by Jonas Haag's avatar Jonas Haag
Browse files

Download: tar -> tar.gz

parent 6e711356
No related branches found
No related tags found
No related merge requests found
......@@ -39,7 +39,7 @@ class ListBytesIO(object):
return b''.join(buf)
def tar_stream(repo, tree, mtime):
def tar_stream(repo, tree, mtime, format=''):
"""
Returns a generator that lazily assembles a .tar.gz archive, yielding it in
pieces (bytestrings). To obtain the complete .tar.gz binary file, simply
......@@ -50,7 +50,7 @@ def tar_stream(repo, tree, mtime):
time of all files in the resulting .tar.gz archive.
"""
buf = BytesIO()
with tarfile.open(None, "w", buf) as tar:
with tarfile.open(None, "w:%s" % format, buf) as tar:
for entry_abspath, entry in walk_tree(repo, tree):
blob = repo[entry.sha]
data = ListBytesIO(blob.chunked)
......
<div class=tree>
<h2>Tree @<a href="{{ url_for('commit', repo=repo.name, rev=rev) }}">{{ rev|shorten_sha1 }}</a>
<span>(<a href="{{ url_for('download', repo=repo.name, rev=rev) }}">Download tar</a>)</span>
<span>(<a href="{{ url_for('download', repo=repo.name, rev=rev) }}">Download .tar.gz</a>)</span>
</h2>
<ul>
{% for _, name, fullpath in root_tree.dirs %}
......
......@@ -235,10 +235,10 @@ class RawView(BlobViewMixin, BaseRepoView):
class DownloadView(BaseRepoView):
"""
Download a repo as a tar file
Download a repo as a tar.gz file
"""
def get_response(self):
tarname = "%s@%s.tar" % (self.context['repo'].name, self.context['rev'])
tarname = "%s@%s.tar.gz" % (self.context['repo'].name, self.context['rev'])
headers = {
'Content-Disposition': "attachment; filename=%s" % tarname,
'Cache-Control': "no-store", # Disables browser caching
......@@ -247,11 +247,12 @@ class DownloadView(BaseRepoView):
tar_stream = tarutils.tar_stream(
self.context['repo'],
self.context['blob_or_tree'],
self.context['commit'].commit_time
self.context['commit'].commit_time,
format="gz"
)
return Response(
tar_stream,
mimetype="application/tar",
mimetype="application/x-tgz",
headers=headers
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment