equal
deleted
inserted
replaced
392 bookmarks=webutil.nodebookmarksdict(web.repo, node), |
392 bookmarks=webutil.nodebookmarksdict(web.repo, node), |
393 inbranch=webutil.nodeinbranch(web.repo, ctx), |
393 inbranch=webutil.nodeinbranch(web.repo, ctx), |
394 branches=webutil.nodebranchdict(web.repo, ctx)) |
394 branches=webutil.nodebranchdict(web.repo, ctx)) |
395 |
395 |
396 def tags(web, req, tmpl): |
396 def tags(web, req, tmpl): |
397 i = reversed(web.repo.tagslist()) |
397 i = list(reversed(web.repo.tagslist())) |
398 parity = paritygen(web.stripecount) |
398 parity = paritygen(web.stripecount) |
399 |
399 |
400 def entries(notip=False, limit=0, **map): |
400 def entries(notip=False, limit=0, **map): |
401 count = 0 |
401 count = 0 |
402 for k, n in i: |
402 for k, n in i: |