[web2py] Updating Values with the Ajax Callback funtion

2019-04-04 Thread mostwanted
I am customizing the OnlinePOS system to meet my task but i don't understand the Ajax Callback function, I can see it is very beneficial in updating values without a page refresh. In the highlighted part in the view below, when i click the *plus *& *minus *links the quantity value gets updated

[web2py] Re: compile_application() not including symlinked views (while it includes symlinked controllers)

2019-04-04 Thread Leonel Câmara
Could it be a permissions problem? -- 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 Grou

[web2py] Re: compile_application() not including symlinked views (while it includes symlinked controllers)

2019-04-04 Thread Lisandro
I don't think so, because the symlink has the same permissions (also owner) of the other symlinks that are compiled properly. Anyway, I tried to set 777 permissions but it didn't work. I forgot to mention that *symlinked views are compiled properly when the symlink points directly to a file*, f

Re: [web2py] Re: how to add users to existing programmatically using an if statement

2019-04-04 Thread micah jatta
thanks a lot Leonel!! [image: Mailtrack] Sender notified by Mailtrack 04/04/19, 2:10:37 PM On Sun, Mar 31,

Re: [web2py] pyDAL "adapter" for Pandas syntax (phylosophical)

2019-04-04 Thread Jurgis Pralgauskis
I found my idea implementation for Django :) https://github.com/coady/django-model-values On Sun, May 6, 2018 at 6:14 AM Massimo Di Pierro wrote: > I would very muck have a db().select_as_pandas() that avoids parsing > the database response a puts the tuples representing the rows directly in

[web2py] Re: Error Ticket Includes Sensitive Information

2019-04-04 Thread zm
For what it's worth, I did post to the developer list, however it never appeared. I assume it requires moderator approval or was rejected. On Tuesday, March 26, 2019 at 9:32:39 PM UTC-5, Anthony wrote: > > I don't think it's possible, but feel free to get a discussion going on > the developers'

Re: [web2py] Re: Error Ticket Includes Sensitive Information

2019-04-04 Thread Kevin Keller
Can errror messags and tickets in production not be restricted to server log files and disabled to be displayed for users or at least the ticket itself made inaccessbile to normal users? On Thu, Apr 4, 2019 at 4:38 PM zm wrote: > For what it's worth, I did post to the developer list, however it

Re: [web2py] Re: Error Ticket Includes Sensitive Information

2019-04-04 Thread Anthony
On Thursday, April 4, 2019 at 10:47:10 AM UTC-4, Kevin Keller wrote: > > Can errror messags and tickets in production not be restricted to server > log files and disabled to be displayed for users or at least the ticket > itself made inaccessbile to normal users? > Normal users can never see err

[web2py] Improve the images load

2019-04-04 Thread Christian Varas
Hi, I would like to ask for recommendations to serve images with web2py. I have a site (*https://climbersoul.cl *), this site is a kind of Wikipedia for spots climbing in Chile. This site will have a lot of images, and I would like to know how to optimize the load of the ima

[web2py] Validation messages of extra fields in auth_user don't comply with available translations

2019-04-04 Thread João Matos
When creating extra fields for auth_user, the validation messages for those fields are always in English. They don't comply with the translations available. This does not happen on the default fields. I added this to db.py auth.settings.extra_fields['auth_user'] = [Field('pagination', 'int

[web2py] Re: New International Telegram Support Group

2019-04-04 Thread Ari Lion BR Sp
Hey, Carlos, thanks for having created this group. Now I can solve my questions Live :-) Em segunda-feira, 25 de março de 2019 18:44:01 UTC-3, Ari Lion BR Sp escreveu: > > That's great > > Good live discussions at the Group. > > Em segunda-feira, 25 de março de 2019 09:20:29 UTC-3, Vlad escr

[web2py] Custom validator broken in 2.18.4, working in 2.17.2

2019-04-04 Thread David Manns
The table in question has a field: Field('Paiddate', 'date', requires = [IS_EMPTY_OR(IS_DATE()), IS_EMPTY_OR(IS_MEMBERSHIP_YEAR_END())]), The custom validator is: class IS_MEMBERSHIP_YEAR_END(object): def __init__(self, error_message='Not a membership year end'): self.error_mess