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