summaryrefslogtreecommitdiff
path: root/web/share/js/kvm
diff options
context:
space:
mode:
Diffstat (limited to 'web/share/js/kvm')
-rw-r--r--web/share/js/kvm/atx.js2
-rw-r--r--web/share/js/kvm/gpio.js2
-rw-r--r--web/share/js/kvm/hid.js2
-rw-r--r--web/share/js/kvm/keyboard.js4
-rw-r--r--web/share/js/kvm/main.js4
-rw-r--r--web/share/js/kvm/mouse.js4
-rw-r--r--web/share/js/kvm/msd.js4
-rw-r--r--web/share/js/kvm/recorder.js2
-rw-r--r--web/share/js/kvm/session.js8
-rw-r--r--web/share/js/kvm/stream.js2
10 files changed, 17 insertions, 17 deletions
diff --git a/web/share/js/kvm/atx.js b/web/share/js/kvm/atx.js
index b0978b2c..3c0bf6c0 100644
--- a/web/share/js/kvm/atx.js
+++ b/web/share/js/kvm/atx.js
@@ -1,6 +1,6 @@
/*****************************************************************************
# #
-# KVMD - The main Pi-KVM daemon. #
+# KVMD - The main PiKVM daemon. #
# #
# Copyright (C) 2018-2021 Maxim Devaev <[email protected]> #
# #
diff --git a/web/share/js/kvm/gpio.js b/web/share/js/kvm/gpio.js
index e1c93553..85f6070b 100644
--- a/web/share/js/kvm/gpio.js
+++ b/web/share/js/kvm/gpio.js
@@ -1,6 +1,6 @@
/*****************************************************************************
# #
-# KVMD - The main Pi-KVM daemon. #
+# KVMD - The main PiKVM daemon. #
# #
# Copyright (C) 2018-2021 Maxim Devaev <[email protected]> #
# #
diff --git a/web/share/js/kvm/hid.js b/web/share/js/kvm/hid.js
index bf508e0b..c53c039c 100644
--- a/web/share/js/kvm/hid.js
+++ b/web/share/js/kvm/hid.js
@@ -1,6 +1,6 @@
/*****************************************************************************
# #
-# KVMD - The main Pi-KVM daemon. #
+# KVMD - The main PiKVM daemon. #
# #
# Copyright (C) 2018-2021 Maxim Devaev <[email protected]> #
# #
diff --git a/web/share/js/kvm/keyboard.js b/web/share/js/kvm/keyboard.js
index 7c632d40..49e9c76c 100644
--- a/web/share/js/kvm/keyboard.js
+++ b/web/share/js/kvm/keyboard.js
@@ -1,6 +1,6 @@
/*****************************************************************************
# #
-# KVMD - The main Pi-KVM daemon. #
+# KVMD - The main PiKVM daemon. #
# #
# Copyright (C) 2018-2021 Maxim Devaev <[email protected]> #
# #
@@ -123,7 +123,7 @@ export function Keyboard(__recordWsEvent) {
}
} else {
if (is_captured) {
- title = "Keyboard captured, Pi-KVM offline";
+ title = "Keyboard captured, PiKVM offline";
}
}
$("hid-keyboard-led").className = led;
diff --git a/web/share/js/kvm/main.js b/web/share/js/kvm/main.js
index 8ab47b2c..4c4b662b 100644
--- a/web/share/js/kvm/main.js
+++ b/web/share/js/kvm/main.js
@@ -1,6 +1,6 @@
/*****************************************************************************
# #
-# KVMD - The main Pi-KVM daemon. #
+# KVMD - The main PiKVM daemon. #
# #
# Copyright (C) 2018-2021 Maxim Devaev <[email protected]> #
# #
@@ -33,7 +33,7 @@ import {Session} from "./session.js";
export function main() {
if (checkBrowser()) {
window.onbeforeunload = function(event) {
- let text = "Are you sure you want to close Pi-KVM session?";
+ let text = "Are you sure you want to close PiKVM session?";
event.returnValue = text;
return text;
};
diff --git a/web/share/js/kvm/mouse.js b/web/share/js/kvm/mouse.js
index 1c33e4c0..7a0a50f3 100644
--- a/web/share/js/kvm/mouse.js
+++ b/web/share/js/kvm/mouse.js
@@ -1,6 +1,6 @@
/*****************************************************************************
# #
-# KVMD - The main Pi-KVM daemon. #
+# KVMD - The main PiKVM daemon. #
# #
# Copyright (C) 2018-2021 Maxim Devaev <[email protected]> #
# #
@@ -142,7 +142,7 @@ export function Mouse(__getResolution, __recordWsEvent) {
}
} else {
if (is_captured) {
- title = "Mouse captured, Pi-KVM offline";
+ title = "Mouse captured, PiKVM offline";
}
}
$("hid-mouse-led").className = led;
diff --git a/web/share/js/kvm/msd.js b/web/share/js/kvm/msd.js
index 93551c31..6999697f 100644
--- a/web/share/js/kvm/msd.js
+++ b/web/share/js/kvm/msd.js
@@ -1,6 +1,6 @@
/*****************************************************************************
# #
-# KVMD - The main Pi-KVM daemon. #
+# KVMD - The main PiKVM daemon. #
# #
# Copyright (C) 2018-2021 Maxim Devaev <[email protected]> #
# #
@@ -71,7 +71,7 @@ export function Msd() {
var __clickRemoveButton = function() {
let name = $("msd-image-selector").value;
- wm.confirm(`Are you sure you want to remove the image<br><b>${name}</b> from Pi-KVM?`).then(function(ok) {
+ wm.confirm(`Are you sure you want to remove the image<br><b>${name}</b> from PiKVM?`).then(function(ok) {
if (ok) {
let http = tools.makeRequest("POST", `/api/msd/remove?image=${name}`, function() {
if (http.readyState === 4) {
diff --git a/web/share/js/kvm/recorder.js b/web/share/js/kvm/recorder.js
index e3b40667..3de98056 100644
--- a/web/share/js/kvm/recorder.js
+++ b/web/share/js/kvm/recorder.js
@@ -1,6 +1,6 @@
/*****************************************************************************
# #
-# KVMD - The main Pi-KVM daemon. #
+# KVMD - The main PiKVM daemon. #
# #
# Copyright (C) 2018-2021 Maxim Devaev <[email protected]> #
# #
diff --git a/web/share/js/kvm/session.js b/web/share/js/kvm/session.js
index af328f56..061b235f 100644
--- a/web/share/js/kvm/session.js
+++ b/web/share/js/kvm/session.js
@@ -1,6 +1,6 @@
/*****************************************************************************
# #
-# KVMD - The main Pi-KVM daemon. #
+# KVMD - The main PiKVM daemon. #
# #
# Copyright (C) 2018-2021 Maxim Devaev <[email protected]> #
# #
@@ -59,7 +59,7 @@ export function Session() {
if (state !== null) {
let text = JSON.stringify(state, undefined, 4).replace(/ /g, "&nbsp;").replace(/\n/g, "<br>");
$("about-meta").innerHTML = `
- <span class="code-comment">// The Pi-KVM metadata.<br>
+ <span class="code-comment">// The PiKVM metadata.<br>
// You can get this JSON using handle <a target="_blank" href="/api/info?fields=meta">/api/info?fields=meta</a>.<br>
// In the standard configuration this data<br>
// is specified in the file /etc/kvmd/meta.yaml.</span><br>
@@ -68,10 +68,10 @@ export function Session() {
`;
if (state.server && state.server.host) {
$("kvmd-meta-server-host").innerHTML = `Server: ${state.server.host}`;
- document.title = `Pi-KVM Session: ${state.server.host}`;
+ document.title = `PiKVM Session: ${state.server.host}`;
} else {
$("kvmd-meta-server-host").innerHTML = "";
- document.title = "Pi-KVM Session";
+ document.title = "PiKVM Session";
}
// Don't use this option, it may be removed in any time
diff --git a/web/share/js/kvm/stream.js b/web/share/js/kvm/stream.js
index c56ca15c..14f5ecfc 100644
--- a/web/share/js/kvm/stream.js
+++ b/web/share/js/kvm/stream.js
@@ -1,6 +1,6 @@
/*****************************************************************************
# #
-# KVMD - The main Pi-KVM daemon. #
+# KVMD - The main PiKVM daemon. #
# #
# Copyright (C) 2018-2021 Maxim Devaev <[email protected]> #
# #