Re: [pylons-discuss] tutorial or open source projects that uses Pylons?

2014-04-02 Thread accesswifi
Thank you, Paul! I am running the wiki tutorial, based on this URL: http://docs.pylonsproject.org/projects/pyramid/en/latest/tutorials/wiki2/index.html. That seems to be based on 1.4.5, not as new as your link. I'd love to read your refreshed one. I am experimenting creating a users table in

Re: [pylons-discuss] tutorial or open source projects that uses Pylons?

2014-04-02 Thread Christian Ledermann
You may also want to have a look at kotti http://kotti.pylonsproject.org/ It uses Chameleon templates, sqlalchemy, traversal and has a very good implementation of authorization complete with local roles On Wed, Apr 2, 2014 at 6:00 AM, accessw...@gmail.com wrote: Thank you, Paul! I am running

Re: [pylons-discuss] Re: [SqlAlchemy] how to return a primary key in scoped session?

2014-04-02 Thread Jonathan Vanasco
What do you mean by Auto Commit ? 1) SqlAlchemy has an auto-commit mode. That means you do not wrap statements in transactions, and data is directly written to the tables. You would still need to call a flush() for SqlAlchemy to talk to the database though. SqlAlchemy will not talk to the