Mercurial > public > mercurial-scm > hg
comparison tests/test-hgweb-commands @ 11766:a65ea28269ef
Merge with stable
author | Patrick Mezard <pmezard@gmail.com> |
---|---|
date | Sun, 08 Aug 2010 22:29:39 +0200 |
parents | 1af96b090116 aff419e260f9 |
children |
comparison
equal
deleted
inserted
replaced
11764:16723af520b0 | 11766:a65ea28269ef |
---|---|
58 "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT '?cmd=unbundle' | 58 "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT '?cmd=unbundle' |
59 | 59 |
60 echo % Static files | 60 echo % Static files |
61 "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT '/static/style.css' | 61 "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT '/static/style.css' |
62 | 62 |
63 echo % Stop and restart with HGENCODING=cp932 | |
64 "$TESTDIR/killdaemons.py" | |
65 HGENCODING=cp932 hg serve --config server.uncompressed=False -n test \ | |
66 -p $HGPORT -d --pid-file=hg.pid -E errors.log | |
67 cat hg.pid >> $DAEMON_PIDS | |
68 | |
69 # commit message with Japanese Kanji 'Noh', which ends with '\x5c' | |
70 echo foo >> foo | |
71 HGENCODING=cp932 hg ci -m `python -c 'print("\x94\x5c")'` | |
72 | |
73 echo % Graph json escape of multibyte character | |
74 "$TESTDIR/get-with-headers.py" 127.0.0.1:$HGPORT '/graph/' \ | |
75 | grep '^var data =' | |
76 | |
63 echo % ERRORS ENCOUNTERED | 77 echo % ERRORS ENCOUNTERED |
64 cat errors.log | 78 cat errors.log |