[google-appengine] Re: index.yaml and mutiple filters

2009-05-18 Thread fausto argeni bencosme
hey man. I have problem when i try to deploy my application to app engine*(google). The exception is : Unable to upload app: Error posting to URL: http://appengine.google.com/api/appversion/create?app_id=testiltaversion=2; 403 Forbidden You do not have permission to modify this app

[google-appengine] Re: index.yaml and mutiple filters

2009-05-17 Thread 风笑雪
Are you talk about this: if request.param_a2 != None: q.filter('a2 =', request.param_a2) 2009/5/16 Tom Wu service.g2...@gmail.com Hi All, - kind: model properties: - name: a1 - name: a2 - name: a3 - name: a4 - name: c1 - name: c2 - name: c3 - name: c4 - name:

[google-appengine] Re: index.yaml and mutiple filters

2009-05-17 Thread Tom Wu
Hi 风笑雪, if request.param_a2 != None: q.filter('a2 =', request.param_a2) This will cacuse a problem with index.yaml. It need to add a new index definition in index.yaml. I am trying use only one index definition with this model. Best Regards Tom Wu 2009/5/17 风笑雪 kea...@gmail.com Are