[Repoze-dev] Some questions on Deform

2010-12-02 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi there, I am currently evaluating Deform + Colander for an upcoming project. Open questions: Is there some support (in the renderer) for grouping fields? E.g. we have a "Person" form with fields for business and privat address. The related fields

Re: [Repoze-dev] Some questions on Deform

2010-12-02 Thread Chris McDonough
On Thu, 2010-12-02 at 13:29 +0100, Andreas Jung wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Hi there, > > I am currently evaluating Deform + Colander for an upcoming project. > > Open questions: > > Is there some support (in the renderer) for grouping fields? E.g. we > have a "

[Repoze-dev] [issue171] repoze.retry fails if environ["CONTENT_LENGTH"] == ''

2010-12-02 Thread Petri Savolainen
New submission from Petri Savolainen : On lines 54 & 55 of repoze/retry/__init__.py: cl = environ.get("CONTENT_LENGTH",'0') cl = int(cl) the code fails if content length is an empty string. One way to fix: try: cl = int(environ['CONTENT_LENGTH']) except: cl = 0 -- messages: 464