I implement the status bar used in the admin UI.
|
|
|
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
|
|
|
|