Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/hgweb/hgweb_mod.py @ 4325:aa26759c6fb3
Merge with crew-stable.
author | Alexis S. L. Carvalho <alexis@cecm.usp.br> |
---|---|
date | Sat, 07 Apr 2007 04:45:27 -0300 |
parents | f344440fdcb0 7843528a7922 |
children | c593e502f7fd |
comparison
equal
deleted
inserted
replaced
4313:61ab822a9e88 | 4325:aa26759c6fb3 |
---|---|
255 for ctx in revgen(): | 255 for ctx in revgen(): |
256 miss = 0 | 256 miss = 0 |
257 for q in qw: | 257 for q in qw: |
258 if not (q in ctx.user().lower() or | 258 if not (q in ctx.user().lower() or |
259 q in ctx.description().lower() or | 259 q in ctx.description().lower() or |
260 q in " ".join(ctx.files()[:20]).lower()): | 260 q in " ".join(ctx.files()).lower()): |
261 miss = 1 | 261 miss = 1 |
262 break | 262 break |
263 if miss: | 263 if miss: |
264 continue | 264 continue |
265 | 265 |