> and I want (:pagelist:) to use the list I generated as it's starting > point, not to filter results of ListPages() executed in the > PageListSources() step of $PageListFilters - also because one of my > main goals here is speed.
This is well out of the areas of pmwiki I've played in before, but couldn't you just set $PageListFilters to the set of functions that works for you? Save off the old values and reset them after your stuff has run if you want to keep other (:pagelist:) stuff working as normal... $OrigPageListFilters = $PageListFilters; unset($PageListFilters['PageListSources']); DoMyRecipe(); $PageListFilters = $OrigPageListFilters; Again, I don't know enuf to know if this is workable or not, but it looks like pagelist.php is set up fairly flexibly to allow this kind of thing... -Peter _______________________________________________ pmwiki-users mailing list [email protected] http://www.pmichaud.com/mailman/listinfo/pmwiki-users
