-
Notifications
You must be signed in to change notification settings - Fork 75
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
86 additions
and
88 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true |
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 |
---|---|---|
|
@@ -116,4 +116,4 @@ prometheus: | |
persistentVolume: | ||
storageClass: local-storage-prometheus | ||
static: | ||
enabled: false | ||
enabled: false |
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,32 +1,27 @@ | ||
{% extends "templates/login.html" %} | ||
|
||
{% block header_buttons %} | ||
{% block login_widget %} | ||
{% endblock %} | ||
{% extends "templates/login.html" %} {% block header_buttons %} {% block | ||
login_widget %} {% endblock %} | ||
<span class="flex-spacer"></span> | ||
{{super()}} | ||
{% endblock header_buttons %} | ||
|
||
{% block site %} | ||
{{super()}} {% endblock header_buttons %} {% block site %} | ||
<div id="ipython-main-app" class="container"> | ||
<h1>Binder inaccessible</h1> | ||
<h2> | ||
You can get a new Binder for this repo by clicking <a href="{{binder_url}}">here</a>. | ||
You can get a new Binder for this repo by clicking | ||
<a href="{{binder_url}}">here</a>. | ||
</h2> | ||
<p> | ||
The shareable URL for this repo is: <tt>{{binder_url}}</tt> | ||
</p> | ||
<p>The shareable URL for this repo is: <tt>{{binder_url}}</tt></p> | ||
|
||
<h4>Is this a Binder that you created?</h4> | ||
<p> | ||
If so, your authentication cookie for this Binder has been deleted or expired. | ||
You can launch a new Binder for this repo by clicking <a href="{{binder_url}}">here</a>. | ||
If so, your authentication cookie for this Binder has been deleted or | ||
expired. You can launch a new Binder for this repo by clicking | ||
<a href="{{binder_url}}">here</a>. | ||
</p> | ||
|
||
<h4>Did someone give you this Binder link?</h4> | ||
<p> | ||
If so, the link is outdated or incorrect. | ||
Recheck the link for typos or ask the person who gave you the link for an updated link. | ||
A shareable Binder link should look like <tt>{{binder_url}}</tt>. | ||
If so, the link is outdated or incorrect. Recheck the link for typos or ask | ||
the person who gave you the link for an updated link. A shareable Binder | ||
link should look like <tt>{{binder_url}}</tt>. | ||
</p> | ||
</div> | ||
{% endblock site %} |
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,46 +1,48 @@ | ||
{% extends "templates/page.html" %} | ||
|
||
{% block header_buttons %} | ||
|
||
{% block login_widget %} | ||
{% endblock %} | ||
|
||
{% if jitsi_url %} | ||
<span> | ||
<a id="visit-repo-link" href="{{ jitsi_url }}" class="btn btn-default btn-sm navbar-btn" target="_blank" | ||
style="margin-right: 2px; margin-left: 4px;">Join this repo's Video Chat</a> | ||
</span> | ||
{% endif %} | ||
|
||
{% if ref_url %} | ||
<span> | ||
<a id="visit-repo-link" href="{{ ref_url }}" class="btn btn-default btn-sm navbar-btn" target="_blank" | ||
style="margin-right: 2px; margin-left: 4px;">Visit repo</a> | ||
</span> | ||
{% endif %} | ||
|
||
{% if persistent_binder_url %} | ||
<span> | ||
<button id="copy-binder-link" title="Copy binder link to clipboard" class="btn btn-default btn-sm navbar-btn" | ||
style="margin-right: 0; margin-left: 2px;" | ||
data-url="{{ persistent_binder_url }}" onclick="copy_link_into_clipboard(this);"> | ||
Copy Binder link | ||
</button> | ||
</span> | ||
{% endif %} | ||
|
||
{% endblock header_buttons %} | ||
|
||
{% block script %} | ||
{% if persistent_binder_url %} | ||
<script type='text/javascript'> | ||
function copy_link_into_clipboard(b) { | ||
var $temp = $("<input>"); | ||
$(b).parent().append($temp); | ||
$temp.val($(b).data('url')).select(); | ||
document.execCommand("copy"); | ||
$temp.remove(); | ||
} | ||
{% extends "templates/page.html" %} {% block header_buttons %} {% block | ||
login_widget %} {% endblock %} {% if jitsi_url %} | ||
<span> | ||
<a | ||
id="visit-repo-link" | ||
href="{{ jitsi_url }}" | ||
class="btn btn-default btn-sm navbar-btn" | ||
target="_blank" | ||
style="margin-right: 2px; margin-left: 4px" | ||
>Join this repo's Video Chat</a | ||
> | ||
</span> | ||
{% endif %} {% if ref_url %} | ||
<span> | ||
<a | ||
id="visit-repo-link" | ||
href="{{ ref_url }}" | ||
class="btn btn-default btn-sm navbar-btn" | ||
target="_blank" | ||
style="margin-right: 2px; margin-left: 4px" | ||
>Visit repo</a | ||
> | ||
</span> | ||
{% endif %} {% if persistent_binder_url %} | ||
<span> | ||
<button | ||
id="copy-binder-link" | ||
title="Copy binder link to clipboard" | ||
class="btn btn-default btn-sm navbar-btn" | ||
style="margin-right: 0; margin-left: 2px" | ||
data-url="{{ persistent_binder_url }}" | ||
onclick="copy_link_into_clipboard(this);" | ||
> | ||
Copy Binder link | ||
</button> | ||
</span> | ||
{% endif %} {% endblock header_buttons %} {% block script %} {% if | ||
persistent_binder_url %} | ||
<script type="text/javascript"> | ||
function copy_link_into_clipboard(b) { | ||
var $temp = $("<input>"); | ||
$(b).parent().append($temp); | ||
$temp.val($(b).data("url")).select(); | ||
document.execCommand("copy"); | ||
$temp.remove(); | ||
} | ||
</script> | ||
{% endif %} | ||
{% endblock %} | ||
{% endif %} {% endblock %} |
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,17 +1,13 @@ | ||
{% extends "templates/tree.html" %} | ||
|
||
{% block headercontainer %} | ||
<span class="flex-spacer"></span> | ||
{% endblock %} | ||
|
||
{% block header_buttons %} | ||
{{super()}} | ||
{% if shutdown_button %} | ||
<span id="shutdown_widget"> | ||
<button id="shutdown" class="btn btn-sm navbar-btn" | ||
title="{% trans %}Stop the Jupyter server{% endtrans %}"> | ||
{% trans %}Quit{% endtrans %} | ||
</button> | ||
</span> | ||
{% endif %} | ||
{% endblock header_buttons %} | ||
{% extends "templates/tree.html" %} {% block headercontainer %} | ||
<span class="flex-spacer"></span> | ||
{% endblock %} {% block header_buttons %} {{super()}} {% if shutdown_button %} | ||
<span id="shutdown_widget"> | ||
<button | ||
id="shutdown" | ||
class="btn btn-sm navbar-btn" | ||
title="{% trans %}Stop the Jupyter server{% endtrans %}" | ||
> | ||
{% trans %}Quit{% endtrans %} | ||
</button> | ||
</span> | ||
{% endif %} {% endblock header_buttons %} |
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 |
---|---|---|
|
@@ -42,4 +42,4 @@ spec: | |
name: config | ||
- mountPath: /www/data/ | ||
name: files | ||
{{- end }} | ||
{{- end }} |
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 |
---|---|---|
|
@@ -37,4 +37,4 @@ spec: | |
{{- range $host := .Values.static.ingress.hosts }} | ||
- {{ $host }} | ||
{{- end }} | ||
{{- end }} | ||
{{- end }} |
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 |
---|---|---|
|
@@ -16,4 +16,4 @@ spec: | |
app: static | ||
component: nginx | ||
release: {{ .Release.Name }} | ||
{{- end }} | ||
{{- end }} |