Show More
@@ -93,7 +93,7 b' class ChangelogController(BaseController' | |||||
93 |
|
93 | |||
94 | revcount = min(max_rev, revcount) |
|
94 | revcount = min(max_rev, revcount) | |
95 | rev_end = max(0, rev_start - revcount) |
|
95 | rev_end = max(0, rev_start - revcount) | |
96 | dag = graph_rev(repo.repo, rev_start, rev_end) |
|
96 | dag = graph_rev(repo._repo, rev_start, rev_end) | |
97 |
|
97 | |||
98 | c.dag = tree = list(colored(dag)) |
|
98 | c.dag = tree = list(colored(dag)) | |
99 | data = [] |
|
99 | data = [] |
@@ -1,8 +1,8 b'' | |||||
1 | from rhodecode.tests import * |
|
1 | from rhodecode.tests import * | |
2 |
|
2 | |||
3 | ARCHIVE_SPECS = { |
|
3 | ARCHIVE_SPECS = { | |
4 |
'.tar.bz2': ('application/x- |
|
4 | '.tar.bz2': ('application/x-bzip2', 'tbz2', ''), | |
5 |
'.tar.gz': ('application/x- |
|
5 | '.tar.gz': ('application/x-gzip', 'tgz', ''), | |
6 | '.zip': ('application/zip', 'zip', ''), |
|
6 | '.zip': ('application/zip', 'zip', ''), | |
7 | } |
|
7 | } | |
8 |
|
8 |
General Comments 0
You need to be logged in to leave comments.
Login now