Replace header logo: jupyter -> jupyterhub

This commit is contained in:
Erik Sundell
2019-08-05 13:54:32 +02:00
parent 669dbfd449
commit 2cc0eb885a
2 changed files with 2 additions and 2 deletions

View File

@@ -592,7 +592,7 @@ class JupyterHub(Application):
@default('logo_file') @default('logo_file')
def _logo_file_default(self): def _logo_file_default(self):
return os.path.join(self.data_files_path, 'static', 'images', 'jupyter.png') return os.path.join(self.data_files_path, 'static', 'images', 'jupyterhub-80.png')
jinja_environment_options = Dict( jinja_environment_options = Dict(
help="Supply extra arguments that will be passed to Jinja environment." help="Supply extra arguments that will be passed to Jinja environment."

View File

@@ -611,7 +611,7 @@ async def test_static_files(app):
r = await async_requests.get(ujoin(base_url, 'logo')) r = await async_requests.get(ujoin(base_url, 'logo'))
r.raise_for_status() r.raise_for_status()
assert r.headers['content-type'] == 'image/png' assert r.headers['content-type'] == 'image/png'
r = await async_requests.get(ujoin(base_url, 'static', 'images', 'jupyter.png')) r = await async_requests.get(ujoin(base_url, 'static', 'images', 'jupyterhub-80.png'))
r.raise_for_status() r.raise_for_status()
assert r.headers['content-type'] == 'image/png' assert r.headers['content-type'] == 'image/png'
r = await async_requests.get(ujoin(base_url, 'static', 'css', 'style.min.css')) r = await async_requests.get(ujoin(base_url, 'static', 'css', 'style.min.css'))