equal
deleted
inserted
replaced
705 l.append(tmpl( |
705 l.append(tmpl( |
706 'shortlogentry', |
706 'shortlogentry', |
707 parity=next(parity), |
707 parity=next(parity), |
708 **webutil.commonentry(web.repo, ctx))) |
708 **webutil.commonentry(web.repo, ctx))) |
709 |
709 |
710 l.reverse() |
710 for entry in reversed(l): |
711 yield l |
711 yield entry |
712 |
712 |
713 tip = web.repo['tip'] |
713 tip = web.repo['tip'] |
714 count = len(web.repo) |
714 count = len(web.repo) |
715 start = max(0, count - web.maxchanges) |
715 start = max(0, count - web.maxchanges) |
716 end = min(count, start + web.maxchanges) |
716 end = min(count, start + web.maxchanges) |