Description
Return the list of tiddlers which are the result of processing the provided
recipe. If more than one tiddler of the same name is pulled from different bags, the
tiddler from the
bag processed later is the one that is kept. See also
recipe cascade.
Parameters
Returns
If there are no tiddlers, an empty list is returned.
Example
recipe = Recipe('foobar')
recipe = store.get(recipe)
tiddlers = control.get_tiddlers_from_recipe(recipe)
Notes
This is the canonical way of getting the tiddlers from a recipe. If the
store attribute is set on the provided recipe, the bags listed in the recipe will be read from the store to get their lists of tiddlers and then filter them according to the filters in the recipe.
If an
environ parameter is provided this is assumed to be a
dict which is the
WSGI environ. It is used to process the
_recipe_template (see the
source for details).