##// END OF EJS Templates
Issue937: error messages from hooks not sent over HTTP....
Issue937: error messages from hooks not sent over HTTP. Turns out that stderr - where ui.warn would send messages - was not being proxied over the HTTP connection. stdout was, and it seems you need both. (The streams are interleaved for readability.) Tested on Ubuntu 7.10 with lighttpd on hgweb.cgi with HTTP Basic auth, no SSL, using a changeset failing win32text.forbidcrlf.

File last commit:

r6262:de7256c8 default
r6265:be76e545 default
Show More
test-serve
51 lines | 1.4 KiB | text/plain | TextLexer
#!/bin/sh
hg init test
cd test
echo '[web]' > .hg/hgrc
echo 'accesslog = access.log' >> .hg/hgrc
echo % Without -v
hg serve -a localhost -p $HGPORT -d --pid-file=hg.pid
cat hg.pid >> "$DAEMON_PIDS"
if [ -f access.log ]; then
echo 'access log created - .hg/hgrc respected'
fi
echo % With -v
hg serve -a localhost -p $HGPORT1 -d --pid-file=hg.pid -v \
| sed -e 's/:[0-9][0-9]*//g' -e 's/localhost\.localdomain/localhost/'
cat hg.pid >> "$DAEMON_PIDS"
sleep 1
kill `cat hg.pid`
sleep 1
echo % With --prefix foo
hg serve -a localhost -p $HGPORT1 -d --pid-file=hg.pid -v --prefix foo \
| sed -e 's/:[0-9][0-9]*//g' -e 's/localhost\.localdomain/localhost/'
cat hg.pid >> "$DAEMON_PIDS"
sleep 1
kill `cat hg.pid`
sleep 1
echo % With --prefix /foo
hg serve -a localhost -p $HGPORT1 -d --pid-file=hg.pid -v --prefix /foo \
| sed -e 's/:[0-9][0-9]*//g' -e 's/localhost\.localdomain/localhost/'
cat hg.pid >> "$DAEMON_PIDS"
sleep 1
kill `cat hg.pid`
sleep 1
echo % With --prefix foo/
hg serve -a localhost -p $HGPORT1 -d --pid-file=hg.pid -v --prefix foo/ \
| sed -e 's/:[0-9][0-9]*//g' -e 's/localhost\.localdomain/localhost/'
cat hg.pid >> "$DAEMON_PIDS"
sleep 1
kill `cat hg.pid`
sleep 1
echo % With --prefix /foo/
hg serve -a localhost -p $HGPORT1 -d --pid-file=hg.pid -v --prefix /foo/ \
| sed -e 's/:[0-9][0-9]*//g' -e 's/localhost\.localdomain/localhost/'
cat hg.pid >> "$DAEMON_PIDS"