Exemplo n.º 1
0
 def OnMethodGET(self, ctx, path):
     SubprocessRoaster = ctx.app.Services.SubprocessRoaster
     return CallView(SubprocessRoaster)
Exemplo n.º 2
0
 def __call__(self, ctx, path):
     return CallView(ControllerGreeting='Msg from controller')
Exemplo n.º 3
0
 def __call__(self, ctx, path):
     return CallView()
Exemplo n.º 4
0
 def _CallView(self, ctx, formd):
     return CallView(formd=formd)
Exemplo n.º 5
0
 def OnActionGreen(self, ctx, path):
     return CallView(color='green')
Exemplo n.º 6
0
 def OnActionYellow(self, ctx, path):
     return CallView(color='yellow')
Exemplo n.º 7
0
 def OnActionRed(self, ctx, path):
     return CallView(color='red')
Exemplo n.º 8
0
 def OnMethodGET(self, ctx, path):
     return CallView(color='?')