-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
205 additions
and
233 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,43 @@ | ||
<!doctype html> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<title>{{page_config['appName'] | e}} - Console</title> | ||
{% block favicon %} | ||
<link | ||
rel="icon" | ||
type="image/x-icon" | ||
href="{{ page_config['fullStaticUrl'] | e }}/favicons/favicon-console.ico" | ||
class="favicon" | ||
/> | ||
{% endblock %} {% if custom_css %} | ||
<link | ||
rel="stylesheet" | ||
type="text/css" | ||
href="{{ base_url | escape }}custom/custom.css" | ||
/> | ||
{% endif %} | ||
</head> | ||
<body> | ||
{# Copy so we do not modify the page_config with updates. #} {% set | ||
page_config_full = page_config.copy() %} {# Set a dummy variable - we just | ||
want the side effect of the update. #} {% set _ = | ||
page_config_full.update(baseUrl=base_url, wsUrl=ws_url) %} {# Sentinel value | ||
to say that we are on the tree page #} {% set _ = | ||
page_config_full.update(notebookPage='consoles') %} | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>{{page_config['appName'] | e}} - Console</title> | ||
{% block favicon %} | ||
<link rel="icon" type="image/x-icon" href="{{ page_config['fullStaticUrl'] | e }}/favicons/favicon-console.ico" class="favicon"> | ||
{% endblock %} | ||
|
||
<script id="jupyter-config-data" type="application/json"> | ||
{{ page_config_full | tojson }} | ||
</script> | ||
<script | ||
src="{{page_config['fullStaticUrl'] | e}}/bundle.js" | ||
main="index" | ||
></script> | ||
{% if custom_css %} | ||
<link rel="stylesheet" type="text/css" href="{{ base_url | escape }}custom/custom.css"> | ||
{% endif %} | ||
</head> | ||
<body> | ||
|
||
<script type="text/javascript"> | ||
/* Remove token from URL. */ | ||
(function () { | ||
var parsedUrl = new URL(window.location.href); | ||
if (parsedUrl.searchParams.get('token')) { | ||
parsedUrl.searchParams.delete('token'); | ||
window.history.replaceState({}, '', parsedUrl.href); | ||
} | ||
})(); | ||
</script> | ||
</body> | ||
{# Copy so we do not modify the page_config with updates. #} | ||
{% set page_config_full = page_config.copy() %} | ||
|
||
{# Set a dummy variable - we just want the side effect of the update. #} | ||
{% set _ = page_config_full.update(baseUrl=base_url, wsUrl=ws_url) %} | ||
|
||
{# Sentinel value to say that we are on the tree page #} | ||
{% set _ = page_config_full.update(notebookPage='consoles') %} | ||
|
||
<script id="jupyter-config-data" type="application/json"> | ||
{{ page_config_full | tojson }} | ||
</script> | ||
<script src="{{page_config['fullStaticUrl'] | e}}/bundle.js" main="index"></script> | ||
|
||
<script type="text/javascript"> | ||
/* Remove token from URL. */ | ||
(function () { | ||
var parsedUrl = new URL(window.location.href); | ||
if (parsedUrl.searchParams.get('token')) { | ||
parsedUrl.searchParams.delete('token'); | ||
window.history.replaceState({ }, '', parsedUrl.href); | ||
} | ||
})(); | ||
</script> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,39 @@ | ||
<!doctype html> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<title>{{page_config['appName'] | e}} - Edit</title> | ||
{% block favicon %} | ||
<link | ||
rel="icon" | ||
type="image/x-icon" | ||
href="{{ base_url | escape }}static/favicons/favicon-file.ico" | ||
class="favicon" | ||
/> | ||
{% endblock %} | ||
</head> | ||
<body data-notebook="edit"> | ||
{# Copy so we do not modify the page_config with updates. #} {% set | ||
page_config_full = page_config.copy() %} {# Set a dummy variable - we just | ||
want the side effect of the update. #} {% set _ = | ||
page_config_full.update(baseUrl=base_url, wsUrl=ws_url) %} {# Sentinel value | ||
to say that we are on the tree page #} {% set _ = | ||
page_config_full.update(notebookPage='edit') %} | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>{{page_config['appName'] | e}} - Edit</title> | ||
{% block favicon %} | ||
<link rel="icon" type="image/x-icon" href="{{ base_url | escape }}static/favicons/favicon-file.ico" class="favicon"> | ||
{% endblock %} | ||
</head> | ||
<body data-notebook="edit"> | ||
|
||
<script id="jupyter-config-data" type="application/json"> | ||
{{ page_config_full | tojson }} | ||
</script> | ||
<script | ||
src="{{page_config['fullStaticUrl'] | e}}/bundle.js" | ||
main="index" | ||
></script> | ||
{# Copy so we do not modify the page_config with updates. #} | ||
{% set page_config_full = page_config.copy() %} | ||
|
||
<script type="text/javascript"> | ||
/* Remove token from URL. */ | ||
(function () { | ||
var parsedUrl = new URL(window.location.href); | ||
if (parsedUrl.searchParams.get('token')) { | ||
parsedUrl.searchParams.delete('token'); | ||
window.history.replaceState({}, '', parsedUrl.href); | ||
} | ||
})(); | ||
</script> | ||
</body> | ||
{# Set a dummy variable - we just want the side effect of the update. #} | ||
{% set _ = page_config_full.update(baseUrl=base_url, wsUrl=ws_url) %} | ||
|
||
{# Sentinel value to say that we are on the tree page #} | ||
{% set _ = page_config_full.update(notebookPage='edit') %} | ||
|
||
<script id="jupyter-config-data" type="application/json"> | ||
{{ page_config_full | tojson }} | ||
</script> | ||
<script src="{{page_config['fullStaticUrl'] | e}}/bundle.js" main="index"></script> | ||
|
||
<script type="text/javascript"> | ||
/* Remove token from URL. */ | ||
(function () { | ||
var parsedUrl = new URL(window.location.href); | ||
if (parsedUrl.searchParams.get('token')) { | ||
parsedUrl.searchParams.delete('token'); | ||
window.history.replaceState({ }, '', parsedUrl.href); | ||
} | ||
})(); | ||
</script> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,43 @@ | ||
<!doctype html> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<title>{{page_config['appName'] | e}} - Notebook</title> | ||
{% block favicon %} | ||
<link | ||
rel="icon" | ||
type="image/x-icon" | ||
href="{{ base_url | escape }}static/favicons/favicon-notebook.ico" | ||
class="favicon" | ||
/> | ||
{% endblock %} {% if custom_css %} | ||
<link | ||
rel="stylesheet" | ||
type="text/css" | ||
href="{{ base_url | escape }}custom/custom.css" | ||
/> | ||
{% endif %} | ||
</head> | ||
<body data-notebook="notebooks"> | ||
{# Copy so we do not modify the page_config with updates. #} {% set | ||
page_config_full = page_config.copy() %} {# Set a dummy variable - we just | ||
want the side effect of the update. #} {% set _ = | ||
page_config_full.update(baseUrl=base_url, wsUrl=ws_url) %} {# Sentinel value | ||
to say that we are on the tree page #} {% set _ = | ||
page_config_full.update(notebookPage='notebooks') %} | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>{{page_config['appName'] | e}} - Notebook</title> | ||
{% block favicon %} | ||
<link rel="icon" type="image/x-icon" href="{{ base_url | escape }}static/favicons/favicon-notebook.ico" class="favicon"> | ||
{% endblock %} | ||
|
||
<script id="jupyter-config-data" type="application/json"> | ||
{{ page_config_full | tojson }} | ||
</script> | ||
<script | ||
src="{{page_config['fullStaticUrl'] | e}}/bundle.js" | ||
main="index" | ||
></script> | ||
{% if custom_css %} | ||
<link rel="stylesheet" type="text/css" href="{{ base_url | escape }}custom/custom.css"> | ||
{% endif %} | ||
</head> | ||
<body data-notebook="notebooks"> | ||
|
||
<script type="text/javascript"> | ||
/* Remove token from URL. */ | ||
(function () { | ||
var parsedUrl = new URL(window.location.href); | ||
if (parsedUrl.searchParams.get('token')) { | ||
parsedUrl.searchParams.delete('token'); | ||
window.history.replaceState({}, '', parsedUrl.href); | ||
} | ||
})(); | ||
</script> | ||
</body> | ||
{# Copy so we do not modify the page_config with updates. #} | ||
{% set page_config_full = page_config.copy() %} | ||
|
||
{# Set a dummy variable - we just want the side effect of the update. #} | ||
{% set _ = page_config_full.update(baseUrl=base_url, wsUrl=ws_url) %} | ||
|
||
{# Sentinel value to say that we are on the tree page #} | ||
{% set _ = page_config_full.update(notebookPage='notebooks') %} | ||
|
||
<script id="jupyter-config-data" type="application/json"> | ||
{{ page_config_full | tojson }} | ||
</script> | ||
<script src="{{page_config['fullStaticUrl'] | e}}/bundle.js" main="index"></script> | ||
|
||
<script type="text/javascript"> | ||
/* Remove token from URL. */ | ||
(function () { | ||
var parsedUrl = new URL(window.location.href); | ||
if (parsedUrl.searchParams.get('token')) { | ||
parsedUrl.searchParams.delete('token'); | ||
window.history.replaceState({ }, '', parsedUrl.href); | ||
} | ||
})(); | ||
</script> | ||
|
||
</body> | ||
</html> |
Oops, something went wrong.