diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-04-29 22:57:21 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-04-29 22:57:21 +0000 |
commit | 0d01b4f4260a820995065ffd80a71c74ad9ae99b (patch) | |
tree | a3d1c68b67b32b606e31cef50baeaaa475bca6ff | |
parent | 1e62e4f87fdf1441afab47a60aaf60b9246a5876 (diff) | |
download | ikiwiki-0d01b4f4260a820995065ffd80a71c74ad9ae99b.tar ikiwiki-0d01b4f4260a820995065ffd80a71c74ad9ae99b.tar.gz |
updates for usedirs
-rwxr-xr-x | Makefile.PL | 2 | ||||
-rwxr-xr-x | t/linkify.t | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.PL b/Makefile.PL index 43af95c59..73c4950cb 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -30,7 +30,7 @@ extra_build: ./pm_filter $(PREFIX) $(VER) $(PROBABLE_INST_LIB) < ikiwiki.in > ikiwiki.out chmod +x ikiwiki.out LANG=C perl -I. $(extramodules) $(tflag) ikiwiki.out doc html --templatedir=templates \ - --underlaydir=basewiki \ + --underlaydir=basewiki --nousedirs\ --wikiname="ikiwiki" --verbose \ --exclude=/discussion --no-discussion --userdir=users \ --plugin=goodstuff \ diff --git a/t/linkify.t b/t/linkify.t index 962456c30..c7bfbcd38 100755 --- a/t/linkify.t +++ b/t/linkify.t @@ -5,6 +5,9 @@ use Test::More tests => 16; BEGIN { use_ok("IkiWiki"); } +# currently coded for non usedirs mode (TODO: check both) +$config{usedirs}=0; + sub linkify ($$$$) { my $lpage=shift; my $page=shift; |