Mercurial > hg
comparison mercurial/hgweb/hgwebdir_mod.py @ 51700:7f0cb9ee0534
Backout accidental publication of a large range of revisions
I accidentally published 25e7f9dcad0f::bd1483fd7088, this is the inverse.
author | Raphaël Gomès <rgomes@octobus.net> |
---|---|
date | Tue, 23 Jul 2024 10:02:46 +0200 |
parents | 493034cc3265 |
children | ca7bde5dbafb |
comparison
equal
deleted
inserted
replaced
51699:bd1483fd7088 | 51700:7f0cb9ee0534 |
---|---|
118 descend = ui.configbool(b'web', b'descend') | 118 descend = ui.configbool(b'web', b'descend') |
119 collapse = ui.configbool(b'web', b'collapse') | 119 collapse = ui.configbool(b'web', b'collapse') |
120 seenrepos = set() | 120 seenrepos = set() |
121 seendirs = set() | 121 seendirs = set() |
122 for name, path in repos: | 122 for name, path in repos: |
123 | |
123 if not name.startswith(subdir): | 124 if not name.startswith(subdir): |
124 continue | 125 continue |
125 name = name[len(subdir) :] | 126 name = name[len(subdir) :] |
126 directory = False | 127 directory = False |
127 | 128 |