dynamic form application

2014-05-10 Thread edd . cowan
hello guys. i tryng to create a form builder application with a database backend. like wufoo.com im stuck,how do i use jquery to create dynamic forms,and how is the database designed for the actual forms and the data gathered using those forms i'd like to use rdbms preferebly postgres. regards

Re: Appending traceback from exception in child thread

2009-05-16 Thread Edd
alive for an undeterminate period of time... Yes, that may be problematic, I'll have to experiment. Thanks to everyone's help here, I have plenty of alternatives if it turns out to be problematic. Your comments are all greatly appreciated -- thanks! Kind regards, Edd -- http://mail.python.org/mailman/listinfo/python-list

Appending traceback from exception in child thread

2009-05-15 Thread Edd
uing the tracebacks together at the point where the exception is re-raised? Kind regards, Edd -- http://mail.python.org/mailman/listinfo/python-list

Re: An object that creates (nested) attributes automatically on assignment

2009-04-11 Thread Edd
t = self.__class__() > ...             setattr(self, name, inst) > ...             return inst Ha! Perfect! I knew it should be simpler. Thanks very much! Kind regards, Edd -- http://mail.python.org/mailman/listinfo/python-list

Re: An object that creates (nested) attributes automatically on assignment

2009-04-11 Thread Edd
Hi Steven, Thank you for your response! On Apr 11, 4:22 am, Steven D'Aprano wrote: > On Fri, 10 Apr 2009 19:04:38 -0700, Edd wrote: > > Hi folks, > > > I'd like to use Python itself as the configuration language for my > > Python application. I'd like the

[rfc] An object that creates (nested) attributes automatically on assignment

2009-04-10 Thread Edd
to these other scripts. Beyond the general fiddliness of the code, I think the way seal() currently works is particularly pants. I considered using a simpler approach: def mkdd(): return defaultdict(mkdd) cfg = mkdd() execfile(filename, {'cfg': cfg}, {}) But I quite like the way the '.' separators quite naturally (IMO) indicate a hierarchy of settings. Comments and suggestions welcome! Kind regards, Edd -- http://mail.python.org/mailman/listinfo/python-list

Re: Odd behavior regarding a list

2009-03-26 Thread Edd Barrett
Hi there, First of all, thanks to everyone for replying. This has been a great help. On Mar 26, 4:21 pm, Steven D'Aprano wrote: > On Thu, 26 Mar 2009 08:36:49 -0700, Edd Barrett wrote: > > My question is: why has 'parent_struct_sig' changed? I was under the >

Odd behavior regarding a list

2009-03-26 Thread Edd Barrett
Hi there, My first post here, so hello :) Just a little background, I am writing my dissertation, which is a JIT compiler based upon LLVM and it's python bindings, along with the aperiot LL(1) parser. I have some code here, which is not behaving as I would expect. Could someone enlighten me as t