[google-appengine] Re: Inconsistent 404

2009-08-25 Thread Michael
I was trying to do something a bit outside the box using bits and pieces of sample code without a good understanding(shortcuts are my nemesis). I will recount here in case it may have use elsewhere and someone can let me know if show a misunderstanding of best practices. Easily muddleheaded, I wa

[google-appengine] Re: Inconsistent 404

2009-08-24 Thread Nick Johnson (Google)
Hi Michael, It's not really possible to help without more details. Can you provide us the contents of your main.py script? It seems likely that your code is decoding the key being passed in, and returning a 404 if the key isn't found. -Nick Johnson On Fri, Aug 21, 2009 at 9:07 PM, Michael wrote:

[google-appengine] Re: Inconsistent 404

2009-08-21 Thread jonathan
if you decide to implement Django (rather than the basic handler that comes with appengine) then you can specify wildcard urls that pass arguments to your handlers. http://docs.djangoproject.com/en/dev/topics/http/urls/ The alternative approach (hinted at by vp) is to put a path in your app.yaml

[google-appengine] Re: Inconsistent 404

2009-08-21 Thread vp
Although i doubt following is going to work, but give it a try - url: /ill/request/new/(.*) Either way, do you have a handler for each: agRyY2xzcgwLEgZQYXRyb24YNAw and agRyY2xzcgwLEgZQYXRyb24YNgw If not, i dont think you can treat the appengine way to handling urls similar to the pretty urls yo