[web2py] Re: smartgrid tampering with url in browser

2017-06-22 Thread T.R.Rajkumar
Anthony, When I comment out auth and in model amc/amc.py I add this from gluon.storage import Storage from gluon.utils import web2py_uuid if not 'auth' in session: session.auth = Storage(hmac_key=web2py_uuid()) Now the smartgrid lists the rows but when add or edit button is clicked I get not

Re: [web2py] Re: we2admin tables

2017-06-22 Thread Ron Chatterjee
Does this help? http://www.web2pyslices.com/slice/show/2018/plugin-manage-groups -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this

Re: [web2py] Re: Newbie question about github / trunk

2017-06-22 Thread Anthony
On Thursday, June 22, 2017 at 4:05:15 AM UTC-4, Nico Zanferrari wrote: > > You can also download the current "master branch" directly from the link > https://github.com/web2py/web2py/archive/master.zip > > No, the web2py repo includes PyDal as a Git submodule, and the download zip file generated

Re: [web2py] Re: we2admin tables

2017-06-22 Thread Anthony
On Thursday, June 22, 2017 at 6:31:09 AM UTC-4, Maurice Waka wrote: > > yes its https://github.com/rif/web2admin > > I did insert plugins.web2admin.dbs = (db, dbhome) > in the db.py model but still cant get to see the dbhome table > As noted, that line must go in a model file that runs *after*

Re: [web2py] Re: web2py_component does not work with https...

2017-06-22 Thread Anthony
Not sure how this would be related to things working over http vs. https, but: typeof jQuery !== strundefined should be: typeof jQuery != 'undefined' Are you checking http vs. https in two different browsers, where the https browser has the above Javascript code cached, but the http browser

[web2py] Re: smartgrid tampering with url in browser

2017-06-22 Thread Anthony
As far as I understand, you are not using Auth, so why are you defining auth = Auth(...) at all? Just get rid of that line. On Thursday, June 22, 2017 at 1:06:05 AM UTC-4, T.R.Rajkumar wrote: > > I put the below code in my model file amc.py > > from gluon.storage import Storage > from

[web2py] Re: web2py_component does not work with https...

2017-06-22 Thread Leonel Câmara
No idea, I guess you could try with a different jQuery version. Not sure it would fix anything. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You

[web2py] How to use FORM, INPUT to create a field with dropdown list?

2017-06-22 Thread Rudy
Hi there, Due to the javascript reason, i need to create a form using FORM and INPUT helper. I wonder how I can create a form using these helpers with field displaying a dropdown list for selection (of customer from quotation form)? Below is a simplified version, currently i created

Re: [web2py] Re: we2admin tables

2017-06-22 Thread Maurice Waka
yes its https://github.com/rif/web2admin I did insert plugins.web2admin.dbs = (db, dbhome) in the db.py model but still cant get to see the dbhome table On Wed, Jun 21, 2017 at 6:32 PM, Anthony wrote: > Are you talking about https://github.com/rif/web2admin? If so, in a

[web2py] Re: smartgrid tampering with url in browser

2017-06-22 Thread T.R.Rajkumar
If I am not defining auth the error does not appear, but the grid user_signature is not working. I am setting the hmac_key as mentioned in model amc.py. from gluon.storage import Storage from gluon.utils import web2py_uuid if not 'auth' in session: session.auth =

[web2py] Looking for consultant for short term engagement to help with our aging web2py app

2017-06-22 Thread Ron Chatterjee
How much it pays? -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups

Re: [web2py] Re: Newbie question about github / trunk

2017-06-22 Thread Nico Zanferrari
You can also download the current "master branch" directly from the link https://github.com/web2py/web2py/archive/master.zip Nico 2017-06-21 17:38 GMT+02:00 Anthony : > That just means test the master branch on Github. You can get it via: > > git clone --recursive

[web2py] DAL ojdbc6.jar

2017-06-22 Thread Geo
Greetings to all I have a strange request. I'd like to run Oracle DAL requests using ojdbc6.jar instead of cx_oracle. I suppose that for this I need jython instead of a normal python installation. The reason for this is that on this machine I cannot install cx_oracle because it does not

[web2py] Re: smartgrid tampering with url in browser

2017-06-22 Thread Dave S
On Wednesday, June 21, 2017 at 10:06:05 PM UTC-7, T.R.Rajkumar wrote: > > I put the below code in my model file amc.py > > from gluon.storage import Storage > from gluon.utils import web2py_uuid > if not 'auth' in session: > session.auth = Storage(hmac_key=web2py_uuid()) > > But now when in