j1-template 2022.4.0 → 2022.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 78d7b70f2625cb38a4303024648b75a6065785651dbdbc3b34d93551747ca09c
4
- data.tar.gz: f50b7c36b92e7a7befa15e1c377330b8371d9aff7c678044e507498bfb7fb715
3
+ metadata.gz: 2e07e5eb997a7a0078e71f6bd8efd0fd907e0cc59d887a8cfb8f153b38b9ca6b
4
+ data.tar.gz: cc7938b1eaf98b964aa829eb310c67cc420a3d9b336f0dcc55558e5217a64409
5
5
  SHA512:
6
- metadata.gz: fe3590b5508762043117af7a4e68d61e3c9eadbde627ab4d1bb436755b4dacfc4b8e037aa92112eb299ffd0e3734a72a61b01754564eacf8c4926d07757f24f4
7
- data.tar.gz: fbda39cbd894c5ac244002044fd31871f684aad817a865c9bcdc9bd154e1c020fbd27d43c3467c9c6adc1f89a80d7f3ff6026c248c3e303571aca8a23c595177
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 (messageTS.contains('Too many users') ||
1161
- messageTS.contains('Insufficent nodes') ||
1162
- messageTS.contains('ImagePullBackOff') ||
1163
- messageTS.contains('failed to connect')
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> is currently not available or is overloaded.
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 again.
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: failed');
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
- // getState()
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
@@ -1,3 +1,3 @@
1
1
  module J1
2
- VERSION = '2022.4.0'
2
+ VERSION = '2022.4.1'
3
3
  end
@@ -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.0'
56
+ gem 'j1-template', '~> 2022.4.1'
57
57
 
58
58
  # ------------------------------------------------------------------------------
59
59
  # PRODUCTION: Gem needed for the Jekyll and J1 prod environment
@@ -53,7 +53,7 @@ environment: development
53
53
  # ------------------------------------------------------------------------------
54
54
  # Sets the build version of J1 Template Gem
55
55
  #
56
- version: 2022.4.0
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.
@@ -369,6 +369,6 @@ end
369
369
 
370
370
  module Jekyll
371
371
  module J1LunrSearch
372
- VERSION = '2022.4.0'
372
+ VERSION = '2022.4.1'
373
373
  end
374
374
  end
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": true,
3
3
  "name": "j1",
4
- "version": "2022.4.0",
4
+ "version": "2022.4.1",
5
5
  "description": "J1 Template Starter Web",
6
6
  "homepage": "https://your.site",
7
7
  "author": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": true,
3
3
  "name": "utls",
4
- "version": "2022.4.0",
4
+ "version": "2022.4.1",
5
5
  "description": "J1 Template Utility Server",
6
6
  "homepage": "https://jekyll.one",
7
7
  "author": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": true,
3
3
  "name": "utls",
4
- "version": "2022.4.0",
4
+ "version": "2022.4.1",
5
5
  "description": "J1 Template Utility Server",
6
6
  "homepage": "https://jekyll.one",
7
7
  "author": {
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.0
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-18 00:00:00.000000000 Z
11
+ date: 2022-05-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll