mercurial/hgweb/webcommands.py
changeset 9198 061eeb602354
parent 9136 31177742f54a
child 9404 4483af166c61
equal deleted inserted replaced
9197:a05aa192a00a 9198:061eeb602354
   337 def tags(web, req, tmpl):
   337 def tags(web, req, tmpl):
   338     i = web.repo.tagslist()
   338     i = web.repo.tagslist()
   339     i.reverse()
   339     i.reverse()
   340     parity = paritygen(web.stripecount)
   340     parity = paritygen(web.stripecount)
   341 
   341 
   342     def entries(notip=False,limit=0, **map):
   342     def entries(notip=False, limit=0, **map):
   343         count = 0
   343         count = 0
   344         for k, n in i:
   344         for k, n in i:
   345             if notip and k == "tip":
   345             if notip and k == "tip":
   346                 continue
   346                 continue
   347             if limit > 0 and count >= limit:
   347             if limit > 0 and count >= limit: