I implement the status bar used in the admin UI.
|
|
__init__(self,
widget)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
|
clear(self,
context=None)
Clear the status bar for the given context, or for all contexts if
none specified. |
source code
|
|
|
|
push(self,
context,
message)
Push the given message for the given context. |
source code
|
|
|
|
pop(self,
context)
Pop the last message for the given context. |
source code
|
|
|
|
set(self,
context,
message)
Replace the current top message for this context with this new one. |
source code
|
|
|
|
remove(self,
context,
mid)
Remove the message with the given id from the given context. |
source code
|
|
|
|
|
|
Inherited from object:
__delattr__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__str__
|