Hi All, in controller
def something() # do something return dict() def somethingelse() # do something else response.view="%s/%s.%s" % (request.controller, "something", request.extension) return something() is there any shortcut for changing the view and function withing a function ? (no redirect as I do not want to create a new request) thanks -- Sebastian E. Ovide

