]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/UserInfo.pm
use pagesources rather than renderedfiles to get the list of pages
[ikiwiki.git] / IkiWiki / UserInfo.pm
index 03d63cc23376722cee7663828e91e69b0fb79030..99b3c9f0aba71b5f6f00f340c05fd8ce45d64998 100644 (file)
@@ -15,12 +15,19 @@ sub userinfo_retrieve () { #{{{
 sub userinfo_store ($) { #{{{
        my $userinfo=shift;
        
+       my $newfile="$config{wikistatedir}/userdb.new";
        my $oldmask=umask(077);
-       my $ret=Storable::lock_store($userinfo, "$config{wikistatedir}/userdb");
+       my $ret=Storable::lock_store($userinfo, $newfile);
        umask($oldmask);
+       if (defined $ret && $ret) {
+               if (! rename($newfile, "$config{wikistatedir}/userdb")) {
+                       unlink($newfile);
+                       $ret=undef;
+               }
+       }
        return $ret;
 } #}}}
-       
+
 sub userinfo_get ($$) { #{{{
        my $user=shift;
        my $field=shift;
@@ -101,7 +108,7 @@ 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}, "") } @pages) {
                        push @ret, $userinfo->{$user}->{email};
                }
        }
@@ -132,6 +139,10 @@ sub send_commit_mails ($$$@) { #{{{
                else {
                        $pagelist.=join(" ", @changed_pages);
                }
+               #translators: The three variables are the name of the wiki,
+               #translators: A list of one or more pages that were changed,
+               #translators: And the name of the user making the change.
+               #translators: This is used as the subject of a commit email.
                my $subject=sprintf(gettext("update of %s's %s by %s"), 
                        $config{wikiname}, $pagelist, $user);
 
@@ -146,8 +157,8 @@ sub send_commit_mails ($$$@) { #{{{
                # Daemonize, in case the mail sending takes a while.
                defined(my $pid = fork) or error("Can't fork: $!");
                return if $pid;
-               setsid() or error("Can't start a new session: $!");
                eval q{use POSIX 'setsid'};
+               setsid() or error("Can't start a new session: $!");
                chdir '/';
                open STDIN, '/dev/null';
                open STDOUT, '>/dev/null';