comparison tests/test-serve.out @ 6419:7c36aee46bf5

hg serve: add clearer message when starting the server with --verbose Explicitly tell the address is the one the process is bound to. Fix the printing of IPv6 addresses.
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Mon, 31 Mar 2008 18:44:12 +0200
parents de7256c82fad
children eb69e7989145
comparison
equal deleted inserted replaced
6417:13fafd8cc4a1 6419:7c36aee46bf5
1 % Without -v 1 % Without -v
2 access log created - .hg/hgrc respected 2 access log created - .hg/hgrc respected
3 % With -v 3 % With -v
4 listening at http://localhost/ (127.0.0.1) 4 listening at http://localhost/ (bound to 127.0.0.1)
5 % With --prefix foo 5 % With --prefix foo
6 listening at http://localhost/foo/ (127.0.0.1) 6 listening at http://localhost/foo/ (bound to 127.0.0.1)
7 % With --prefix /foo 7 % With --prefix /foo
8 listening at http://localhost/foo/ (127.0.0.1) 8 listening at http://localhost/foo/ (bound to 127.0.0.1)
9 % With --prefix foo/ 9 % With --prefix foo/
10 listening at http://localhost/foo/ (127.0.0.1) 10 listening at http://localhost/foo/ (bound to 127.0.0.1)
11 % With --prefix /foo/ 11 % With --prefix /foo/
12 listening at http://localhost/foo/ (127.0.0.1) 12 listening at http://localhost/foo/ (bound to 127.0.0.1)