[web2py] Re: File upload/download over https freezes site

2015-08-08 Thread Massimo Di Pierro
We strongly recommend nginx for most users. Rocket (built-in), Tornado, and Unicorn all work great too but they do not have as many customizations as nginx. On Sunday, 9 August 2015 01:34:46 UTC-5, Rafal Dobosz wrote: > > What are some servers you do recommend? > > On Tuesday, 4 August 2015 11:1

[web2py] Re: File upload/download over https freezes site

2015-08-08 Thread Rafal Dobosz
What are some servers you do recommend? On Tuesday, 4 August 2015 11:17:37 UTC-4, Massimo Di Pierro wrote: > > Yes. It should. I agree. We should leave the sections on Apache but > comment they we do not recommend apache. > > On Monday, 3 August 2015 10:23:58 UTC-5, Niphlod wrote: >> >> IMHO give

[web2py] Re: Multiples ajax forms (with LOAD). It is possible?

2015-08-08 Thread Val K
Hi! I have the same problem (twice submission). Here is my little test: #paste in default.py #!!! for pure test clean cookies before run!!! def print_form_keys(): ret=DIV(_class="container") for i in xrange(5): frm_k= '_formkey[%s]' % ('frm_id%s/create'%i) #- see html.FORM

[web2py] Re: 2.12.1 is out

2015-08-08 Thread Massimo Di Pierro
yes. It has been since 2.11.1 On Friday, 7 August 2015 19:24:17 UTC-5, JorgeH wrote: > > thanks for the great job massimo and team!! > > Is bootstrap 3 + as default? > > On Friday, August 7, 2015 at 11:59:13 AM UTC-5, Massimo Di Pierro wrote: >> >> Changelog: >> >> - security fix: Validate for ope

[web2py] Re: Modifying web2py JS files -- best practices?

2015-08-08 Thread Jack Kuan
Replying to my post, adding a step 7) git pull -s subtree -X subtree=applications/welcome web2py master It seems this step is necessary before any new commit after step 6 to let git know where we are in terms of merge to avoid conflicts later. On Thursday, August 6, 2015 at 11:10:54 PM UTC-4, J

Re: [web2py] Re:

2015-08-08 Thread ESRA GÜÇLÜ
i used the session in the solutions, thank you so much! :) 2015-08-08 19:03 GMT+03:00 Anthony : > Well, the simplest solution is to change the form method to GET: > > > > That will put the "table" variable in the URL query string, where it will > persist. However, with this method, the search f

Re: [web2py] Re:

2015-08-08 Thread Anthony
Well, the simplest solution is to change the form method to GET: That will put the "table" variable in the URL query string, where it will persist. However, with this method, the search feature won't work because it uses the query string and doesn't preserve the existing query string. If you

Re: [web2py] Re:

2015-08-08 Thread ESRA GÜÇLÜ
i have a different page which has named show and here its code: İşlem yapacağınız tabloyu seçiniz. Bilgisayar Kasa Yazıcı Tarayıcı Klavye Fare Kablo Kartuş i get the choice with request.vars.table from

Re: [web2py] Re:

2015-08-08 Thread Anthony
Two additional (probably preferable) options: 1. Store the table selection in the session so you don't have to keep it in the URL. 2. Set the table name as a URL arg, and use the grid's "args" argument to tell the grid to ignore that arg (and leave it in place). The benefit of th

Re: [web2py] Re:

2015-08-08 Thread Anthony
On Saturday, August 8, 2015 at 4:25:40 AM UTC-4, ESRA GÜÇLÜ wrote: > > requires.var.table gets the choice from user and it works sir. > i can access the grid and i did but grid's buttons do not work because of > having error. > Yes, but how is request.vars.table being set (i.e., what does "choice

Re: [web2py] Re:

2015-08-08 Thread ESRA GÜÇLÜ
requires.var.table gets the choice from user and it works sir. i can access the grid and i did but grid's buttons do not work because of having error. 2015-08-08 1:40 GMT+03:00 Anthony : > How is request.vars.table being set? For that to work, presumably you > would need "?table=some_table" in th