Fix links in UI to point to new website (#1249)

* Fix links in UI to point to new website

* Typo

* Update README.md

* Update success.page.html

* Update app.component.ts

* Update backup-drives.component.html

* Update lan.page.html
This commit is contained in:
kn0wmad
2022-02-25 17:07:33 -07:00
committed by GitHub
parent b326ae5ea8
commit 6ef7da9732
12 changed files with 30 additions and 30 deletions

View File

@@ -31,7 +31,7 @@
backup, since it works with all Embassy hardware configurations.
View the
<a
href="https://docs.start9.com/user-manual/general/backups.html#lan-backups"
href="https://start9.com/latest/user-manual/backups/backup-restore"
target="_blank"
noreferrer
>instructions</a
@@ -59,7 +59,7 @@
lead to power failure and data corruption. To recover from a
physical drive, please follow the
<a
href="https://docs.start9.com/user-manual/general/backups.html#physical-drive"
href="https://start9.com/latest/user-manual/backups/backup-restore"
target="_blank"
noreferrer
>instructions</a

View File

@@ -31,7 +31,7 @@
<div class="ion-padding ion-text-start">
<p>
To use your Embassy over Tor, visit its unique Tor address from any Tor-enabled browser.
For a list of recommended browsers, click <a href="https://docs.start9.com/user-manual/connecting.html" target="_blank" rel="noreferrer"><b>here</b></a>.
For a list of recommended browsers, click <a href="https://start9.com/latest/user-manual/connecting" target="_blank" rel="noreferrer"><b>here</b></a>.
</p>
<br />
<p>Tor Address</p>
@@ -47,7 +47,7 @@
<div style="padding-bottom: 24px; border-bottom: solid 1px;"></div>
<br />
</div>
<!-- LAN Instructions -->
<div (click)="toggleLan()" class="toggle-label">
<h2>LAN Instructions (Slightly Advanced):</h2>
@@ -76,12 +76,12 @@
</ol>
<p>
For step-by-step instructions, click
<a href="https://docs.start9.com/user-manual/general/lan-setup.html" target="_blank" rel="noreferrer"><b>here</b></a>.
<a href="https://start9.com/latest/user-manual/connecting/connecting-lan" target="_blank" rel="noreferrer"><b>here</b></a>.
</p>
<p>
<b>Please note, once setup is complete, the embassy.local address will no longer connect to your Embassy.</b>
</p>
</p>
<ion-button style="margin-top: 24px; margin-bottom: 24px;" color="light" (click)="installCert()">
Download Root CA
@@ -126,11 +126,11 @@
To use your Embassy over Tor, visit its unique Tor address from any Tor-enabled browser.
</p>
<p>
For a list of recommended browsers, click <a href="https://docs.start9.com/user-manual/connecting.html" target="_blank" rel="noreferrer"><b>here</b></a>.
For a list of recommended browsers, click <a href="https://start9.com/latest/user-manual/connecting" target="_blank" rel="noreferrer"><b>here</b></a>.
</p>
<p><b>Tor Address: </b><code id="tor-addr"></code></p>
</section>
<section style="padding: 16px; border: solid 1px; border-top: none;">
<h2>LAN Info</h2>
<p>To use your Embassy locally, you must:</p>
@@ -141,9 +141,9 @@
</ol>
<p>
For step-by-step instructions, click
<a href="https://docs.start9.com/user-manual/general/lan-setup.html" target="_blank" rel="noreferrer"><b>here</b></a>.
<a href="https://start9.com/latest/user-manual/connecting/connecting-lan" target="_blank" rel="noreferrer"><b>here</b></a>.
</p>
<div style="margin: 42px 0;">
<a
id="cert"
@@ -160,7 +160,7 @@
Download Root CA
</a>
</div>
<p><b>LAN Address: </b><code id="lan-addr"></code></p>
</section>
</div>

View File

@@ -332,12 +332,12 @@ export class AppComponent {
case ConnectionFailure.Tor:
message = 'Browser unable to connect over Tor.'
link =
'https://docs.start9.com/support/FAQ/troubleshooting.html#tor-failure'
'https://start9.com/latest/support/common-issues'
break
case ConnectionFailure.Lan:
message = 'Embassy not found on Local Area Network.'
link =
'https://docs.start9.com/support/FAQ/troubleshooting.html#lan-failure'
'https://start9.com/latest/support/common-issues'
break
}
await this.presentToastOffline(message, link)

View File

@@ -25,7 +25,7 @@
LAN Shared Folders are the recommended way to create Embassy
backups. View the
<a
href="https://docs.start9.com/user-manual/general/backups.html#lan-backups"
href="https://start9.com/latest/user-manual/backups/cifs-setup"
target="_blank"
noreferrer
>Instructions</a
@@ -99,7 +99,7 @@
<h2>
To backup to a physical drive, please follow the
<a
href="https://docs.start9.com/user-manual/general/backups.html#physical-drive"
href="https://start9.com/latest/user-manual/backups/backups-create/#backup-using-a-physical-drive"
target="_blank"
noreferrer
>instructions</a

View File

@@ -19,7 +19,7 @@
<li>Be connected to the same Local Area Network (LAN) as your Embassy.</li>
<li>Download and trust your Embassy's SSL Certificate Authority (below).</li>
</ol>
View the full <a href="https://docs.start9.com/user-manual/general/lan-setup" target="_blank" rel="noreferrer">instructions</a>.
View the full <a href="https://start9.com/latest/user-manual/connecting/connecting-lan" target="_blank" rel="noreferrer">instructions</a>.
</h2>
<ng-container *ngIf="lanDisabled">
<br />
@@ -40,4 +40,4 @@
<!-- hidden element for downloading cert -->
<a id="install-cert" href="/public/eos/local.crt" download="Embassy Local CA.crt"></a>
</ion-content>
</ion-content>

View File

@@ -363,7 +363,7 @@ export class ServerShowPage {
icon: 'map-outline',
action: () =>
window.open(
'https://docs.start9.com/user-manual/',
'https://start9.com/latest/user-manual/',
'_blank',
'noreferrer',
),
@@ -376,7 +376,7 @@ export class ServerShowPage {
icon: 'chatbubbles-outline',
action: () =>
window.open(
'https://docs.start9.com/support/contact/',
'https://start9.com/latest/support/contact/',
'_blank',
'noreferrer',
),

View File

@@ -13,7 +13,7 @@ import { GenericInputComponent, GenericInputOptions } from 'src/app/modals/gener
export class SSHKeysPage {
loading = true
sshKeys: SSHKey[] = []
readonly docsUrl = 'https://docs.start9.com/user-manual/general/developer-options/ssh-setup.html'
readonly docsUrl = 'https://start9.com/latest/user-manual/ssh'
constructor (
private readonly loadingCtrl: LoadingController,

View File

@@ -23,7 +23,7 @@
Ethernet cable and move the device anywhere you want. Embassy will
automatically connect to available networks.
<a
href="https://docs.start9.com/user-manual/general/wifi.html"
href="https://start9.com/latest/user-manual/wifi"
target="_blank"
rel="noreferrer"
>View instructions</a

View File

@@ -50,7 +50,7 @@ export function getErrorMessage(
if (!message) {
message = 'Unknown Error.'
link = 'https://docs.start9.com/support/FAQ/index.html'
link = 'https://start9.com/latest/support/FAQ'
}
if (link) {