[web2py] Re: SQLFORM.factory + Multiple Tables + Upload Field + GAE Blob Problem

2013-01-01 Thread Jeff Kusi
Is there any update on this bug? I am also experiencing it. I am using the workaround suggested by JungHyun Kim I am using 2.3.2. On Monday, August 20, 2012 12:49:14 PM UTC-4, JungHyun Kim wrote: Hello! I have a problem with upload field. I tried to upload a file through one form with

[web2py] REST API no matching pattern

2012-12-30 Thread Jeff Kusi
I followed the example for the REST API (multiple times actually). However I keep getting ***no matching pattern* every time. In fact it looks like the auto pattern is not generating because when I navigate to api/patterns.json, I see {content: auto} instead of the beautiful rendering of

Re: [web2py] Interesting - Brython (python to javascript)

2012-12-26 Thread Jeff Kusi
I have a question about security (it may be unfounded), Isn't server-side interpretation more secure? Especially when business logic that doesn't pass as controller code is embedded into the view code. Brython would exposed such code to a front-end user. What are your thoughts? On Saturday,

[web2py] AttributeError: type object 'Field' has no attribute 'Method'

2012-12-24 Thread Jeff Kusi
I am attempting to use the virtual Methods of the dal but I am running into this issue. Here's my code db.define_table('Posts', db.Field('zipcode'), db.Field.Method('distance',lambda row, loc_zip=3:abs(row .zipcode-loc_zip)) ) But I am running

[web2py] Re: AttributeError: type object 'Field' has no attribute 'Method'

2012-12-24 Thread Jeff Kusi
, 2012 8:24:02 AM UTC-5, DenesL wrote: Hi Jeff, I believe you need web2py 2.3.1 or higher for that. On Monday, December 24, 2012 1:36:25 AM UTC-5, Jeff Kusi wrote: I am attempting to use the virtual Methods of the dal but I am running into this issue. Here's my code db.define_table

[web2py] Re: janrain logs in but stuck on login screen

2012-12-07 Thread Jeff Kusi
Could somebody address this issue please? Mine is also doing the same thing. here's how my config looks: --- from gluon.tools import Auth, Crud, Service, PluginManager, prettydate auth = Auth(db) from gluon.contrib.login_methods.rpx_account import RPXAccount