Mercurial > hg
view tests/test-hgweb-filelog @ 10827:b66388f6adfa
color: don't split colors across lines (which confuses less -R)
Currently, less -R doesn't support colors spanning multiple lines; only
the first line will be colorized.
Instead of allowing colors to span multiple lines, the color extension
now applies colors to each line it receives, even when ui.write() is
given multiple lines in one call.
author | Brodie Rao <brodie@bitheap.org> |
---|---|
date | Fri, 02 Apr 2010 15:22:19 -0500 |
parents | cb93eee1fbcd |
children |
line wrap: on
line source
#!/bin/sh hg init test cd test echo b > b hg ci -Am "b" echo a > a hg ci -Am "first a" hg rm a hg ci -m "del a" echo b > a hg ci -Am "second a" hg rm a hg ci -m "del2 a" hg mv b c hg ci -m "mv b" echo c >> c hg ci -m "change c" hg log -p hg serve -n test -p $HGPORT -d --pid-file=hg.pid -E errors.log cat hg.pid >> $DAEMON_PIDS echo % tip - two revisions ("$TESTDIR/get-with-headers.py" localhost:$HGPORT '/log/tip/a') echo % second version - two revisions ("$TESTDIR/get-with-headers.py" localhost:$HGPORT '/log/3/a') echo % first deleted - one revision ("$TESTDIR/get-with-headers.py" localhost:$HGPORT '/log/2/a') echo % first version - one revision ("$TESTDIR/get-with-headers.py" localhost:$HGPORT '/log/1/a') echo % before addition - error ("$TESTDIR/get-with-headers.py" localhost:$HGPORT '/log/0/a') echo % should show base link, use spartan because it shows it ("$TESTDIR/get-with-headers.py" localhost:$HGPORT '/log/tip/c?style=spartan') echo % errors cat errors.log