On Wed, 2011-03-02 at 17:07 -0800, pspringmeyer wrote: > I've been able to figure out most everything about Pyramid, but there > is one thing that I'm not able to "grok" and that is "resources". I'm > not really understanding the connection between resources, contexts, > and views. I'm also confused as to why I would want to use > zope.interfaces with a resource...
Likely just dont think about it. Use url dispatch instead. Then you don't need to know anything about contexts, resources, interfaces, none of it. > > Another question: is it more idiomatic for a large web application to > imperatively declare views or to use the scan() method + config > decorators? > .scan() is more convenient so it's used more frequently. - C -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en.
