changeset 269:24e9e140485f

hgweb: shrink the default changelog list to 10 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 hgweb: shrink the default changelog list to 10 manifest hash: 4d5f9f35b3dcb6bf05c0f25ab89cedba269ad924 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCpVUbywK+sNU5EO8RAlmTAJ9HzQz9C1lmL22IGU0tXYDTLqcVAQCfTD1U pDF449wXA8ocjAF+UUJ7sL8= =YyBZ -----END PGP SIGNATURE-----
author mpm@selenic.com
date Tue, 07 Jun 2005 00:04:43 -0800
parents 1634a7ea6748
children 5a80ed2158c8
files mercurial/hgweb.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/hgweb.py	Tue Jun 07 00:03:38 2005 -0800
+++ b/mercurial/hgweb.py	Tue Jun 07 00:04:43 2005 -0800
@@ -113,7 +113,7 @@
         return template(tmpl, self.filters, **map)
         
 class hgweb:
-    maxchanges = 20
+    maxchanges = 10
     maxfiles = 10
 
     def __init__(self, path, name, templates = ""):