This is probably just me being in unfamiliar territory, but I'm trying to find some small piece of docs or code that shows just how to wire up routing of paths to different handlers in Narwhal.I've got the blog example up and running and understand parts of it. My goal is to make a very simple app engine example that does not use server-side templating.So what I wonder is basically where I define that '/foo?bar=baz' et.c. will be handled by xyzzy.jsCheers,
PS
--
--------------------------------------------------------
http://se.linkedin.com/in/petersvensson
--
You received this message because you are subscribed to the Google Groups "Narwhal and Jack" group.
To post to this group, send email to narw...@googlegroups.com.
To unsubscribe from this group, send email to narwhaljs+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/narwhaljs?hl=en.
You received this message because you are subscribed to the Google Groups "nitro-devel" group.
To post to this group, send email to nitro...@googlegroups.com.
To unsubscribe from this group, send email to nitro-devel...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/nitro-devel?hl=en.
Thanks George! That was just what I was looking for. Also it explains why I couldn't find any paths defined anywhere :)
Yeah, thats the concept behind the Dispatch middleware, the mappings are implicit in the filesystem.(Though I have introduced the sitemap concept for additional functionality)
-g.