[web2py] Re: Web2py admin > database datetime field error

2017-03-16 Thread Dave S
On Thursday, March 16, 2017 at 3:59:47 PM UTC-7, lyn2py wrote: > > > I've loaded a bunch of data into the DB, and some of the tables and rows > has the datetime field "-00-00" > > That caused web2py admin > this app's database to raise an error because > of the datetime field: > "year is

[web2py] -S -A on windders

2017-03-16 Thread Dave S
Using web2py.exe (2.14.6) on W10 last night, and the I had after -S app1/default/scriptfunc -A stuff didn't seem to be showing up. Has anyone else experienced that problem? I've just looked at one of my linux projects, and the stuff shows up just fine there. /dps -- Resources: -

[web2py] Web2py admin > database datetime field error

2017-03-16 Thread lyn2py
I've loaded a bunch of data into the DB, and some of the tables and rows has the datetime field "-00-00" That caused web2py admin > this app's database to raise an error because of the datetime field: "year is out of range" (1) I tried to use filter_out on the field but it is not working.

[web2py] FYI: thumbnailing windders

2017-03-16 Thread Dave S
For a project I'm working on with web2py on W10, I needed a scriptable thumbnail generator. As it happens, one of the first hits was for Since I enjoy using their NoteTab product, I was more than happy to give this a shot, and I'm happy with it so

[web2py] web2py slices Down

2017-03-16 Thread Ovidio Marinho
http://www.web2pyslices.com Down [image: http://itjp.net.br] http://itjp.net.b r *Ovidio Marinho Falcao Neto* ovidio...@gmail.com Brasil -- Resources: -

[web2py] How to link a default function to html

2017-03-16 Thread Maurice Waka
my code goes like this: db.py db.define_table('category', Field('name', requires = (IS_LOWER(), IS_SLUG(), IS_NOT_IN_DB(db, 'category.name' db.define_table( 'searches', Field('body', 'text', requires = (IS_NOT_EMPTY(), IS_LOWER())),

[web2py] WARNING:root:Unable to write to file /home/www-data/web2py/applications/myapp/languages/da.py

2017-03-16 Thread icodk
On some devices I get this error: WARNING:root:Unable to write to file /home/www-data/web2py/applications/myapp/languages/da.py This error is from the server log and the page that generate it only cause it on some devices (phones) but not on others. I checked the permissions on both

Re: [web2py] Custom filename export from sqlform.grid

2017-03-16 Thread Massimiliano
request.vars._export_filename = “yourname” On Thu, Mar 16, 2017 at 1:00 AM, 'fvillarr...@yahoo.com' via web2py-users < web2py@googlegroups.com> wrote: > Hi guys > > Always when i export data from a grid the filename is rows.csv (for > example). > > How i can customize the filename like foo.csv?