Did anyone make any progress on this?
I've checked out webby, but haven't had a free moment to dig into the
code.
One thing I know that does NOT work is recursion with @pages.find
For example say I have 'mypage.txt', in the meta-data headers I'll put
a key called 'children' with the path to a directory as a value.
If I do something along the lines of
all_pages = @pages.find(:all, :in_directory => "current")
all_pages.each {|page|
if page.children
all_children = @pages.find(:all, :in_directory =>
page.children)
end
}
I can't use any methods on members of the all_children
collection....ie I loop over all_children and attempt to do something
like child.url, I get nothing :(