j1-template 2022.4.0 → 2022.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/assets/themes/j1/adapter/js/nbinteract.js +10 -10
- data/lib/j1/version.rb +1 -1
- data/lib/starter_web/Gemfile +1 -1
- data/lib/starter_web/_config.yml +1 -1
- data/lib/starter_web/_data/modules/defaults/nbinteract.yml +5 -1
- data/lib/starter_web/_plugins/lunr_index.rb +1 -1
- data/lib/starter_web/package.json +1 -1
- data/lib/starter_web/utilsrv/_defaults/package.json +1 -1
- data/lib/starter_web/utilsrv/package.json +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2e07e5eb997a7a0078e71f6bd8efd0fd907e0cc59d887a8cfb8f153b38b9ca6b
|
|
4
|
+
data.tar.gz: cc7938b1eaf98b964aa829eb310c67cc420a3d9b336f0dcc55558e5217a64409
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8f58244f65fb65a5ad1bd4399cd01ed45c450842f167056409b63a473d07b259a64b8fd4fc8767b0c95f68a726d9f504102ba3fa7b65a4332467811de6d6adcd
|
|
7
|
+
data.tar.gz: 60ae440d39596a2887e254110379bd2525614c6612f30d7f7a8c1a6bac007f592cdf1d67f9184a1d0c20a84025c9407ec2567fab0650c649273e1acb3d2bb0a9
|
|
@@ -1157,17 +1157,17 @@ j1.adapter.nbinteract = (function (j1, window) {
|
|
|
1157
1157
|
if (message.type === 'command' && message.action === 'error') {
|
|
1158
1158
|
var messageTS;
|
|
1159
1159
|
|
|
1160
|
-
if (
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1160
|
+
if (message.text.includes('Too many users') ||
|
|
1161
|
+
message.text.includes('Insufficent nodes') ||
|
|
1162
|
+
message.text.includes('ImagePullBackOff') ||
|
|
1163
|
+
message.text.includes('failed to connect')
|
|
1164
1164
|
) {
|
|
1165
1165
|
var modaBodyText = `
|
|
1166
|
-
The <i>Binder Service</i>
|
|
1166
|
+
The <i>Binder Service</i> seems currently not available or is overloaded.
|
|
1167
1167
|
All interactive components on the page are <b>not</b> available.
|
|
1168
|
-
You can reload the page or re-open later
|
|
1168
|
+
You can reload the page now to re-connect or re-open it at a later time.
|
|
1169
1169
|
`;
|
|
1170
|
-
logger.error('\n', 'Binder access:
|
|
1170
|
+
logger.error('\n', 'Binder access failed: ' + message.text);
|
|
1171
1171
|
if ($(nbiModalTRInfo).is(':hidden')) {
|
|
1172
1172
|
document.getElementById('nbiModalTRInfoBody').innerHTML = modaBodyText;
|
|
1173
1173
|
$(nbiModalTRInfo).modal('show');
|
|
@@ -1262,16 +1262,16 @@ j1.adapter.nbinteract = (function (j1, window) {
|
|
|
1262
1262
|
}, // END getState
|
|
1263
1263
|
|
|
1264
1264
|
// -------------------------------------------------------------------------
|
|
1265
|
-
//
|
|
1265
|
+
// checkURL()
|
|
1266
1266
|
// Returns the current (processing) state of the module
|
|
1267
1267
|
// -------------------------------------------------------------------------
|
|
1268
1268
|
checkURL: function (uri, flags) {
|
|
1269
1269
|
_this.setState('process_checks');
|
|
1270
|
-
$.get(uri).done(function () {
|
|
1270
|
+
$.get(uri).done(function (e) {
|
|
1271
1271
|
_this.setState('finished_checks');
|
|
1272
1272
|
flags.checkURL = true;
|
|
1273
1273
|
return true;
|
|
1274
|
-
}).fail(function () {
|
|
1274
|
+
}).fail(function (e) {
|
|
1275
1275
|
_this.setState('finished_checks');
|
|
1276
1276
|
flags.checkURL = false;
|
|
1277
1277
|
});
|
data/lib/j1/version.rb
CHANGED
data/lib/starter_web/Gemfile
CHANGED
|
@@ -53,7 +53,7 @@ gem 'jekyll', '~> 4.2'
|
|
|
53
53
|
|
|
54
54
|
# Theme Rubies, default: J1 Template (NOT used for the development system)
|
|
55
55
|
#
|
|
56
|
-
gem 'j1-template', '~> 2022.4.
|
|
56
|
+
gem 'j1-template', '~> 2022.4.1'
|
|
57
57
|
|
|
58
58
|
# ------------------------------------------------------------------------------
|
|
59
59
|
# PRODUCTION: Gem needed for the Jekyll and J1 prod environment
|
data/lib/starter_web/_config.yml
CHANGED
|
@@ -53,7 +53,7 @@ environment: development
|
|
|
53
53
|
# ------------------------------------------------------------------------------
|
|
54
54
|
# Sets the build version of J1 Template Gem
|
|
55
55
|
#
|
|
56
|
-
version: 2022.4.
|
|
56
|
+
version: 2022.4.1
|
|
57
57
|
|
|
58
58
|
# version
|
|
59
59
|
# ------------------------------------------------------------------------------
|
|
@@ -74,6 +74,10 @@ defaults:
|
|
|
74
74
|
# values: URL
|
|
75
75
|
# default: https://mybinder.org
|
|
76
76
|
#
|
|
77
|
+
# NOTE: DIRECT access to (GESIS) 'https://notebooks.gesis.org/binder/'
|
|
78
|
+
# is restricted to private access (isTrusted == true). Registration at
|
|
79
|
+
# GESIS is required.
|
|
80
|
+
#
|
|
77
81
|
# ----------------------------------------------------------------------------
|
|
78
82
|
#
|
|
79
83
|
# provider
|
|
@@ -221,7 +225,7 @@ defaults:
|
|
|
221
225
|
<li>
|
|
222
226
|
<code>Analysis</code> For translations, your consent on
|
|
223
227
|
<b>Analysis</b> with your <b>Privacy Settings</b> is required.
|
|
224
|
-
</li>
|
|
228
|
+
</li>
|
|
225
229
|
<li>
|
|
226
230
|
<code>Personalization</code> For processing textbooks, your consent on
|
|
227
231
|
<b>Personalization</b> with your <b>Privacy Settings</b> (Cookie Settings) is required.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: j1-template
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2022.4.
|
|
4
|
+
version: 2022.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- juergen_jekyll_one
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-05-
|
|
11
|
+
date: 2022-05-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|