]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Render.pm
add a page describing ikiwiki's git repo, including branches
[ikiwiki.git] / IkiWiki / Render.pm
index 76e8ef1f4e7d0369eb6b48cc296436607037cfc6..17b60ee941dc7b789f81871650c54c7279670d7c 100644 (file)
@@ -85,12 +85,6 @@ sub genpage ($$) { #{{{
                $actions++;
        }
                
-       if ($config{rcs} && exists $config{recentchangespage} &&
-           $page ne $config{recentchangespage}) {
-               $template->param(recentchangesurl => urlto($config{recentchangespage}, $page));
-               $actions++;
-       }
-
        if (length $config{historyurl}) {
                my $u=$config{historyurl};
                $u=~s/\[\[file\]\]/$pagesources{$page}/g;
@@ -209,7 +203,6 @@ sub render ($) { #{{{
                
                my $output=htmlpage($page);
                writefile($output, $config{destdir}, genpage($page, $content));
-               utime($pagemtime{$page}, $pagemtime{$page}, $config{destdir}."/".$output);
        }
        else {
                my $srcfd=readfile($srcfile, 1, 1);
@@ -235,7 +228,6 @@ sub render ($) { #{{{
                                }
                        }
                });
-               utime($pagemtime{$file}, $pagemtime{$file}, $config{destdir}."/".$file);
        }
 } #}}}
 
@@ -377,7 +369,8 @@ sub refresh () { #{{{
                        $pagemtime{$page}=$mtime;
                        if (isinternal($page)) {
                                push @internal, $file;
-                               scan($file);
+                               # Preprocess internal page in scan-only mode.
+                               preprocess($page, $page, readfile(srcfile($file)), 1);
                        }
                        else {
                                push @needsbuild, $file;