* Fix sending of commit mails when new pages are added via the web.

master
joey 2007-04-26 23:29:19 +00:00
parent 1fff84233c
commit 01f41560e3
3 changed files with 10 additions and 8 deletions

View File

@ -94,12 +94,8 @@ sub set_banned_users (@) { #{{{
sub commit_notify_list ($@) { #{{{
my $committer=shift;
my @pages;
foreach my $file (@_) {
push @pages, grep { $pagesources{$_} eq $file } keys %pagesources;
}
my @pages = map pagename($_), @_;
my @ret;
my $userinfo=userinfo_retrieve();
foreach my $user (keys %{$userinfo}) {
@ -108,7 +104,8 @@ sub commit_notify_list ($@) { #{{{
length $userinfo->{$user}->{subscriptions} &&
exists $userinfo->{$user}->{email} &&
length $userinfo->{$user}->{email} &&
grep { pagespec_match($_, $userinfo->{$user}->{subscriptions}, "") } @pages) {
grep { pagespec_match($_, $userinfo->{$user}->{subscriptions}, "") }
map pagename($_), @_) {
push @ret, $userinfo->{$user}->{email};
}
}

3
debian/changelog vendored
View File

@ -20,8 +20,9 @@ ikiwiki (1.51) UNRELEASED; urgency=low
* Due to template changes and style sheet changes that depend on them,
wiki rebuilds are recommended on upgrade to this version.
* Avoid .svn directories when installing from svn checkout.
* Fix sending of commit mails when new pages are added via the web.
-- Joey Hess <joeyh@debian.org> Thu, 26 Apr 2007 18:47:38 -0400
-- Joey Hess <joeyh@debian.org> Thu, 26 Apr 2007 19:27:42 -0400
ikiwiki (1.50) unstable; urgency=low

View File

@ -4,3 +4,7 @@ the same page do result in commit mails.
(Granted, this could be almost considered a feature, if the new page is in
an rss feed..)
Turned out to occur only for web commits that added a new file, since now
the wiki does not rebuild during the commit hook in a web commit, it could
not rely on `%pagesources` having the file. [[done]] --[[Joey]]