On 1/19/07, Ben Bangert <[EMAIL PROTECTED]> wrote:
> There is no reason to try and learn everything at once. There's
> pretty much no reason to even consider Paste from the beginning
> besides for the few 'paster' commands you need to start the
> development server, make a new project, and add a controller:
> paster create --template=pylons PROJ
> paster controller NEWCONTROLLER
> paster serve development.ini
>
> That's all from Paste you need to know until you want to write WSGI
> middleware or start getting deeper into WSGI aspects. Routes comes
> pre-configured to map URL's into controllers and actions based off:
> /CONTROLLER/ACTION/ID     (action and id are optional, id defaults to
> None, action defaults to index)
>
> That's all of Routes you need to know until you want to customize URL
> matching. (There's rather extensive documents for Routes on setting
> up URL's and such that you can then read later)
>
> I would personally suggest Mako (Myghty's successor and much cleaner)
> if you want non-XML based templates, and Genshi if you want XML-ish
> templates. Again, use as little as possible to get started, and read
> the appropriate docs for the template language as you need more
> features.

This would make good documentation itself.  "The Absolute Minimum You
Must Know about Pylons' Components".

-- 
Mike Orr <[EMAIL PROTECTED]>

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to