javascript-solid-server 0.0.69 → 0.0.70

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.
@@ -219,7 +219,8 @@
219
219
  "Bash(__NEW_LINE__ echo \"\")",
220
220
  "WebFetch(domain:webfinger.net)",
221
221
  "Bash(npm update:*)",
222
- "Bash(timeout 8 node:*)"
222
+ "Bash(timeout 8 node:*)",
223
+ "Bash(gh pr view:*)"
223
224
  ]
224
225
  }
225
226
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "javascript-solid-server",
3
- "version": "0.0.69",
3
+ "version": "0.0.70",
4
4
  "description": "A minimal, fast Solid server",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -315,12 +315,12 @@ function getErrorPage(statusCode, isAuthenticated, request) {
315
315
  <p class="subtitle">${subtitle}</p>
316
316
 
317
317
  <div class="actions">
318
- ${is401 ? `<a href="${baseUrl}/.account/login/password" class="btn btn-primary">
319
- Sign In
320
- </a>` : ''}
321
- <a href="${baseUrl}/" class="btn btn-secondary">
318
+ <a href="${baseUrl}/" class="btn btn-primary">
322
319
  Go to Homepage
323
320
  </a>
321
+ ${is401 ? `<a href="${baseUrl}/idp/register" class="btn btn-secondary">
322
+ Create Account
323
+ </a>` : ''}
324
324
  </div>
325
325
 
326
326
  <div class="divider"><span>What is this?</span></div>
@@ -330,7 +330,7 @@ function getErrorPage(statusCode, isAuthenticated, request) {
330
330
  <p>
331
331
  This is a <strong>Solid Pod</strong> — a personal data store where you control your own data.
332
332
  Resources can be private, shared with specific people, or public.
333
- ${is401 ? 'Sign in with your WebID to access protected content.' : 'Ask the owner to grant you access.'}
333
+ ${is401 ? "To access protected content, you'll need to sign in using a Solid app (like a data browser) with your WebID." : 'Ask the owner to grant you access.'}
334
334
  </p>
335
335
  </div>
336
336