Ben, thanks!
This much more simple than I had anticipated. Thanks a bunch.
Cheers,
PS
On Sun, Apr 27, 2008 at 2:47 PM, Ben the Indefatigable <bcbr...@gmail.com>
wrote:
Peter, the way I took your question was "how do I have one handler
service multiple URLs. In other words
class DynPage(webapp.RequestHandler):
def get(self):
pagename = self.request.path
def main():
application = webapp.WSGIApplication( [
('/', MainPage),
('/sign', Guestbook),
('/.*', DynPage)
], debug=True)
Then pagename is "/whatever" and you use that as the basis for how you
do your page.