[pve-devel] [PATCH xtermjs v2 2/4] add handlebars template

Dominik Csapak d.csapak at proxmox.com
Tue Jul 14 13:51:04 CEST 2020


for rust projects, we do not use Perl::Template, but handlebars,
so provide a separate template for that

Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
---
new in v2
 debian/rules              |  3 ++-
 src/www/index.html.hbs.in | 23 +++++++++++++++++++++++
 2 files changed, 25 insertions(+), 1 deletion(-)
 create mode 100644 src/www/index.html.hbs.in

diff --git a/debian/rules b/debian/rules
index 6263218..2b62edd 100755
--- a/debian/rules
+++ b/debian/rules
@@ -6,4 +6,5 @@
 override_dh_auto_build:
 	dh_auto_build
 	sed -e 's/@VERSION@/${VERSION}/' src/www/index.html.tpl.in > src/www/index.html.tpl
-	rm src/www/index.html.tpl.in
+	sed -e 's/@VERSION@/${VERSION}/' src/www/index.html.hbs.in > src/www/index.html.hbs
+	rm src/www/index.html.tpl.in src/www/index.html.hbs.in
diff --git a/src/www/index.html.hbs.in b/src/www/index.html.hbs.in
new file mode 100644
index 0000000..ecbea1b
--- /dev/null
+++ b/src/www/index.html.hbs.in
@@ -0,0 +1,23 @@
+<!doctype html>
+<html>
+    <head>
+	<title>{{ nodename }} - Proxmox Console</title>
+	<link rel="stylesheet" href="/xtermjs/xterm.css?version=@VERSION@" />
+	<link rel="stylesheet" href="/xtermjs/style.css?version=@VERSION@" />
+	<script src="/xtermjs/xterm.js?version=@VERSION@" ></script>
+	<script src="/xtermjs/xterm-addon-fit.js?version=@VERSION@" ></script>
+	<script src="/xtermjs/util.js?version=@VERSION@" ></script>
+    </head>
+    <body>
+	<div id="status_bar"></div>
+	<div id="wrap">
+	<div id="terminal-container"></div>
+	</div>
+	<script type="text/javascript">
+	    if (typeof(PVE) === 'undefined') PVE = {};
+	    PVE.UserName = '{{ UserName }}';
+	    PVE.CSRFPreventionToken = '{{ CSRFPreventionToken }}';
+	</script>
+	<script src="/xtermjs/main.js?version=@VERSION@" defer ></script>
+    </body>
+</html>
-- 
2.20.1






More information about the pve-devel mailing list