1
2
3
4
5
6
7
8
9
10
12 ''' Used for ajax calls from event console and elsewhere. This is used
13 as a container for REQUEST['message'] which we are interested in. It has
14 the advantage over the regular REQUEST object in that it won't actually
15 bother to render anything when callZenScreen() is called with one.
16 '''
17 dontRender = True
18 dontRedirect = True
19
21 dict.__init__(self, *args, **kw)
22 self['oneKeyValueSoInstanceIsntEmptyAndEvalToFalse'] = True
23
25 if R and self.get('message', ''):
26 R['message'] = self['message']
27