[web2py] Re: Notification similar to django-notification

2016-05-29 Thread billmackalister
You can look at facebook notification, basically an interface where user pick how they want to receive their notification, by email or texts etc. Toggle them on and off and when they log into their dashboard they see the notifications and receive them as they have it set up in their settings.

[web2py] Re: web2py 1.89.5

2016-05-29 Thread Leonel Câmara
It should be on the code.google.com archive but I can't access it. An alternative for you may be to check which files were modified later than the others inside gluon, so you will at least know the files where he made the changes. You may then be able to use this slightly more recent version.

[web2py] Re: auth_user boolean extrafield odd behavior

2016-05-29 Thread Anthony
When a user is logged in, the user record (i.e., auth.user) is stored in the session -- it does not get updated from the database on every request, as that would require too many database hits. It will be updated the next time that user logs in. Anthony On Sunday, May 29, 2016 at 2:43:02 PM

[web2py] Re: web2py 1.89.5

2016-05-29 Thread Roman Molotkovski
Sorry, but the link you provided is for web2py version 1.99.2. I tried also older dates in https://web.archive.org

[web2py] Off Topic - no-more-mvc-frameworks

2016-05-29 Thread António Ramos
https://www.infoq.com/articles/no-more-mvc-frameworks -- 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

[web2py] auth_user boolean extrafield odd behavior

2016-05-29 Thread Pierre
Hi, I defined an auth_user boolean extra field which default value is False then I updated its value to True Now if I login with this user and try to access the boolean value via* auth.user.extraField* it's still False here is the controller.function: def auser(): u= auth.user.username

[web2py] Re: SQLFORM with variable as db.'variable'

2016-05-29 Thread Anthony
You can use the following syntax: db[mytable][myfield] However, you should think about whether you really want to create a new table for every user. Instead, maybe look into the multi-tenancy

[web2py] Re: SQLFORM with variable as db.'variable'

2016-05-29 Thread botasservice
Hello, any suggestions? -- 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

[web2py] Re: Output format of an SQL query

2016-05-29 Thread Anthony
On Sunday, May 29, 2016 at 12:05:52 AM UTC-4, Sammy wrote: > > I am a python/web2py newbie. I am trying to create a user friendly web > search form for clients that connects to our existing Oracle DB and > executes a query based on search criteria put in the form by users. > > For example,

[web2py] Re: web2py 1.89.5

2016-05-29 Thread Leonel Câmara
Aahahahah, ok, now I get it. I found it for you: https://web.archive.org/web/20101213043422/http://www.web2py.com/examples/static/web2py_src.zip -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) -

[web2py] Re: Setting up the scheduler, and letting it run from a certain point of time

2016-05-29 Thread Niphlod
you need to call db.commit() in your task: this is both on the book and probably on the 90% of the threads regarding the scheduler :-P On Saturday, May 28, 2016 at 12:53:53 PM UTC+2, Mohit Jain wrote: > > I am stuck with a similar situation here. > > I have the models/scheduler.py > from