# HG changeset patch # User Pierre-Yves David # Date 1694198081 -7200 # Node ID 32c13716147ebdb34dfe99af68a4458dd35f4160 # Parent 6408777c8fa498662513a2aa590189dd2c13a559# Parent 04bfcb41674503405a781de444034716843431f9 branching: merge with stable diff -r 6408777c8fa4 -r 32c13716147e mercurial/hgweb/wsgicgi.py --- a/mercurial/hgweb/wsgicgi.py Wed Sep 06 18:12:27 2023 +0200 +++ b/mercurial/hgweb/wsgicgi.py Fri Sep 08 20:34:41 2023 +0200 @@ -9,9 +9,7 @@ # http://www.python.org/dev/peps/pep-0333/#the-server-gateway-side -import os - -from .. import pycompat +from .. import encoding, pycompat from ..utils import procutil @@ -22,7 +20,10 @@ procutil.setbinary(procutil.stdin) procutil.setbinary(procutil.stdout) - environ = dict(os.environ.items()) # re-exports + environ = { + k.decode('iso8859-1'): v.decode('iso8859-1') + for k, v in encoding.environ.items() + } # re-exports environ.setdefault('PATH_INFO', '') if environ.get('SERVER_SOFTWARE', '').startswith('Microsoft-IIS'): # IIS includes script_name in PATH_INFO diff -r 6408777c8fa4 -r 32c13716147e tests/test-wsgicgi.t --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test-wsgicgi.t Fri Sep 08 20:34:41 2023 +0200 @@ -0,0 +1,18 @@ + $ hg init test + $ cat >hgweb.cgi < #!$PYTHON + > from mercurial import demandimport; demandimport.enable() + > from mercurial.hgweb import hgweb + > from mercurial.hgweb import wsgicgi + > application = hgweb(b"test", b"Empty test repository") + > wsgicgi.launch(application) + > HGWEB + $ chmod 755 hgweb.cgi + +Check that non-ASCII bytes roundtrip correctly. + + $ . "$TESTDIR/cgienv" + $ PATH_INFO="/rev/$(python -c 'import sys; sys.stdout.buffer.write(b"\xe2\x80\x94")')"; export PATH_INFO + $ QUERY_STRING="style=raw"; export QUERY_STRING + $ "$PYTHON" ./hgweb.cgi | grep error + error: unknown revision '\xe2\x80\x94' (esc)