##// END OF EJS Templates
fix sticky warning....
fix sticky warning. Widget.warning('text....') was infinitely sticky in some cases like content manager raising 'not implemented' on copy. The make default click_callback to dismiss notification, and fix the logic to not unbind the click handler if it requests the notification not to be dismissed.

File last commit:

r19571:4aa90a90
r20294:06a51f16
Show More
manager.py
14 lines | 434 B | text/x-python | PythonLexer
Thomas Kluyver
First stab at ConfigManager class
r19083 """Manager to read and modify frontend config data in JSON files.
"""
# Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
Bussonnier Matthias
generalise manager
r19540 import os
Thomas Kluyver
First stab at ConfigManager class
r19083
Matthias Bussonnier
s/Json/JSON/g **/*.py
r19571 from IPython.config.manager import BaseJSONConfigManager
Thomas Kluyver
First stab at ConfigManager class
r19083
Matthias Bussonnier
s/Json/JSON/g **/*.py
r19571 class ConfigManager(BaseJSONConfigManager):
Bussonnier Matthias
generalise manager
r19540 """Config Manager use for storin Javascript side config"""
Thomas Kluyver
First stab at ConfigManager class
r19083
Bussonnier Matthias
generalise manager
r19540 def _config_dir(self):
Thomas Kluyver
First stab at ConfigManager class
r19083 return os.path.join(self.profile_dir, 'nbconfig')