Changeset - 4f89f5f078f8
[Not reviewed]
Merge default
0 1 0
Marcin Kuzminski - 15 years ago 2010-12-18 17:13:46
marcin@python-works.com
merged with beta
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
rhodecode/lib/helpers.py
Show inline comments
 
@@ -424,7 +424,7 @@ def action_parser(user_log):
 

	
 
    def get_cs_links():
 
        if action == 'push':
 
            revs_limit = 1000
 
            revs_limit = 5
 
            revs = action_params.split(',')
 
            cs_links = " " + ', '.join ([link(rev,
 
                    url('changeset_home',
 
@@ -443,7 +443,7 @@ def action_parser(user_log):
 
                cs_links += html_tmpl % (uniq_id, ', '.join([link(rev,
 
                    url('changeset_home',
 
                    repo_name=user_log.repository.repo_name,
 
                    revision=rev)) for rev in revs[:revs_limit] ]))
 
                    revision=rev)) for rev in revs[revs_limit:] ]))
 

	
 
            return cs_links
 
        return ''
0 comments (0 inline, 0 general)