diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-04-16 19:07:52 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-04-16 19:07:52 +0000 |
commit | c5975243a5a660f99bcbb4d378a73e987def220b (patch) | |
tree | 4c5f86159fabffc34b8d4a0be34354606adaf614 /IkiWiki | |
parent | 2cf2d4b6ed50b08312c5e62ee77cd6cf9604d0f0 (diff) | |
download | ikiwiki-c5975243a5a660f99bcbb4d378a73e987def220b.tar ikiwiki-c5975243a5a660f99bcbb4d378a73e987def220b.tar.gz |
* Support setting svnpath to "" for wikis that are rooted at the top of
their svn repositories, with no trunk directory.
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Rcs/svn.pm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/IkiWiki/Rcs/svn.pm b/IkiWiki/Rcs/svn.pm index af4641d3a..c5e977bce 100644 --- a/IkiWiki/Rcs/svn.pm +++ b/IkiWiki/Rcs/svn.pm @@ -176,7 +176,8 @@ sub rcs_recentchanges ($) { #{{{ } foreach (keys %{$logentry->{paths}}) { - next unless /^\/\Q$config{svnpath}\E\/([^ ]+)(?:$|\s)/; + next unless ! length $config{svnpath} || + /^\/\Q$config{svnpath}\E\/([^ ]+)(?:$|\s)/; my $file=$1; my $diffurl=$config{diffurl}; $diffurl=~s/\[\[file\]\]/$file/g; @@ -218,7 +219,8 @@ sub rcs_notify () { #{{{ my @changed_pages; foreach my $change (`svnlook changed $config{svnrepo} -r $rev`) { chomp $change; - if ($change =~ /^[A-Z]+\s+\Q$config{svnpath}\E\/(.*)/) { + if (! length $config{svnpath} || + $change =~ /^[A-Z]+\s+\Q$config{svnpath}\E\/(.*)/) { push @changed_pages, $1; } } |