Mercurial > hg
view contrib/docker/apache-server/vhost.conf @ 29155:aaabed77791a stable 3.8.2
help: search section of help topic by translated section name correctly
Before this patch, "hg help topic.section" might show unexpected
section of help topic in some encoding.
It applies str.lower() instead of encoding.lower(str) on translated
message to search section case-insensitively, but some encoding uses
0x41(A) - 0x5a(Z) as the second or later byte of multi-byte character
(for example, ja_JP.cp932), and str.lower() causes unexpected result.
To search section of help topic by translated section name correctly,
this patch replaces str.lower() by encoding.lower(str) for both query
string (in commands.help()) and translated help text (in
minirst.getsections()).
author | FUJIWARA Katsunori <foozy@lares.dti.ne.jp> |
---|---|
date | Fri, 13 May 2016 07:19:59 +0900 |
parents | fd5247a88e63 |
children |
line wrap: on
line source
# Apache won't be able to resolve its own hostname, so we sneak this # into the global context to silence a confusing-to-user warning on # server start. ServerName hg <VirtualHost *:80> DocumentRoot /var/hg/htdocs <Directory /> Options FollowSymLinks AllowOverride None </Directory> SetEnv HGENCODING UTF-8 SetEnv LC_TYPE UTF-8 WSGIDaemonProcess hg processes=${WSGI_PROCESSES} threads=${WSGI_THREADS} maximum-requests=${WSGI_MAX_REQUESTS} user=www-data group=www-data display-name=hg-wsgi WSGIProcessGroup hg WSGIScriptAliasMatch ^(.*) /var/hg/htdocs/hgweb.wsgi$1 ErrorLog ${APACHE_LOG_DIR}/error.log LogLevel warn CustomLog ${APACHE_LOG_DIR}/access.log combined </VirtualHost>