On Sat, 2010-03-27 at 10:22 +0200, Anton Khodakivskiy wrote: > Hi > > What is the purpose of web.config object? Is it web.py personal configuration > storage, or is it ok, to store application specific settings in it as well? > (ex: app title, database engine instance, template instance, etc...)
Sure, yes, that's what it's usually used for. It's a web.storage object, so you want to check out that to see what else you can do with web.config. Also note that it's accessible in all threads, vs. web.ctx which is threaded. Regards -- Branko Vukelic Check out my blog: http://foxbunny.tumblr.com/ and the portfolio: http://www.flickr.com/photos/16889...@n04/ -- You received this message because you are subscribed to the Google Groups "web.py" 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/webpy?hl=en.
