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