[web2py] web2py 1.91.5 is OUT

2010-12-28 Thread mdipierro
Mostly bug fixes about new dal (joins, with_alias, ordering on joins in postgresql, db().select(db.table.ALL) on GAE, behavior of boolean writable=False, upload of new apps with missing file) and some internal improvements (mostly due to Jonathan, so he can explain). Massimo

Re: [web2py] web2py 1.91.5 is OUT

2010-12-28 Thread Jonathan Lundell
On Dec 28, 2010, at 2:09 PM, mdipierro wrote: Mostly bug fixes about new dal (joins, with_alias, ordering on joins in postgresql, db().select(db.table.ALL) on GAE, behavior of boolean writable=False, upload of new apps with missing file) and some internal improvements (mostly due to

Re: [web2py] web2py 1.91.5 is OUT

2010-12-28 Thread Robert
Nice! Deploying and testing it right away! :)

Re: [web2py] web2py 1.91.5 is OUT

2010-12-28 Thread Michele Comitini
I thought it was intentional to keep urlencode compat. I used to solve it like this: vars = (('a',1), ('b',2), ('b',3)) There was a fix a little while back, I think, to handle this for incoming URLs. Sometimes a key appears more than once in a URL query string, like this:        

Re: [web2py] web2py 1.91.5 is OUT

2010-12-28 Thread Jonathan Lundell
On Dec 28, 2010, at 3:43 PM, Michele Comitini wrote: I thought it was intentional to keep urlencode compat. I used to solve it like this: vars = (('a',1), ('b',2), ('b',3)) request.vars is a dict already, so it was more straightforward to go the other way. Also, I think that's the way