Re: [web2py] Re: A little suggestion: Create a forum for web3py

2019-05-31 Thread Massimo Di Pierro
we will not. Google groups has served us well. We will eventually create another group but not today. ;-) On Friday, 31 May 2019 19:57:26 UTC-7, Carlos Cesar Caballero wrote: > > Please no!! we can't use Slack from Cuba. > > Greetings. > > El miércoles, 29 de mayo de 2019, 12:45:50 (UTC-4),

Re: [web2py] Re: A little suggestion: Create a forum for web3py

2019-05-31 Thread Carlos Cesar Caballero
Please no!! we can't use Slack from Cuba. Greetings. El miércoles, 29 de mayo de 2019, 12:45:50 (UTC-4), Ramos escribió: > > Do we need to reinvent the wheel again ? > why not use for ex... > > https://slack.com > > or many others out there? > > > Em sex, 24 de mai de 2019 às 21:41, Dave S >

Re: [web2py] Re: A little suggestion: Create a forum for web3py

2019-05-31 Thread Carlos Cesar Caballero
Please no!! We can't use Slack from Cuba. Greetings. -- 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] Re: Routes to expose file

2019-05-31 Thread Daniel Guilhermino
Hi Dave, I'm running the source package on ubuntu. Show Only this message: Internal server error Doesn't created an ticket. I need to make this file available for Google to validate my PWA and run the application (I made an apk and uploaded it on Google Play as TWA) without showing the

Re: [web2py] Re: submitting a form from a LOAD component - request.post_vars is empty

2019-05-31 Thread Eliezer (Vlad) Tseytkin
Oh, this kind of stuff does work, I've used it in this context; but t's very different in my case: The real problem is that addEventListener clearly does not work from inside of the LOAD component (not sure if it doesn't work at all there, or there is something weird in my case, though I

[web2py] Re: setting up pscycopg2

2019-05-31 Thread Dave S
Help! /dps On Thursday, May 16, 2019 at 6:37:42 PM UTC-7, Dave S wrote: > > > > On Wednesday, May 15, 2019 at 10:26:39 AM UTC-7, Dave S wrote: >> >> >> >> On Monday, May 13, 2019 at 3:48:39 PM UTC-7, Dave S wrote: >>> >>> >>> >>> On Monday, May 13, 2019 at 2:31:33 PM UTC-7, Dave S wrote:

[web2py] Re: Routes to expose file

2019-05-31 Thread Dave S
On Friday, May 31, 2019 at 7:54:16 AM UTC-7, Daniel Guilhermino wrote: > > HI, > > I'm having trouble exposing a file in the following way: > > https://example.com/./well-known/file.json > > I configured my routes.py like this: > > routers = dict ( > > # base router > BASE = dict ( >

[web2py] Re: I can not import module in app

2019-05-31 Thread Dave S
On Friday, May 31, 2019 at 5:10:23 AM UTC-7, Константин Комков wrote: > > *Dave S*, today I rename my app from "application" to "statement". After > that in browser I saw: > invalid function (default/statement). After that I restart server and > "statement" start working. Then I tried to import

[web2py] Re: submitting a form from a LOAD component - request.post_vars is empty

2019-05-31 Thread Dave S
On Friday, May 31, 2019 at 1:57:50 PM UTC-7, Vlad wrote: > > sorry for keeping posting about this. I am just totally stuck. I am sure > that I am missing something very basic. Here is the complete code: > > "payment-form2"> >Submit > > > >

[web2py] Re: submitting a form from a LOAD component - request.post_vars is empty

2019-05-31 Thread Vlad
sorry for keeping posting about this. I am just totally stuck. I am sure that I am missing something very basic. Here is the complete code: Submit

[web2py] Re: submitting a form from a LOAD component - request.post_vars is empty

2019-05-31 Thread Vlad
I've narrowed down what's going on, but still stuck... this is how the form is being submitted (from inside of the component): function stripeTokenHandler(token) { var form = document.getElementById('payment-form'); var hiddenInput = document.createElement('input');

[web2py] submitting a form from a LOAD component - request.post_vars is empty

2019-05-31 Thread Vlad
I am loading a component with LOAD. the component has the form on it. the form is submitting via post method. request.post_vars is empty. the variables don't go through. when I copy the same very code and pasting it in the view (i.e. instead of the LOAD component - while taking the LOAD line

[web2py] Routes to expose file

2019-05-31 Thread Daniel Guilhermino
HI, I'm having trouble exposing a file in the following way: https://example.com/./well-known/file.json I configured my routes.py like this: routers = dict ( # base router BASE = dict ( default_application = 'connect', root_static = ['favicon.ico', 'sw.js',

[web2py] Re: I can not import module in app

2019-05-31 Thread Константин Комков
*Dave S*, today I rename my app from "application" to "statement". After that in browser I saw: invalid function (default/statement). After that I restart server and "statement" start working. Then I tried to import my module, but have error again: import mytest >>>No module named

[web2py] Re: OperationalError: no such table: contacts

2019-05-31 Thread João Matos
If you don't need any data in the db, delete everything in databases and check that in models\db.py the DAL creation has migrate=True. Then restart your app. All tables should be recreated. quarta-feira, 29 de Maio de 2019 às 20:13:07 UTC+1, karthikeyan p escreveu: > > i am running my web2py