Submitter | Alexander Plavin |
---|---|
Date | Aug. 6, 2013, 9:55 p.m. |
Message ID | <5230d8599bcc722c7f2a.1375826159@debian-alexander.dolgopa> |
Download | mbox | patch |
Permalink | /patch/2010/ |
State | Superseded |
Headers | show |
Comments
Patch
diff -r 6519709f0402 -r 5230d8599bcc mercurial/hgweb/webcommands.py --- a/mercurial/hgweb/webcommands.py Fri Jul 19 02:41:11 2013 +0400 +++ b/mercurial/hgweb/webcommands.py Fri Jul 19 02:09:13 2013 +0400 @@ -210,11 +210,7 @@ if 'node' in req.form: ctx = webutil.changectx(web.repo, req) elif 'rev' in req.form: - query = req.form['rev'][0] - try: - ctx = web.repo[query] - except (error.RepoError, error.LookupError): - return _search(web, req, tmpl) # XXX redirect to 404 page? + return _search(web, req, tmpl) else: ctx = web.repo['tip'] diff -r 6519709f0402 -r 5230d8599bcc tests/test-hgweb-commands.t --- a/tests/test-hgweb-commands.t Fri Jul 19 02:41:11 2013 +0400 +++ b/tests/test-hgweb-commands.t Fri Jul 19 02:09:13 2013 +0400 @@ -534,6 +534,8 @@ </body> </html> + $ "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT 'log?rev=stable&style=raw' | grep 'revision:' + revision: 2 File-related