diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-07-04 01:02:04 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-07-04 01:02:04 +0000 |
commit | 7b87549558a538e604c4368dc653eba11cb87bc9 (patch) | |
tree | 5ade8b27ff50162f382289192f978f53589eb06f | |
parent | 23ab9057d2999de112880ee82a818149f42d0d7b (diff) |
* Don't sent pings if the wiki is being rebuilt.
-rw-r--r-- | IkiWiki/Plugin/inline.pm | 2 | ||||
-rw-r--r-- | debian/changelog | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/inline.pm b/IkiWiki/Plugin/inline.pm index dc167043f..08126c4e6 100644 --- a/IkiWiki/Plugin/inline.pm +++ b/IkiWiki/Plugin/inline.pm @@ -89,7 +89,7 @@ sub preprocess_inline (@) { #{{{ if ($config{rss}) { writefile(rsspage($params{page}), $config{destdir}, genrss($params{page}, @list)); - $toping{$params{page}}=1; + $toping{$params{page}}=1 unless $config{rebuild}; } return $ret; diff --git a/debian/changelog b/debian/changelog index 2f9fe0cdb..7fc285bcb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -37,8 +37,9 @@ ikiwiki (1.8) UNRELEASED; urgency=low * Rebuilding wrappers is necessary on upgrade to this version. * Make ikiwiki --setup --refresh rebuild wrappers, so wrapper rebuild will be automatically done on all upgrades. + * Don't sent pings if the wiki is being rebuilt. - -- Joey Hess <joeyh@debian.org> Mon, 3 Jul 2006 20:24:18 -0400 + -- Joey Hess <joeyh@debian.org> Mon, 3 Jul 2006 21:01:28 -0400 ikiwiki (1.7) unstable; urgency=low |