[web2py] Re: ajax login, wrong password redirects to wrong page

2014-09-01 Thread Maciej S
I've created new issue: https://code.google.com/p/web2py/issues/detail?id=1975start=100 W dniu sobota, 30 sierpnia 2014 01:32:45 UTC+2 użytkownik Massimo Di Pierro napisał: Please open a ticket. Which python version? On Thursday, 28 August 2014 08:19:42 UTC-5, Maciej S wrote: Some time

[web2py] Re: ajax login, wrong password redirects to wrong page

2014-09-01 Thread Maciej S
I have Python 2.7.5 W dniu sobota, 30 sierpnia 2014 01:32:45 UTC+2 użytkownik Massimo Di Pierro napisał: Please open a ticket. Which python version? On Thursday, 28 August 2014 08:19:42 UTC-5, Maciej S wrote: Some time ago I posted question on stackoverflow, and I still don't have

[web2py] ajax login, wrong password redirects to wrong page

2014-08-29 Thread Maciej S
Some time ago I posted question on stackoverflow, and I still don't have a solution. I haven't found solution on the google mail list. Could someone help me: http://stackoverflow.com/questions/21433391/web2py-ajax-login-wrong-password-redirects-to-wrong-page -- Resources: - http://web2py.com -

[web2py] websocket ssl

2014-08-20 Thread Maciej S
Is it possible to run websocket server (web2py/gluon/contrib/websocket_messaging.py) with ssl support, how to do it? Thank you for reply. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) -

[web2py] Re: response.toolbar() does not show statistics for some tables

2014-03-25 Thread Maciej S
it. On Monday, 24 March 2014 08:11:56 UTC-5, Maciej S wrote: Hello I try to use response.toolbar() to measure database queries. I've added it to the site, now it shows statistics only for tables created by web2py auth and tables connected to them, for example: SET standard_conforming_strings

[web2py] response.toolbar() does not show statistics for some tables

2014-03-24 Thread Maciej S
'), Field('service_access', 'boolean', notnull=True)) There is db.executesql query for that table and statistics are not shown. Do you known what is the reason for that? Maciej S -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source

[web2py] Re: Customizing SQLFORM.grid create, edit and update forms

2014-02-28 Thread Maciej S
Hi! I've created SQLFORM.grid like whowhywhat did. New elements have been added to the form, but there is one drawback, if I submit, all data from new fields is lost. What should I do to keep it during callbacks? Here is my code: def users(): grid = SQLFORM.grid(db.auth_user)