Re: Composite application configuration

2011-09-07 Thread Wyatt Baldwin
On Tuesday, September 6, 2011 10:27:56 AM UTC-7, Jason wrote: [...] This is what I am now doing, but slightly different. In the main(global_config, **settings): settings.update(global_config) and then if I want to override something that is in [DEFAULT] I use: [DEFAULT] x = 1

Re: Composite application configuration

2011-09-07 Thread Jason
On Wednesday, September 7, 2011 11:33:47 AM UTC-4, Wyatt wrote: I noted this in one of my earlier posts (re: set). Also, the way you're updating the settings dict with global_conf will overwrite your app config, won't it? I'm pretty sure the DEFAULT config will end up in the settings

Re: Composite application configuration

2011-09-07 Thread Michael Merickel
Apologies for not following most of the conversation, but just thought I'd mention that in the past I've done: def main(global_conf, **app_settings): settings = global_conf.copy() settings.update(app_settings) Which allows you to override settings in your app if you want while still

New pyramid_simpleform clone

2011-09-07 Thread Bruce Wade
Hi, For anyone interested we have created our own clone of pyramid_simpleform that we are actively developing, just because questions have not been answered on the danjac branch. https://gitorious.org/bossteam/pyramid_simpleform anyone can help out with the project. Our version has already fixed

Re: New pyramid_simpleform clone

2011-09-07 Thread Chris McDonough
On Wed, 2011-09-07 at 10:10 -0700, Bruce Wade wrote: Hi, For anyone interested we have created our own clone of pyramid_simpleform that we are actively developing, just because questions have not been answered on the danjac branch. https://gitorious.org/bossteam/pyramid_simpleform

Re: New pyramid_simpleform clone

2011-09-07 Thread Bruce Wade
I will do that thanks. On Wed, Sep 7, 2011 at 11:07 AM, Chris McDonough chr...@plope.com wrote: On Wed, 2011-09-07 at 10:10 -0700, Bruce Wade wrote: Hi, For anyone interested we have created our own clone of pyramid_simpleform that we are actively developing, just because questions

uhh web2pyramid?

2011-09-07 Thread Siddhartha Kasivajhula
Has the pylons site been hacked? http://docs.pylonshq.com/ -- You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to pylons-discuss@googlegroups.com. To unsubscribe from this group, send email to

Re: New pyramid_simpleform clone

2011-09-07 Thread Chris McDonough
On Wed, 2011-09-07 at 11:17 -0700, Bruce Wade wrote: I will do that thanks. Oh geez, wrong package, sorry! - C On Wed, Sep 7, 2011 at 11:07 AM, Chris McDonough chr...@plope.com wrote: On Wed, 2011-09-07 at 10:10 -0700, Bruce Wade wrote: Hi,

Re: uhh web2pyramid?

2011-09-07 Thread Joe Dallago
Nah it was an April Fools' Day joke. On Wed, Sep 7, 2011 at 12:54 PM, Siddhartha Kasivajhula countvajh...@gmail.com wrote: Has the pylons site been hacked? http://docs.pylonshq.com/ -- You received this message because you are subscribed to the Google Groups pylons-discuss group. To post

Re: New pyramid_simpleform clone

2011-09-07 Thread Bruce Wade
lol nice On Wed, Sep 7, 2011 at 11:22 AM, Chris McDonough chr...@plope.com wrote: On Wed, 2011-09-07 at 11:17 -0700, Bruce Wade wrote: I will do that thanks. Oh geez, wrong package, sorry! - C On Wed, Sep 7, 2011 at 11:07 AM, Chris McDonough chr...@plope.com wrote: On

Re: New pyramid_simpleform clone

2011-09-07 Thread Bruce Wade
I am sure we will get to the pyramid_mailer once we get the simpleform all polished for what we need. On Wed, Sep 7, 2011 at 11:34 AM, Bruce Wade bruce.w...@gmail.com wrote: lol nice On Wed, Sep 7, 2011 at 11:22 AM, Chris McDonough chr...@plope.com wrote: On Wed, 2011-09-07 at 11:17 -0700,

Re: uhh web2pyramid?

2011-09-07 Thread Rob Miller
Yup, and docs.pylonshq.com was misconfigured to still be pointing at the joke page. Now fixed. -r On 9/7/11 11:30 AM, Joe Dallago wrote: Nah it was an April Fools' Day joke. On Wed, Sep 7, 2011 at 12:54 PM, Siddhartha Kasivajhula countvajh...@gmail.com mailto:countvajh...@gmail.com wrote:

Re: uhh web2pyramid?

2011-09-07 Thread Siddhartha Kasivajhula
Ah okay :) On Wed, Sep 7, 2011 at 12:26 PM, Rob Miller r...@kalistra.com wrote: Yup, and docs.pylonshq.com was misconfigured to still be pointing at the joke page.  Now fixed. -r On 9/7/11 11:30 AM, Joe Dallago wrote: Nah it was an April Fools' Day joke. On Wed, Sep 7, 2011 at 12:54

Deform Schema w/Known Sequence Number

2011-09-07 Thread Evan Tangman
I am trying to implement a Deform schema wherein there is a sequence of inputs of the same type, but there will be a different number for each schema. Better shown with example perhaps: class SampleSchema(MappingSchema): input1 = SchemaNode(String()) input2 = SchemaNode(String()) class

Re: Deform Schema w/Known Sequence Number

2011-09-07 Thread Chris McDonough
On Wed, 2011-09-07 at 14:10 -0700, Evan Tangman wrote: I am trying to implement a Deform schema wherein there is a sequence of inputs of the same type, but there will be a different number for each schema. Better shown with example perhaps: class SampleSchema(MappingSchema): input1 =

Re: Composite application configuration

2011-09-07 Thread Wyatt Baldwin
On Wednesday, September 7, 2011 9:21:23 AM UTC-7, Jason wrote: On Wednesday, September 7, 2011 11:33:47 AM UTC-4, Wyatt wrote: I noted this in one of my earlier posts (re: set). Also, the way you're updating the settings dict with global_conf will overwrite your app config, won't it? I'm

Re: Composite application configuration

2011-09-07 Thread Wyatt Baldwin
On Wednesday, September 7, 2011 9:52:27 AM UTC-7, Michael Merickel wrote: Apologies for not following most of the conversation, but just thought I'd mention that in the past I've done: def main(global_conf, **app_settings): settings = global_conf.copy()

Re: uhh web2pyramid?

2011-09-07 Thread yang xiaoyong
Aha, the site docs.pylonshq.com has been blocked by the China Great Firewall :( On Thu, Sep 8, 2011 at 4:02 AM, Siddhartha Kasivajhula countvajh...@gmail.com wrote: Ah okay :) On Wed, Sep 7, 2011 at 12:26 PM, Rob Miller r...@kalistra.com wrote: Yup, and docs.pylonshq.com was