# HG changeset patch # User TK Soh # Date 1175178779 18000 # Node ID 7843528a7922c13f1ccd41ab413d6f2602622b9f # Parent 38922a13101ea5339ee7d0970f603aca953ff7f6 hgweb: expand keyword search to full list of files diff -r 38922a13101e -r 7843528a7922 mercurial/hgweb/hgweb_mod.py --- a/mercurial/hgweb/hgweb_mod.py Thu Mar 29 09:28:10 2007 -0500 +++ b/mercurial/hgweb/hgweb_mod.py Thu Mar 29 09:32:59 2007 -0500 @@ -265,7 +265,7 @@ for q in qw: if not (q in ctx.user().lower() or q in ctx.description().lower() or - q in " ".join(ctx.files()[:20]).lower()): + q in " ".join(ctx.files()).lower()): miss = 1 break if miss: