def OnMethodGET(self, ctx, path): SubprocessRoaster = ctx.app.Services.SubprocessRoaster return CallView(SubprocessRoaster)
def __call__(self, ctx, path): return CallView(ControllerGreeting='Msg from controller')
def __call__(self, ctx, path): return CallView()
def _CallView(self, ctx, formd): return CallView(formd=formd)
def OnActionGreen(self, ctx, path): return CallView(color='green')
def OnActionYellow(self, ctx, path): return CallView(color='yellow')
def OnActionRed(self, ctx, path): return CallView(color='red')
def OnMethodGET(self, ctx, path): return CallView(color='?')