Re: Looking for python/pyramid developers for a project

2011-08-19 Thread Dirk Makowski
Hmm, I do. Even with Chrome. And the address is blue, but clicking has no effect... hmmm -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To view this discussion on the web visit https://groups.google.com/d/msg/pylons-discuss/-/bo3ZwGVkEHMJ.

Re: Looking for python/pyramid developers for a project

2011-08-19 Thread cd34
On Aug 19, 3:08 pm, Dirk Makowski wrote: > I am Dirk, and am interested in your offer. Unfortunately your email address > is not fully disclosed (mzu...@gmail.com). If you view the post on google groups: http://groups.google.com/group/pylons-discuss/browse_thread/thread/92475f27a1f75df2 you can c

Re: Problem using deform

2011-08-19 Thread Ethan Jucovy
Thanks Chris! I was just struggling with this same issue -- in the past five minutes in fact. This workaround is perfect for me, and perfectly timed. I'll just add one additional hitch that I found regarding multipart forms while trying to solve this on my own: Django actually seems to set reque

Re: Problem using deform

2011-08-19 Thread Chris Pyper
Thanks for the input buddy! I found a work around. For anyone else with the same issue here it is: Deform for sequences use special hidden ordered fields for delimiting where groupings begin and end. If you look at the raw POST data you can see them everywhere named “__start__” and “__end__”.

Re: Problem using deform

2011-08-19 Thread Chris McDonough
On Fri, 2011-08-19 at 12:59 -0700, Chris Pyper wrote: > Wow, nice call! Yes, I am using Django. First, I am a little unclear > as to what document ordering of controls is. See http://plope.com/peppercorn/view for a discussion of what this means. > Secondly, the > documentation mentions that de

Re: Problem using deform

2011-08-19 Thread Chris Pyper
Wow, nice call! Yes, I am using Django. First, I am a little unclear as to what document ordering of controls is. Secondly, the documentation mentions that deform is compatible with any framework. Is there something I can write to re-order the controls? -- You received this message because you

Re: Problem using deform

2011-08-19 Thread Chris McDonough
On Fri, 2011-08-19 at 14:38 -0400, Christopher Pyper wrote: > I am using deform and I am having some trouble extracting information from a > validate() form operation. I get an empty structure returned. I have > created the below example from the online examples to illustrate my issue: > > imp

Problem using deform

2011-08-19 Thread Chris Pyper
I am using deform and I am having some trouble extracting information from a validate() form operation on sequence type forms. I get an empty structure returned. I have created the below example from the online examples to illustrate my issue: import deform import colander choices = ( (

Problem using deform

2011-08-19 Thread Christopher Pyper
I am using deform and I am having some trouble extracting information from a validate() form operation. I get an empty structure returned. I have created the below example from the online examples to illustrate my issue: import deform import colander choices = ( ('habanero', 'habanero

Re: Looking for python/pyramid developers for a project

2011-08-19 Thread Dirk Makowski
Hello Mathew, I am Dirk, and am interested in your offer. Unfortunately your email address is not fully disclosed (mzu...@gmail.com). Samples of my work you'll find here: http://3amcode.de:6543/Cms/pharaoh/03-parenchym/00010-user-manager and my cv and contact address is here: http://parenchym.c

How to solve connection problems

2011-08-19 Thread Akash A
You have come to this web page because something in IBP does not work as expected. Many problems in IBP are caused by Internet security ... *

Looking for python/pyramid developers for a project

2011-08-19 Thread Mathew
Hello, We are looking to hire python/pyramid developers immediately for building an administrative web application for our internal systems. Some of the features include Login/User management reading and writing data to our mysql database and charting (via jqplot) of data. The rate is between 35-4

Re: The MetaData is not bound to an Engine or Connection.

2011-08-19 Thread Michael Merickel
First of all this belongs in the SQLAlchemy mailing list. I'm guessing that you have not setup your Session object with the engine yet, so "bind=Session.bind" is just binding to None. Wherever you are initializing your engine you'll want to be doing engine = engine_from_config(...) Session.confi

Re: ipython isn't invoked for "paster shell"

2011-08-19 Thread Michael Merickel
Pyramid's 'pshell' also supports both versions of IPython here: https://github.com/Pylons/pyramid/blob/eaf6cb2372bb274e83b7322b4dc80744de07cb8b/pyramid/paster.py#L185 On Fri, Aug 19, 2011 at 2:04 AM, Andrey Popp <8may...@gmail.com> wrote: > On Wed, Aug 17, 2011 at 10:02 PM, Iuri Diniz wrote: >

Re: Chameleon's behavior on attribute insert with boolean values

2011-08-19 Thread Malthe Borch
On 19 August 2011 13:58, Chris McDonough wrote: > I think probably that the Zopelike behavior should be limited to > integration with Zope. I think you're right. There's now an option ``literal_false`` which does this. As a detail which I don't think will affect the vast majority of users, a va

Re: Chameleon's behavior on attribute insert with boolean values

2011-08-19 Thread Chris McDonough
On Fri, 2011-08-19 at 11:20 +0200, Malthe Borch wrote: > That said, in the Zope world, people do rely on boolean values being > coerced to string values, whether bad practice or not (I think they > should explicitly coerce to integer and return 0 or 1 because it's a > cleaner input than "False" or

The MetaData is not bound to an Engine or Connection.

2011-08-19 Thread rakesh agarwal
How to resolve the following error: File "/home/rakesh/pylon/SimpleSite/simplesite/websetup.py", line 23, in setup_app Base.metadata.create_all(bind=Session.bind) File "/usr/lib/python2.6/dist-packages/sqlalchemy/schema.py", line 2012, in create_all bind = _bind_or_error(self) File "/u

Chameleon's behavior on attribute insert with boolean values

2011-08-19 Thread Malthe Borch
I had a chat with Danny Bloemendaal about some differences in how Zope and Chameleon understands attribute result values (in the ``tal:attributes`` statement), specifically boolean values. In a recent change, Chameleon now does support Zope's behavior on a set of special case attributes: BOOLEA

Re: ipython isn't invoked for "paster shell"

2011-08-19 Thread Andrey Popp
On Wed, Aug 17, 2011 at 10:02 PM, Iuri Diniz wrote: > I have the same problem > After upgrade to ipython 0.11, paster shell doesn't invoke ipython > > I downgrade it to ipython 0.10 by > $ pip install 'ipython==0.10' Someone should provide patch similar to this one[1]. [1]: https://github.com/m