##// END OF EJS Templates
hgweb: treat branch attribute `closed' as more important than `inactive'...
Jesse Long -
r14771:0cc66f13 stable
parent child Browse files
Show More
@@ -432,10 +432,10 b' def branches(web, req, tmpl):'
432 432 if limit > 0 and count >= limit:
433 433 return
434 434 count += 1
435 if ctx.node() not in heads:
435 if not web.repo.branchheads(ctx.branch()):
436 status = 'closed'
437 elif ctx.node() not in heads:
436 438 status = 'inactive'
437 elif not web.repo.branchheads(ctx.branch()):
438 status = 'closed'
439 439 else:
440 440 status = 'open'
441 441 yield {'parity': parity.next(),
General Comments 0
You need to be logged in to leave comments. Login now