aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/RecentChanges_broken_with_empty_svnpath.mdwn
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-04-16 13:28:45 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-04-16 13:28:45 +0000
commit66f76e038fea0a932e70cde60970cb8322764145 (patch)
tree860b5ee86fc4c11dcef5fc1d797ac8e26479c520 /doc/bugs/RecentChanges_broken_with_empty_svnpath.mdwn
parent7f0f9bf5cfd431bd39e3a5c3eab73600ceea27dc (diff)
downloadikiwiki-66f76e038fea0a932e70cde60970cb8322764145.tar
ikiwiki-66f76e038fea0a932e70cde60970cb8322764145.tar.gz
web commit by HenrikBrixAndersen: Document problem with RecentPages and empty svnpath
Diffstat (limited to 'doc/bugs/RecentChanges_broken_with_empty_svnpath.mdwn')
-rw-r--r--doc/bugs/RecentChanges_broken_with_empty_svnpath.mdwn23
1 files changed, 23 insertions, 0 deletions
diff --git a/doc/bugs/RecentChanges_broken_with_empty_svnpath.mdwn b/doc/bugs/RecentChanges_broken_with_empty_svnpath.mdwn
new file mode 100644
index 000000000..961c31177
--- /dev/null
+++ b/doc/bugs/RecentChanges_broken_with_empty_svnpath.mdwn
@@ -0,0 +1,23 @@
+The [[RecentChanges]] page is broken (doesn't show any history at all) when used with an empty svnpath in the ikiwiki.setup file.
+
+Say you have the following configuration:
+
+ rcs => "svn",
+ svnrepo => "ssh+svn://foo.bar.com/wiki",
+ svnpath => "",
+
+In the above, $svnpath need to be either empty or "/" - both trigger the 'next unless' check in IkiWiki/Rcs/svn.pm:rcs_recentchanges() as shown in the patch below, thus causing all files to be ignored for [[RecentChanges]].
+
+I can not see why this check is needed in the first place, so here's a patch for removing it :)
+
+ diff -upr ikiwiki-1.49.orig/IkiWiki/Rcs/svn.pm ikiwiki-1.49/IkiWiki/Rcs/svn.pm
+ --- ikiwiki-1.49.orig/IkiWiki/Rcs/svn.pm Mon Apr 16 15:15:09 2007
+ +++ ikiwiki-1.49/IkiWiki/Rcs/svn.pm Mon Apr 16 15:15:47 2007
+ @@ -176,7 +176,6 @@ sub rcs_recentchanges ($) { #{{{
+ }
+
+ foreach (keys %{$logentry->{paths}}) {
+ - next unless /^\/\Q$config{svnpath}\E\/([^ ]+)(?:$|\s)/;
+ my $file=$1;
+ my $diffurl=$config{diffurl};
+ $diffurl=~s/\[\[file\]\]/$file/g;