aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-10-04 16:03:01 -0400
committerJoey Hess <joey@gnu.kitenet.net>2009-10-04 16:03:01 -0400
commite529c561f548fa2d277b8cb7c123c3a46a0427a4 (patch)
tree1a314c29d4893b744b3c8633a4fd3b9a3ba09230
parentda5c12e9ebb6bad5e73b0b709d0bcc82657ac8e3 (diff)
downloadikiwiki-e529c561f548fa2d277b8cb7c123c3a46a0427a4.tar
ikiwiki-e529c561f548fa2d277b8cb7c123c3a46a0427a4.tar.gz
inline: Use a contentless dependency in quick mode.
-rw-r--r--IkiWiki/Plugin/inline.pm7
-rw-r--r--debian/changelog1
2 files changed, 4 insertions, 4 deletions
diff --git a/IkiWiki/Plugin/inline.pm b/IkiWiki/Plugin/inline.pm
index ccfadfd69..5133c4ba6 100644
--- a/IkiWiki/Plugin/inline.pm
+++ b/IkiWiki/Plugin/inline.pm
@@ -197,7 +197,7 @@ sub preprocess_inline (@) {
split ' ', $params{pagenames};
}
else {
- add_depends($params{page}, $params{pages});
+ add_depends($params{page}, $params{pages}, content => ! $quick);
@list = pagespec_match_list(
[ grep { $_ ne $params{page} } keys %pagesources ],
@@ -248,10 +248,9 @@ sub preprocess_inline (@) {
}
# Explicitly add all currently displayed pages as dependencies, so
- # that if they are removed or otherwise changed, the inline will be
- # sure to be updated.
+ # that if they are removed, the inline will be sure to be updated.
foreach my $p ($#list >= $#feedlist ? @list : @feedlist) {
- add_depends($params{page}, $p);
+ add_depends($params{page}, $p, content => ! $quick);
}
if ($feeds && exists $params{feedpages}) {
diff --git a/debian/changelog b/debian/changelog
index ae39d4847..9d03ae990 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -18,6 +18,7 @@ ikiwiki (3.14159266) UNRELEASED; urgency=low
no longer trigger an unnecessary update of the page count.
* map: Use a contentless dependency unless show= is specified.
This makes simple maps efficient enough that they can be used on sidebars!
+ * inline: Use a contentless dependency in quick mode.
-- Joey Hess <joeyh@debian.org> Sun, 27 Sep 2009 17:40:03 -0400