javascript-solid-server 0.0.167 → 0.0.169

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "javascript-solid-server",
3
- "version": "0.0.167",
3
+ "version": "0.0.169",
4
4
  "description": "A minimal, fast Solid server",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -362,7 +362,7 @@ function getErrorPage(statusCode, isAuthenticated, request) {
362
362
  <p class="subtitle">${subtitle}</p>
363
363
 
364
364
  <div class="actions">
365
- ${is401 ? `<a href="https://solidos.solidcommunity.net/?uri=${encodeURIComponent(baseUrl + request.url)}" class="btn btn-primary">
365
+ ${is401 ? `<a href="https://solidos.org/docs/browser/?uri=${encodeURIComponent(baseUrl + request.url)}" class="btn btn-primary">
366
366
  Open in Data Browser
367
367
  </a>` : ''}
368
368
  <a href="${baseUrl}/" class="btn btn-secondary">
package/src/idp/views.js CHANGED
@@ -620,7 +620,7 @@ export function landingPage(ctx = {}) {
620
620
  : '<a href="/idp/register" class="btn btn-primary" style="text-decoration: none;">Create Account</a>'}
621
621
 
622
622
  <div class="signin-note">
623
- <strong>${singleUser ? 'Sign in' : 'Already have an account?'}</strong> ${singleUser ? 'from' : 'Sign in from'} a Solid app — for example, <a href="https://solid-apps.github.io/pilot/" target="_blank" rel="noopener">pilot</a> is a minimal console you can open right now. Point it at this server and click Sign In.
623
+ <strong>${singleUser ? 'Sign in' : 'Already have an account?'}</strong> ${singleUser ? 'from' : 'Sign in from'} a Solid app — for example, <a href="https://solid-apps.github.io/pilot/" target="_blank" rel="noopener">pilot</a> is a minimal console you can open right now. Point it at this server and click Sign In. Or <a href="https://solidproject.org/apps" target="_blank" rel="noopener">browse other Solid apps</a>.
624
624
  </div>
625
625
 
626
626
  ${issuer ? `<div class="issuer">Issuer: ${escapeHtml(issuer.replace(/\/$/, ''))}</div>` : ''}