[google-appengine] Re: script handler issues

2008-12-21 Thread Drew
Looks like you omitted the subdirectory for finworksheet.py. This ought to work: - url: /finance/worksheet.* script: finance/finworksheet.py I use a slightly different regex to do REST-style URLs: - url: /finance/worksheet(/.*)? script: finance/finworksheet.py This gives you a narrower mat

[google-appengine] Re: script handler issues

2008-12-21 Thread Vince
Thanks Alexander for your reply!! Unfortunately that didn't solve my problem. I am still getting a 404 when I added - url: /finance/worksheet.* script: finworksheet.py Thanks On Dec 21, 2:14 am, Alexander Kojevnikov wrote: > Replace > > - url: /finance/worksheet/.* > > with > > - url: /fina

[google-appengine] Re: script handler issues

2008-12-20 Thread Alexander Kojevnikov
Replace - url: /finance/worksheet/.* with - url: /finance/worksheet.* The URL you are trying to access doesn't have the trailing slash, but your script handler requires it. -- www.muspy.com On Dec 21, 3:14 pm, Vince wrote: > Having a hard time with wrapping my head around the script handler