Hi all, I've been combing the archives (and Kent's book) to see if its possible to separate Tapestry files into separate directories. In short, I want to configure my Tapestry app similar to:
/WEB-INF/pages --> contains all the page files /WEB-INF/html --> contains all html files or even something like, /WEB-INF/templates --> containing both pages and html files I've seen an example of adding some configuration to the <context>.application file: <page name="Home" specification-path="/resources/Home.page"/> I'd like to do that for all the pages and html templates (not for each file)), something like: <pages name="*" specification-path="/pages" /> <templates name="*.html" specification-path="/html" /> Is something (anything) like this possible? We're merely trying to help organize our WEB-INF directory as this is an enormous enterprise app and maintaining this is going to become unwieldy. Thanks! Jason