[web2py] Re: web2py broken with Python 3.8

2020-03-06 Thread 'jim kaubisch' via web2py-users
What was the result of 3.8 for you when you tried it? On Wednesday, January 15, 2020 at 9:36:55 AM UTC-8, Woody wrote: > > Good news! I'll give it a try. > > On Friday, December 6, 2019 at 10:56:48 AM UTC-5, Woody wrote: >> >> web2py is broken with Python 3.8. I asked a question about this a few

Re: [web2py] Re: Why would new code be ignored and old code be executed?

2020-03-06 Thread Val K
oh yeah, it is definitely due to you press compile in appadmin, it is intended for production. Dont compile app while you develop. I use modules without any issues with tracking as i mentoined above -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/w

Re: [web2py] Re: SQLFORM grid process not working

2020-03-06 Thread Andrew Rogers
> > Many thanks to you guys for answering so many user questions. I am finding >> it really helpful. >> > Cheers Andrew -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Rep

Re: [web2py] Re: Why would new code be ignored and old code be executed?

2020-03-06 Thread AGRogers
>>> Code in the modules folder are compiled automatically when the python file is first invoked. So, after you change any file in modules, you should remove the correspondent .pyc file. Ah, i see, Thanks for the tip. On Fri, 6 Mar 2020 at 19:48, Carlos Correia wrote: > Às 09:38 de 06/03/20, An

Re: [web2py] Re: Why would new code be ignored and old code be executed?

2020-03-06 Thread Carlos Correia
Às 09:38 de 06/03/20, Andrew Rogers escreveu: Thanks for your advice Val. I will try your suggestion... and google search a little to see what it does I dont think i had two servers running but i will look out for that in the future. It seems that the Module i added was the main problem. I mo

[web2py] Re: Why would new code be ignored and old code be executed?

2020-03-06 Thread Andrew Rogers
Thanks for your advice Val. I will try your suggestion... and google search a little to see what it does I dont think i had two servers running but i will look out for that in the future. It seems that the Module i added was the main problem. I moved all the code into the Controller and didnt

[web2py] Py4web readonly Form

2020-03-06 Thread John Bannister
Hi All, I have been testing Py4web and have the following to produce basically a 'view record' option :- def view_test(): form=Form(db.auth_user, record=1, readonly=True, deletable=False, formstyle=FormStyleBulma) if form.accepted: redirect(URL('index')) return dict(form=for