[web2py] Re: web2py 2.13.3 is OUT

2016-03-05 Thread Literate Aspects
Just have to say THANK YOU, for your incredible contributions. Cordially, benYAH On Thursday, December 24, 2015 at 7:21:42 AM UTC-8, Massimo Di Pierro wrote: > > web2py 2.13.3 is out. MERRY CHRISTMAS EVERYBODY!!! > > It contains some bug fixes for bugs introduced in 2.13.1-2 and most >

[web2py] Re: web2py 2.13.3 is OUT

2016-01-27 Thread john sitjar
Good day sir I am new to web2py and extjs 6,I would like to ask if you have a tutorial on how to run an Extjs 6 app using web2py.thanks On Thursday, December 24, 2015 at 11:21:42 PM UTC+8, Massimo Di Pierro wrote: > > web2py 2.13.3 is out. MERRY CHRISTMAS EVERYBODY!!! > > It contains some bug

[web2py] Re: web2py 2.13.3 is OUT

2016-01-26 Thread Dave S
Should this thread be unpinned and the 2.13.4 thread pinned instead? /dps On Thursday, December 24, 2015 at 7:21:42 AM UTC-8, Massimo Di Pierro wrote: > > web2py 2.13.3 is out. MERRY CHRISTMAS EVERYBODY!!! > > It contains some bug fixes for bugs introduced in 2.13.1-2 and most > importantly it

[web2py] Re: web2py 2.13.3 is OUT

2016-01-05 Thread Massimo Di Pierro
No. perhaps the file just had wrong permissions. On Monday, 4 January 2016 06:30:02 UTC-6, Jacinto Parga wrote: > > I have solved it. > > I have removed *logging.conf* file from the web2py folder, but I don't > know if it has undesidered consecuences! > > Can it be harmful? > > Thanks! > > El

[web2py] Re: web2py 2.13.3 is OUT

2016-01-04 Thread Jacinto Parga
Hi, I upgraded from 2.11.2 I get a error ticket when I deploy to GAE: Traceback (most recent call last): File "/base/data/home/runtimes/python27/python27_lib/versions/1/google/appengine/runtime/wsgi.py" , line 240, in Handle handler =

[web2py] Re: web2py 2.13.3 is OUT

2016-01-04 Thread Jacinto Parga
I have solved it. I have removed *logging.conf* file from the web2py folder, but I don't know if it has undesidered consecuences! Can it be harmful? Thanks! El lunes, 4 de enero de 2016, 11:52:22 (UTC+1), Jacinto Parga escribió: > > Hi, > > I upgraded from 2.11.2 > > I get a error ticket

[web2py] Re: web2py 2.13.3 is OUT

2016-01-03 Thread Dmitri Ermolaev
hey - do you see cryptocurrency Auth? in NEXT - http://nxt.org/ - it have token by user account in cryptocurrency четверг, 24 декабря 2015 г., 18:21:42 UTC+3 пользователь Massimo Di Pierro написал: > > web2py 2.13.3 is out. MERRY CHRISTMAS EVERYBODY!!! > > It contains some bug fixes for bugs

Re: [web2py] Re: web2py 2.13.3 is OUT

2015-12-30 Thread Luis Valladares
All my applications are REST so CAS doesn't work I think El dic. 30, 2015 7:19 PM, "Dave S" escribió: > On Wednesday, December 30, 2015 at 2:33:46 PM UTC-8, > luis.va...@metamaxzone.com wrote: >> >> What if i've two different applications (event in two differents >>

[web2py] Re: web2py 2.13.3 is OUT

2015-12-30 Thread Dave S
On Wednesday, December 30, 2015 at 2:33:46 PM UTC-8, luis.va...@metamaxzone.com wrote: > > What if i've two different applications (event in two differents machines) > one for the front end of my site (all my views, form, etc...) and other to > authenticate my users, i mean, a micro service

[web2py] Re: web2py 2.13.3 is OUT

2015-12-30 Thread luis . valladares
What if i've two different applications (event in two differents machines) one for the front end of my site (all my views, form, etc...) and other to authenticate my users, i mean, a micro service architecture. El jueves, 24 de diciembre de 2015, 10:51:42 (UTC-4:30), Massimo Di Pierro

Re: [web2py] Re: web2py 2.13.3 is OUT

2015-12-30 Thread Dave S
On Wednesday, December 30, 2015 at 4:07:35 PM UTC-8, Luis Valladares wrote: > > All my applications are REST so CAS doesn't work I think > Currently not requiring login? You're using the REST decorator? And you want to add JWT for security? In that direction, I'm wondering what

Re: [web2py] Re: web2py 2.13.3 is OUT

2015-12-30 Thread Luis Valladares
Now I'm using a token based authentication but it's server side, I store the data of the tokens inside a redis cluster server and make a request every time I want to retrieve this token data El dic. 30, 2015 8:33 PM, "Dave S" escribió: > > > On Wednesday, December 30, 2015

Re: [web2py] Re: web2py 2.13.3 is OUT

2015-12-29 Thread Massimo Di Pierro
You can do exactly that with web2py 2.13.4 https://github.com/web2py/web2py/blob/master/gluon/tools.py#L1200 except you need two validators instead of one: @auth.allow_jwt() @auth.requires_login() which means that you want allow jwt to give you login-like privileges. if you want you can do

Re: [web2py] Re: web2py 2.13.3 is OUT

2015-12-28 Thread Dave S
On Monday, December 28, 2015 at 11:05:04 AM UTC-8, Ramos wrote: > > can i do > >@auth.requires_jwt() > > I would like to use web2py just as a rest api , auth included... > What's your environment? /dps -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) -

Re: [web2py] Re: web2py 2.13.3 is OUT

2015-12-28 Thread António Ramos
can i do @auth.requires_jwt() I would like to use web2py just as a rest api , auth included... 2015-12-27 7:09 GMT+00:00 Massimo Di Pierro : > good catch! we will have to refactor that to support earlier versions of > python. > > > On Sunday, 27 December 2015

[web2py] Re: web2py 2.13.3 is OUT

2015-12-26 Thread Lou C
I am running version 2.13.4 on GAE which runs on python 2.7.5. The problem arises when using the @auth.allows_jwt() decorator. The error I get is AttributeError: 'module' object has no attribute 'compare_digest'. Which is being called in : def verify_signature(self, body, signature,

[web2py] Re: web2py 2.13.3 is OUT

2015-12-26 Thread Massimo Di Pierro
good catch! we will have to refactor that to support earlier versions of python. On Sunday, 27 December 2015 01:02:09 UTC-6, Lou C wrote: > > I am running version 2.13.4 on GAE which runs on python 2.7.5. The problem > arises when using the @auth.allows_jwt() decorator. The error I get is >

[web2py] Re: web2py 2.13.3 is OUT

2015-12-25 Thread Massimo Di Pierro
I do not understand. That line is not in 2.13.3. Can you try upgrade again? On Thursday, 24 December 2015 11:11:27 UTC-6, Seth J wrote: > > Hi Massimo, > > I just upgraded from 2.9.5 and it seemed to kill my LDAP authorization: > > invalid syntax (ldap_auth.py, line 435) > Versionweb2py™Version

[web2py] Re: web2py 2.13.3 is OUT

2015-12-25 Thread Πέτρος Χατζηλάμπρος
Mrry Christmas I found the following bug in version 2.13.3: I am using linux mint and I have a folder named web2py on the ~/Desktop I was using to run web2py by opening terminal and giving the command "python ~/Desktop/web2py/web2py.py -a "tsouras" -i 0.0.0.0". After the update to version

[web2py] Re: web2py 2.13.3 is OUT

2015-12-25 Thread Massimo Di Pierro
This is issue is now fixed in 2.13.4. :-) On Friday, 25 December 2015 22:37:54 UTC-6, Πέτρος Χατζηλάμπρος wrote: > > Mrry Christmas > > I found the following bug in version 2.13.3: > > I am using linux mint and I have a folder named web2py on the ~/Desktop > I was using to run web2py by

[web2py] Re: web2py 2.13.3 is OUT

2015-12-24 Thread greenpoise
I get this error upon restarting web2py after update: Traceback (most recent call last): File "Applications/web2py/web2py.py", line 6, in import gluon.widget File "/home/danel/Applications/web2py/gluon/widget.py", line 26, in import gluon.main as main File

[web2py] Re: web2py 2.13.3 is OUT

2015-12-24 Thread Seth J
Definitely something has gone awry there. I replaced "ldap_auth.py" and "ldap_auth.pyc" from the 2.12.3 version and it works again. On Thursday, December 24, 2015 at 12:11:27 PM UTC-5, Seth J wrote: > > Hi Massimo, > > I just upgraded from 2.9.5 and it seemed to kill my LDAP authorization: > >

Re: [web2py] Re: web2py 2.13.3 is OUT

2015-12-24 Thread Ovidio Marinho
+1 testing [image: http://itjp.net.br] http://itjp.net.b r *Ovidio Marinho Falcao Neto* ovidio...@gmail.com Brasil 2015-12-24 15:11 GMT-02:00 Seth J

[web2py] Re: web2py 2.13.3 is OUT

2015-12-24 Thread Seth J
Hi Massimo, I just upgraded and it seemed to kill my LDAP authorization: invalid syntax (ldap_auth.py, line 435) Versionweb2py™Version 2.13.3-stable+timestamp.2015.12.24.15.09.20PythonPython 2.6.6: /usr/bin/python (prefix: /usr)Traceback 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. Traceback (most