[web2py] Re: db list of blobs?

2011-01-21 Thread Jacob Gur
Sure. The following example field are not supported by web2py: Field('myBlobs', 'list:blob'), Field('myDates', 'list:date') A workaround is to do the following: db.define_table('blobTable', Field('myBlob', 'blob')) db.define_table('myTable, Field('myBlobs', 'list:reference

[web2py] using shell with GAE on local development server

2011-01-21 Thread Jacob Gur
I want to run a Python shell in my GAE local development server environment. As I understand, the best way to do this is to run: python web2py.py -S app_folder_name (Please correct me if I doing something wrong here) Next, I run in the shell the following commands: from gluon.dal import DAL

[web2py] Is built-in ACL functionality right for me?

2011-01-21 Thread Jacob Gur
I'm trying to determine if the built-in RACL (role-base access control list) functionality using groups and permissions tables is right for me. My requirements are: 1) A user is an administrator of one, several, or all accounts (in account table), with varying levels of administrative rights. 2)

[web2py] Re: using shell with GAE on local development server

2011-01-21 Thread Jacob Gur
' is not defined Which ones? On Jan 21, 12:51 pm, Massimo Di Pierro massimo.dipie...@gmail.com wrote: The google modules are not in your path. On Jan 21, 10:36 am, Jacob Gur ja...@camdenbody.com wrote: I want to run a Python shell in my GAE local development server environment. As I understand

[web2py] db list of blobs?

2011-01-20 Thread Jacob Gur
Hi- Is there a way to do list of blobs in db? Looks like only options are list of strings, numbers and references. GAE supports list of anything, but it looks like web2py has not implemented a way to serialize all types into a string to store in the other databases it supports. Obviously, I can