aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2011-09-01 11:38:46 -0400
committerJoey Hess <joey@kitenet.net>2011-09-01 11:38:46 -0400
commitad22a39cfe57d6ed1e80434276c7c77dcbd217c7 (patch)
treeab703cdc519f0267e4fe612641aace20c35eb2cf
parent7d2b68cd16dd50a76b3b93699e59b7ec4c00a907 (diff)
parent37a0eb353ea56d5e53cbe191e86844b17bf4c5ce (diff)
downloadikiwiki-ad22a39cfe57d6ed1e80434276c7c77dcbd217c7.tar
ikiwiki-ad22a39cfe57d6ed1e80434276c7c77dcbd217c7.tar.gz
Merge branch 'master' of ssh://git.ikiwiki.info
-rw-r--r--doc/bugs/conditional_preprocess_during_scan.mdwn18
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/bugs/conditional_preprocess_during_scan.mdwn b/doc/bugs/conditional_preprocess_during_scan.mdwn
index baa430e19..254ebac22 100644
--- a/doc/bugs/conditional_preprocess_during_scan.mdwn
+++ b/doc/bugs/conditional_preprocess_during_scan.mdwn
@@ -17,3 +17,21 @@ reprocessed is done so in the same conditions as the original call.
> been scanned yet). If you have a clever idea for how to fix this, I'd love
> to hear it - being able to specify a [[plugins/contrib/trail]] in terms
> of a sorted pagespec would be useful. --[[smcv]]
+
+>> I have a solution to the dependency-ordering problem in a different
+>> branch of my repository, with a post_scan hook mechanism which I use to
+>> be able to sort outer inline pages according to the last modification
+>> date of their nested inline pages. The way I implemented it currently,
+>> though, doesn't use the existing hooks mechanism of ikiwiki (because
+>> it's something which I believe to be more efficiently done the way I
+>> implemented it) so I don't know how likely it is to be included
+>> upstream.
+
+>> For what it's worth, I think that my post_scan hook mechanism would work
+>> rather fine with your trail plugin. However, the case of the if
+>> directive is considerably more complicated, because the conditional
+>> can introduce a much stronger feedback effect in the pre/post scanning
+>> dependency. In fact, it's probably possible to build a couple of pages
+>> with vicious conditional dependency circles that would break/unbreak
+>> depending on which pass we are in. And I believe this is an intrinsic
+>> limitation of the system, which cannot be solved at all.