##// END OF EJS Templates
webcommands: do not modify repo.tagslist()...
Patrick Mezard -
r17261:c0068b05 stable
parent child Browse files
Show More
@@ -394,8 +394,7 b' def manifest(web, req, tmpl):'
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 = web.repo.tagslist()
397 i = reversed(web.repo.tagslist())
398 i.reverse()
399 parity = paritygen(web.stripecount)
398 parity = paritygen(web.stripecount)
400
399
401 def entries(notip=False, limit=0, **map):
400 def entries(notip=False, limit=0, **map):
@@ -466,8 +465,7 b' def branches(web, req, tmpl):'
466 latestentry=lambda **x: entries(1, **x))
465 latestentry=lambda **x: entries(1, **x))
467
466
468 def summary(web, req, tmpl):
467 def summary(web, req, tmpl):
469 i = web.repo.tagslist()
468 i = reversed(web.repo.tagslist())
470 i.reverse()
471
469
472 def tagentries(**map):
470 def tagentries(**map):
473 parity = paritygen(web.stripecount)
471 parity = paritygen(web.stripecount)
General Comments 0
You need to be logged in to leave comments. Login now