Re: [web2py] Re: auth tables rname

2018-07-16 Thread Romina Casal
HI! I can not use db.auth._rname before auth.define_tables and auth.define_tables does not work because it does not find the tables since they are created in a different scheme than default. Currently I use customized tables but I wanted to stop doing it since it is more difficult to maintain if t

[web2py] Why not to mention support to Python3 on the official sites main page?

2018-07-16 Thread Ari Lion BR Sp
Hi, I wonder here why Python3 support is not mentioned at the official web2py's website? It is a very important feature which was not enough publicized, in my opinion. It would improove marketing for the framework at least at our Country, Brazil. Peoples colective memory here tends to remeber

Re: [web2py] Re: auth tables rname

2018-07-16 Thread Anthony
On Monday, July 16, 2018 at 8:49:48 AM UTC-4, fiubarc wrote: > > HI! I can not use db.auth._rname before auth.define_tables and > auth.define_tables does not work because it does not find the tables > since they are created in a different scheme than default. > What do you mean "it does not find

[web2py] SYTLING

2018-07-16 Thread elisha bere
Hie friends, I have created my web 2py app and i would like to style the {{=form}} n my web how do i do that? and if i want to creat my own forms how do i pass input from the forms i made to my backend? -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.co

Re: [web2py] Re: auth tables rname

2018-07-16 Thread fiubarc
Yes, I use migrate enabled in dev env and I dont use custom table definition. But, dont worry, I just wanted to find a better solution. Since I have it now it works, I will continue like this. Thank you El lunes, 16 de julio de 2018, 11:30:03 (UTC-3), Anthony escribió: > > On Monday, July 16, 2

[web2py] Re: SYTLING

2018-07-16 Thread Anthony
Please read http://web2py.com/books/default/chapter/29/07/forms-and-validators#Custom-forms and http://web2py.com/books/default/chapter/29/07/forms-and-validators#SQLFORM-in-HTML and come back with specific questions as you proceed. Anthony On Monday, July 16, 2018 at 10:50:01 AM UTC-4, eli

[web2py] cant get content of uploaded image file in post srervice

2018-07-16 Thread mr . pk23
I need to upload an image in a post REST service and process the uploaded image for further processing. Though I can read the filename, size or 'type' of the file but not able to get the content of the same. by using request.vars request.vars.my_image I want to utilize the file by either rea

[web2py] Beginning noob - link issue

2018-07-16 Thread jurij
This page has a link to try out web2py http://web2py.com/init/default/what at this location http://www.web2py.com/demo_admin which throws this error: Internal error Ticket issued: demo_admin/72.69.89.58.2018-07-15.15-38-34

[web2py] web2py internal error

2018-07-16 Thread Peter Hendriks
Ticket issued: malta_advies/141.8.9.39.2018-07-16.13-01-34.2270ef94-db9a-47a5-8866-f081bdf9715f Since this morning the above I see when I type my website. for inf

[web2py] Re: Beginning noob - link issue

2018-07-16 Thread Anthony
No, looks like something is broken. On Monday, July 16, 2018 at 3:18:44 PM UTC-4, ju...@us.ibm.com wrote: > > This page has a link to try out web2py > http://web2py.com/init/default/what at this location > http://www.web2py.com/demo_admin which throws this error: > Internal error Ticket issue

[web2py] Re: web2py internal error

2018-07-16 Thread Dave S
On Monday, July 16, 2018 at 12:18:44 PM UTC-7, Peter Hendriks wrote: > > Ticket issued: > malta_advies/141.8.9.39.2018-07-16.13-01-34.2270ef94-db9a-47a5-8866-f081bdf9715f > >

[web2py] Re: cant get content of uploaded image file in post srervice

2018-07-16 Thread Anthony
It should be a cgi.FieldStorage object, so try request.vars.my_image.file to access the file object itself. Anthony On Monday, July 16, 2018 at 3:18:44 PM UTC-4, mr.p...@gmail.com wrote: > > I need to upload an image in a post REST service > and process the uploaded image for further processing.

[web2py] Re: web2py internal error

2018-07-16 Thread Anthony
On Monday, July 16, 2018 at 3:18:44 PM UTC-4, Peter Hendriks wrote: > > Ticket issued: > malta_advies/141.8.9.39.2018-07-16.13-01-34.2270ef94-db9a-47a5-8866-f081bdf9715f > >

[web2py] Re: cant get content of uploaded image file in post srervice

2018-07-16 Thread Dave S
On Monday, July 16, 2018 at 12:18:44 PM UTC-7, mr@gmail.com wrote: > > I need to upload an image in a post REST service > and process the uploaded image for further processing. > > Though I can read the filename, size or 'type' of the file but not able to > get the content of the same. > by

Re: [web2py] Re: SYTLING

2018-07-16 Thread elisha bere
ok thank you On 16 July 2018 at 17:48, Anthony wrote: > Please read http://web2py.com/books/default/chapter/29/07/forms- > and-validators#Custom-forms and http://web2py.com/books/ > default/chapter/29/07/forms-and-validators#SQLFORM-in-HTML and come back > with specific questions as you proceed.