Show More
@@ -424,7 +424,7 b' def action_parser(user_log):' | |||
|
424 | 424 | |
|
425 | 425 | def get_cs_links(): |
|
426 | 426 | if action == 'push': |
|
427 |
revs_limit = |
|
|
427 | revs_limit = 5 | |
|
428 | 428 | revs = action_params.split(',') |
|
429 | 429 | cs_links = " " + ', '.join ([link(rev, |
|
430 | 430 | url('changeset_home', |
@@ -443,7 +443,7 b' def action_parser(user_log):' | |||
|
443 | 443 | cs_links += html_tmpl % (uniq_id, ', '.join([link(rev, |
|
444 | 444 | url('changeset_home', |
|
445 | 445 | repo_name=user_log.repository.repo_name, |
|
446 |
revision=rev)) for rev in revs[: |
|
|
446 | revision=rev)) for rev in revs[revs_limit:] ])) | |
|
447 | 447 | |
|
448 | 448 | return cs_links |
|
449 | 449 | return '' |
General Comments 0
You need to be logged in to leave comments.
Login now