Re: [web2py] Re: web3py status

2016-10-31 Thread Marcelo Huerta
El jueves, 18 de agosto de 2016, 16:44:05 (UTC-3), Massimo Di Pierro escribió: > > It is possible. web3py is code name for experimental stuff. Mostly new > form/grid logic that will be backported to web2py. > > I read somewhere that you are thinking of ditching SQLFORM (and, I assume, the

[web2py] Re: IDE for using web2py on windows

2016-10-31 Thread Nikos Panagogiannopoulos
I am a Linux user also. So Wing IDE and PyCharm do clearly support web2py. Atom.io IDE sure needs some configuration.. and PyCharm Community version is restricted on Web Development only in Javascript sections as you said, hope after the evaluaton period i won't have subjects. Τη Δευτέρα, 31

[web2py] web2py for windows server. IIS or Nginx?

2016-10-31 Thread Omi Chiba
I'm running production site with Apache but it sounds like we don't support apache anymore... which is one is better/easy option for me? I tried IIS long time ago but didn't success... maybe it was too complicated for me. -- Resources: - http://web2py.com - http://web2py.com/book

[web2py] Re: No module named appname.modules.funtions

2016-10-31 Thread Val K
Be beware: I had the same bug (No module named appname.modules.func) on windows binary web2py, but with weird behaviour: if server is local - everything OK if server is public, but request is local - everything OK if server is public and request isn't local - causes an error the reason is

Re: [web2py] Re: Login - message "invalid email" - on mobil

2016-10-31 Thread Richard Vézina
Don't Beat Massimo, we need him... :D Richard On Sat, Oct 29, 2016 at 10:34 PM, Massimo Di Pierro < massimo.dipie...@gmail.com> wrote: > thanks for reporting back! > > > On Tuesday, 25 October 2016 07:29:59 UTC-5, Beat Kohler wrote: >> >> Hi Massimo >> sorry for the late response. I found the

[web2py] Is it possible to run doctests for scheduler tasks?

2016-10-31 Thread Bernardo Leon
Hi, I have seen in the book that running web2py with the -T flag I can run doctests for my controllers but I want to run doctests for my scheduler tasks. Is it possible? How? Thank you! -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) -

[web2py] Re: IDE for using web2py on windows

2016-10-31 Thread Mirek Zvolský
Maybe the answer is about the Javascript support. Just for Python the Community version works great. (But I am Linux user.) On Sunday, 30 October 2016 03:31:59 UTC+1, Nikos Panagogiannopoulos wrote: > > > Will the community version of PyCharm be capable to full service me or i > do have to

[web2py] Dynamic custom form

2016-10-31 Thread Nicola Clementel
Hi, I am trying to create a dynamic custom form (see below), but I have several problems: 1) the form doesn't update if the value in n_sets is changed: the request.vars.n_set is only called once and it refers to the previous form submission 2) submit doesn't save to the database: I think that

[web2py] Re: how to keep mysql connection alive during scheduler task running

2016-10-31 Thread Niphlod
there's nothing web2py can do if the database drops the connection without signalling it. If your diagnosis is correct, however, you can circumvent the issue using sync_output < 4 min, just to keep the connection alive. On Sunday, October 30, 2016 at 3:32:02 AM UTC+1, Saint Havy wrote: > > Hi,

[web2py] Re: DEADLOCKs between two or more scheduler worker

2016-10-31 Thread Niphlod
sorry, but it doesn't really make sense. You're executing twice the same command (the call enclosed in len() and the actual .delete() call), which is the counter-arg for relaxing a pressured database environment. On Monday, October 31, 2016 at 2:04:24 PM UTC+1, Erwn Ltmann wrote: > > Hi, > >

[web2py] Re: DEADLOCKs between two or more scheduler worker

2016-10-31 Thread Erwn Ltmann
Hi, thank you for your reply. @Pierre: MariaDB (in my case) handled deadlocks automaticly too. Good to known, I don't have to be worry about that. @Niphlod: I tried to beef up my database host. No effects. Another suggestion is to prevent the cases for such situation. I did it by an another

[web2py] Re: Custom formstyle for auth

2016-10-31 Thread tim . nyborg
You'll also want to set auth.settings.formstyle I've built a form style, placed it in a model (style.py), and then set response.formstyle and auth.settings.formstyle On Tuesday, 25 October 2016 15:52:12 UTC+1, Marko Seppälä wrote: > > Hi, > > I'm trying to set custom form styles for auth, like