I think part of the issue here is general web site building knowledge. Knowing which way to go for your web application really depends a lot on you needs. There is no "one way" to build an application, in any language, even PHP leaves you a million different ways to build it.
In Pylons, one of the ideas was to try and keep things unified through basic Python principles. The template language add's a few concepts, but keeps all of its general logic for the most part as plain Python, which seemed a good match for the framework setup. Pylons, as TurboGears, follows a fairly basic MVC architecture, assuming you want to use it. It's also possible, and rather easy to build a site that uses the templating, but largely ignores controllers if you're looking for a more "static" website with some forms and a few dynamic sections. Extension points aren't really needed as everything is dynamic enough that you can extend wherever you choose, though I'm not sure what you'd want to extend unless you were making a tool thats for use alongside Pylons. If you could give me an example of what you're aiming to build, I'd be happy to give you some pointers on what you need to know, and what you can ignore for now so that you can be developing as quickly as possible. HTH, Ben --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
