#!/usr/bin/python import web import controller # # URL Mappings # urls = ( "/r/(.*)", "controller.Redirect", "/(.*)", "controller.Page" ) # # The App # app = web.application(urls, globals()) app.notfound = controller.FourOhFour # debug for the moment web.config.debug = True # # And go! if __name__ == "__main__": app.run()