Here's another few questions:
What to do about accessing named children? The freemarker template model has a node and a hash model. The hash model is for key based access, the node model understands the data as a tree, where each node has anonymous children. Should foo?keys include the names of child nodes or only the properties? (I suspect it should include both) Should foo.bar return a value at all if the node doen't have a 'bar' property but rather a child named 'bar'? (I suspect so) Or should I have to call foo?children and then loop over the children until I get to the node where node?node_name matches 'bar'? (I suspect not) ---------------------------------------------------------------- for list details see http://www.magnolia.info/en/developer.html ----------------------------------------------------------------
