tests/test-cat
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
Tue, 13 Feb 2007 10:02:07 -0200
changeset 4080 ef14fdb675da
parent 1933 7544700fd931
child 6093 f5b00b6e426a
permissions -rwxr-xr-x
hgwebdir: try to get web.style and web.motd from the ui.config system This finishes fixing issue253. As a bonus, web.style and web.motd settings from ~/.hgrc will be used for the hgwebdir index page.

#!/bin/sh
#
mkdir t
cd t
hg init
echo 0 > a
echo 0 > b
hg ci -A -m m -d "1000000 0"
hg rm a
hg cat a
sleep 1 # make sure mtime is changed
echo 1 > b
hg ci -m m -d "1000000 0"
echo 2 > b
hg cat -r 0 a
hg cat -r 0 b
hg cat -r 1 a
hg cat -r 1 b