comparison tests/test-hgwebdir @ 11677:8f8a7976f4bc stable

hgwebdir: allow pure relative globs in paths This allows the (to me, in some setups) obvious configuration: [paths] / = * or / = ** Relative paths used to work with [collections] even though it isn't documented. Perhaps it should be documented?
author Mads Kiilerich <mads@kiilerich.com>
date Wed, 21 Jul 2010 22:22:28 +0200
parents c63a6ddbbf9a
children 9617803b1acb
comparison
equal deleted inserted replaced
11676:e4357c214bf1 11677:8f8a7976f4bc
63 [paths] 63 [paths]
64 t/a/=$root/a 64 t/a/=$root/a
65 b=$root/b 65 b=$root/b
66 coll=$root/* 66 coll=$root/*
67 rcoll=$root/** 67 rcoll=$root/**
68 star=*
69 starstar=**
68 EOF 70 EOF
69 71
70 hg serve -p $HGPORT1 -d --pid-file=hg.pid --webdir-conf paths.conf \ 72 hg serve -p $HGPORT1 -d --pid-file=hg.pid --webdir-conf paths.conf \
71 -A access-paths.log -E error-paths-2.log 73 -A access-paths.log -E error-paths-2.log
72 cat hg.pid >> $DAEMON_PIDS 74 cat hg.pid >> $DAEMON_PIDS