2009-07-07 19:49:50 +02:00
|
|
|
I have the following structure:
|
|
|
|
|
|
|
|
## page0
|
|
|
|
# Page 0
|
2009-07-07 20:44:17 +02:00
|
|
|
\[[!inline raw="yes" pages="page1"]]
|
2009-07-07 19:49:50 +02:00
|
|
|
|
|
|
|
## page1
|
|
|
|
# Page 1
|
2009-07-07 20:44:17 +02:00
|
|
|
\[[!inline pages="page2"]]
|
2009-07-07 19:49:50 +02:00
|
|
|
|
|
|
|
## page2
|
|
|
|
# Page 2
|
|
|
|
test
|
|
|
|
|
|
|
|
In this situation, a change in page 2 will trigger a rebuild of page1 but not of page0.
|
|
|
|
|
|
|
|
refreshing wiki..
|
|
|
|
scanning page2.mdwn
|
|
|
|
rendering page2.mdwn
|
|
|
|
rendering page1.mdwn, which depends on page2
|
|
|
|
done
|
|
|
|
|
|
|
|
In my real world situation, page1 is actually listing all pages that match a certain tag and page0 is the home page.
|
|
|
|
Whenever a page got tagged, it will appear on page1 but not on page0.
|
|
|
|
|
|
|
|
Am I missing something? Is this a bug or Ikiwiki not supposed to support this use case?
|
2009-07-10 20:08:38 +02:00
|
|
|
|
|
|
|
> Perhaps the inline plugin isn't being clever enough about dependencies -
|
|
|
|
> strictly speaking, when a page is inlined with full content, the inlining
|
|
|
|
> page should probably inherit all the inlined page's dependencies.
|
|
|
|
> That might be prohibitively slow in practise due to the way IkiWiki
|
|
|
|
> currently merges pagespecs, though - maybe the patches I suggested for
|
|
|
|
> [[separating_and_uniquifying_pagespecs|todo/should_optimise_pagespecs]]
|
|
|
|
> would help? --[[smcv]]
|