##// END OF EJS Templates
Note that extension API is experimental
Thomas Kluyver -
Show More
@@ -711,7 +711,8 b' class NotebookApp(BaseIPythonApplication):'
711 self.config.MappingKernelManager.root_dir = new
711 self.config.MappingKernelManager.root_dir = new
712
712
713 server_extensions = List(Unicode(), config=True,
713 server_extensions = List(Unicode(), config=True,
714 help="Python modules to load as notebook server extensions"
714 help=("Python modules to load as notebook server extensions. "
715 "This is an experimental API, and may change in future releases.")
715 )
716 )
716
717
717 def parse_command_line(self, argv=None):
718 def parse_command_line(self, argv=None):
@@ -926,6 +927,8 b' class NotebookApp(BaseIPythonApplication):'
926
927
927 Import the module, then call the load_jupyter_server_extension function,
928 Import the module, then call the load_jupyter_server_extension function,
928 if one exists.
929 if one exists.
930
931 The extension API is experimental, and may change in future releases.
929 """
932 """
930 for modulename in self.server_extensions:
933 for modulename in self.server_extensions:
931 try:
934 try:
General Comments 0
You need to be logged in to leave comments. Login now