Re: [web2py] please help us test web2py

2012-07-06 Thread Bruno Rocha
today I will test all my apps then I report here. http://zerp.ly/rochacbruno Em 06/07/2012 01:52, Massimo Di Pierro massimo.dipie...@gmail.com escreveu: There are many changes in DAL. If you use MySQL or MSSQL or PostgreSQL please help us check the new trunk did not break anything. We have

Re: [web2py] please help us test web2py

2012-07-06 Thread vinicius...@gmail.com
Could you, please, tell us what should be tested? What has changed? By the way, what is salt password? I searched dictionary, but didn't find a good translation. Sorry my poor English. -- Vinicius Assef On 07/06/2012 01:52 AM, Massimo Di Pierro wrote: There are many changes in DAL. If you

Re: [web2py] please help us test web2py

2012-07-06 Thread Alec Taylor
By the way, what is salt password? I searched dictionary, but didn't find a good translation. Sorry my poor English. http://en.wikipedia.org/wiki/Salt_%28cryptography%29 Basically means adding some padding to increase the strength of the encryption without having the user create a longer

Re: [web2py] please help us test web2py

2012-07-06 Thread Richard Vézina
I try and report back! Richard On Fri, Jul 6, 2012 at 8:59 AM, Alec Taylor alec.tayl...@gmail.com wrote: By the way, what is salt password? I searched dictionary, but didn't find a good translation. Sorry my poor English. http://en.wikipedia.org/wiki/Salt_%28cryptography%29 Basically

Re: [web2py] please help us test web2py

2012-07-06 Thread Richard Vézina
Hello, This line in my app failed with type 'exceptions.KeyError' '*table_name*' dblabels_en = cache.ram('dblabels_en', lambda: dict([(r.*table_name* + r.column_name, r.column_name_en_ui)\ for r in db().select(db.dict_database.ALL)]), time_expire=3600) Is the way row

Re: [web2py] please help us test web2py

2012-07-06 Thread Richard Vézina
What I have to do to make it works : for r in db().select(db.dict_database.ALL): print r['dict_database.table_name'] I have to use the table name and the field name as key to get row field data, the worst is that it needs double quoting the table name and field name and quote both... It

Re: [web2py] please help us test web2py

2012-07-06 Thread Alec Taylor
On Fri, Jul 6, 2012 at 2:52 PM, Massimo Di Pierro massimo.dipie...@gmail.com wrote: There are many changes in DAL. If you use MySQL or MSSQL or PostgreSQL please help us check the new trunk did not break anything. We have salted password auth = Auth(...,salt=True). Check it out. We also have

Re: [web2py] please help us test web2py

2012-07-06 Thread Massimo Di Pierro
I have reverted one of the changes and this should now work. What I need to know is make sure we did not break backward compatibility. On Friday, 6 July 2012 09:23:15 UTC-5, Richard wrote: What I have to do to make it works : for r in db().select(db.dict_database.ALL): print

[web2py] please help us test web2py

2012-07-05 Thread Massimo Di Pierro
There are many changes in DAL. If you use MySQL or MSSQL or PostgreSQL please help us check the new trunk did not break anything. We have salted password auth = Auth(...,salt=True). Check it out. We also have ability to deploy to openstack from admin. Thanks to all those who have and still