Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
klaus
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
jonashaag
klaus
Commits
c7d2898a
Commit
c7d2898a
authored
10 years ago
by
Jonas Haag
Browse files
Options
Downloads
Patches
Plain Diff
Download: tar -> tar.gz
parent
6e711356
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
klaus/tarutils.py
+2
-2
2 additions, 2 deletions
klaus/tarutils.py
klaus/templates/tree.inc.html
+1
-1
1 addition, 1 deletion
klaus/templates/tree.inc.html
klaus/views.py
+5
-4
5 additions, 4 deletions
klaus/views.py
with
8 additions
and
7 deletions
klaus/tarutils.py
+
2
−
2
View file @
c7d2898a
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
klaus/templates/tree.inc.html
+
1
−
1
View file @
c7d2898a
<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 %}
...
...
This diff is collapsed.
Click to expand it.
klaus/views.py
+
5
−
4
View file @
c7d2898a
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment