Skip to content

Commit

Permalink
Revert "Server extension paths (#730)" (#732)
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Mar 14, 2022
1 parent 0fd5c7b commit 93b1c83
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 29 deletions.
21 changes: 2 additions & 19 deletions jupyter_server/extension/application.py
Expand Up @@ -12,7 +12,6 @@
from traitlets import default
from traitlets import Dict
from traitlets import HasTraits
from traitlets import Instance
from traitlets import List
from traitlets import Unicode
from traitlets.config import Config
Expand Down Expand Up @@ -104,7 +103,7 @@ def _prepare_templates(self):
loader=FileSystemLoader(self.template_paths),
extensions=["jinja2.ext.i18n"],
autoescape=True,
**self.jinja2_options,
**self.jinja2_options
)

# Add the jinja2 environment for this extension to the tornado settings.
Expand Down Expand Up @@ -163,12 +162,6 @@ class method. This method can be set as a entry_point in
def _default_open_browser(self):
return self.serverapp.config["ServerApp"].get("open_browser", True)

@property
def config_file_paths(self):
"""Look on the same path as our parent for config files"""
# rely on parent serverapp, which should control all config loading
return self.serverapp.config_file_paths

# The extension name used to name the jupyter config
# file, jupyter_{name}_config.
# This should also match the jupyter subcommand used to launch
Expand Down Expand Up @@ -207,17 +200,7 @@ def _default_url(self):
]

# A ServerApp is not defined yet, but will be initialized below.
serverapp = Instance(ServerApp)

@default("serverapp")
def _default_serverapp(self):
# load the current global instance, if any
if ServerApp.initialized():
return ServerApp.instance()
else:
# serverapp accessed before it was defined,
# declare an empty one
return ServerApp()
serverapp = None

_log_formatter_cls = LogFormatter

Expand Down
7 changes: 6 additions & 1 deletion jupyter_server/serverapp.py
Expand Up @@ -104,6 +104,7 @@
base_flags,
base_aliases,
)
from jupyter_core.paths import jupyter_config_path
from jupyter_client import KernelManager
from jupyter_client.kernelspec import KernelSpecManager
from jupyter_client.session import Session
Expand Down Expand Up @@ -2153,7 +2154,11 @@ def find_server_extensions(self):
# This enables merging on keys, which we want for extension enabling.
# Regular config loading only merges at the class level,
# so each level clobbers the previous.
manager = ExtensionConfigManager(read_config_path=self.config_file_paths)
config_paths = jupyter_config_path()
if self.config_dir not in config_paths:
# add self.config_dir to the front, if set manually
config_paths.insert(0, self.config_dir)
manager = ExtensionConfigManager(read_config_path=config_paths)
extensions = manager.get_jpserver_extensions()

for modulename, enabled in sorted(extensions.items()):
Expand Down
1 change: 0 additions & 1 deletion jupyter_server/services/contents/filemanager.py
Expand Up @@ -31,7 +31,6 @@
from jupyter_server import _tz as tz
from jupyter_server.base.handlers import AuthenticatedFileHandler
from jupyter_server.transutils import _i18n
from jupyter_server.utils import import_item

try:
from os.path import samefile
Expand Down
8 changes: 0 additions & 8 deletions tests/extension/test_app.py
Expand Up @@ -69,14 +69,6 @@ def test_extensionapp_load_config_file(
assert mock_extension.mock_trait == "config from file"


def test_extensionapp_no_parent():
# make sure we can load config files, even when serverapp is not passed
# relevant for e.g. shortcuts to config-loading
app = MockExtensionApp()
assert isinstance(app.config_file_paths, list)
assert app.serverapp is not None


OPEN_BROWSER_COMBINATIONS = (
(True, {}),
(True, {"ServerApp": {"open_browser": True}}),
Expand Down

0 comments on commit 93b1c83

Please sign in to comment.