merge with stable
authorMatt Mackall <mpm@selenic.com>
Wed, 06 Feb 2013 14:43:29 -0600
changeset 18564 2fefd1170bf2
parent 18562 37010a55922a (current diff)
parent 18563 6d098adc5a46 (diff)
child 18565 ba5e71770db2
merge with stable
--- a/mercurial/hgweb/webcommands.py	Wed Feb 06 13:22:01 2013 +0100
+++ b/mercurial/hgweb/webcommands.py	Wed Feb 06 14:43:29 2013 -0600
@@ -497,8 +497,8 @@
 
     def bookmarks(**map):
         parity = paritygen(web.stripecount)
-        b = web.repo._bookmarks.items()
-        for k, n in sorted(b)[:10]:  # limit to 10 bookmarks
+        marks = [b for b in web.repo._bookmarks.items() if b[1] in web.repo]
+        for k, n in sorted(marks)[:10]:  # limit to 10 bookmarks
             yield {'parity': parity.next(),
                    'bookmark': k,
                    'date': web.repo[n].date(),
@@ -518,7 +518,10 @@
     def changelist(**map):
         parity = paritygen(web.stripecount, offset=start - end)
         l = [] # build a list in forward order for efficiency
-        for i in xrange(start, end):
+        revs = []
+        if start < end:
+            revs = web.repo.changelog.revs(start, end - 1)
+        for i in revs:
             ctx = web.repo[i]
             n = ctx.node()
             hn = hex(n)
--- a/tests/test-hgweb-commands.t	Wed Feb 06 13:22:01 2013 +0100
+++ b/tests/test-hgweb-commands.t	Wed Feb 06 14:43:29 2013 -0600
@@ -1399,6 +1399,14 @@
   $ grep Status search
   Status: 200 Script output follows\r (esc)
 
+summary works with filtering (issue3810)
+
+  $ PATH_INFO=/summary; export PATH_INFO
+  $ QUERY_STRING='style=monoblue'; export QUERY_STRING
+  $ python hgweb.cgi > summary.out
+  $ grep "^Status" summary.out
+  Status: 200 Script output follows\r (esc)
+
 proper status for filtered revision