[web2py] Re: some features I implemented

2013-04-12 Thread pang
db.define_table('pais', Field('nombre', unique=True), Field('continente', 'string', requires=IS_IN_SET(CONTINENTES)), Field('es_UE', 'boolean', default=False), format='%(nombre)s',) and the controller: @auth.requires_login() def sheet(): tablename = request.args[0]

[web2py] Re: some features I implemented

2013-04-12 Thread Massimo Di Pierro
Will check this asap. Can you post some screenshots? On Thursday, 11 April 2013 16:58:29 UTC-5, pa...@cancamusa.net wrote: > > Hello: > > I've written an application for database management with some features > that might interest you: > > - RTable builds a kind of spreadsheet from any table. The

[web2py] Re: some features I implemented

2013-04-12 Thread Alan Etkin
> How do I know if it's useful for other people, other than asking here?. > ... Is that more useful than a RTable plugin? > The RTable plugin is just a suggestion, it doesn't means you ought to have one. I tend to make plugins since when you need a new app, you can integrate different feature

[web2py] Re: some features I implemented

2013-04-12 Thread Anthony
The problem is that the last character of the password appears to be a lowercase l, when in fact it is an uppercase I (which appear the same in the Google Groups font). Thanks. Anthony On Friday, April 12, 2013 5:30:32 AM UTC-4, pa...@cancamusa.net wrote: > > Login is an email, and got obfusca

[web2py] Re: some features I implemented

2013-04-12 Thread pang
El viernes, 12 de abril de 2013 01:51:33 UTC+2, Alan Etkin escribió: > > > RTable builds a kind of spreadsheet from any table. The columns are html > input for fields of type string or number, selects for > > references or when the options are limited, and so on. > > Unless I'm missing something,

[web2py] Re: some features I implemented

2013-04-12 Thread pang
Login is an email, and got obfuscated.It is tester at the domain example.com: tester (a) example.com El viernes, 12 de abril de 2013 01:17:21 UTC+2, Anthony escribió: > > I'm getting an Invalid Login error with the login you provided. > > On Thursday, April 11, 2013 5:58:29 PM UTC-4, pa...@cancam

[web2py] Re: some features I implemented

2013-04-11 Thread Alan Etkin
> RTable builds a kind of spreadsheet from any table. The columns are html input for fields of type string or number, selects for > references or when the options are limited, and so on. Unless I'm missing something, that's exactly what web2py/contrib/spreadsheet.py does. It seems that some web

[web2py] Re: some features I implemented

2013-04-11 Thread Anthony
I'm getting an Invalid Login error with the login you provided. On Thursday, April 11, 2013 5:58:29 PM UTC-4, pa...@cancamusa.net wrote: > > Hello: > > I've written an application for database management with some features > that might interest you: > > - RTable builds a kind of spreadsheet from