##// 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 394 branches=webutil.nodebranchdict(web.repo, ctx))
395 395
396 396 def tags(web, req, tmpl):
397 i = web.repo.tagslist()
398 i.reverse()
397 i = reversed(web.repo.tagslist())
399 398 parity = paritygen(web.stripecount)
400 399
401 400 def entries(notip=False, limit=0, **map):
@@ -466,8 +465,7 b' def branches(web, req, tmpl):'
466 465 latestentry=lambda **x: entries(1, **x))
467 466
468 467 def summary(web, req, tmpl):
469 i = web.repo.tagslist()
470 i.reverse()
468 i = reversed(web.repo.tagslist())
471 469
472 470 def tagentries(**map):
473 471 parity = paritygen(web.stripecount)
General Comments 0
You need to be logged in to leave comments. Login now