mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 05:07:41 +00:00
Updated license comment, changed VNCClient -> GuacamoleClient
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Guacamole - Pure JavaScript/HTML VNC Client
|
Guacamole - Clientless Remote Desktop
|
||||||
Copyright (C) 2010 Michael Jumper
|
Copyright (C) 2010 Michael Jumper
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
This program is free software: you can redistribute it and/or modify
|
||||||
@@ -20,55 +20,9 @@
|
|||||||
|
|
||||||
<Context antiJARLocking="true" path="/guacamole" docBase="/var/lib/guacamole/guacamole.war">
|
<Context antiJARLocking="true" path="/guacamole" docBase="/var/lib/guacamole/guacamole.war">
|
||||||
|
|
||||||
<!-- Change the lines below to match your VNC server -->
|
<!-- Change the lines below to match your Guacamole proxy -->
|
||||||
<Parameter name="host" value="localhost"/>
|
<Parameter name="hostname" value="localhost"/>
|
||||||
<Parameter name="port" value="5900"/>
|
<Parameter name="port" value="1234"/>
|
||||||
|
|
||||||
|
|
||||||
<!-- Password (VNC Authentication)
|
|
||||||
|
|
||||||
Uncomment and change the line below if your VNC server is
|
|
||||||
password protected. -->
|
|
||||||
|
|
||||||
<!--
|
|
||||||
<Parameter name="password" value="PASSWORD"/>
|
|
||||||
-->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bits-per-pixel
|
|
||||||
|
|
||||||
This parameter controls what color depth should be
|
|
||||||
requested from the VNC server.
|
|
||||||
|
|
||||||
Valid values are "8", "16", or "24". -->
|
|
||||||
|
|
||||||
<!--
|
|
||||||
<Parameter name="bpp" value="24"/>
|
|
||||||
-->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Output (to web client) bits-per-pixel.
|
|
||||||
|
|
||||||
This parameter controls what color depth will be used
|
|
||||||
in the images sent to the web-based client.
|
|
||||||
|
|
||||||
Valid values are "8" or "24". -->
|
|
||||||
|
|
||||||
<!--
|
|
||||||
<Parameter name="output-bpp" value="24"/>
|
|
||||||
-->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Swap red and blue components. Some VNC servers may not honor
|
|
||||||
the client's request for certain pixel formats, instead
|
|
||||||
returning RGB as BGR.
|
|
||||||
|
|
||||||
If colors look strange (blues look red or brown) when using
|
|
||||||
Guacamole, uncomment and set this parameter to true. -->
|
|
||||||
|
|
||||||
<!--
|
|
||||||
<Parameter name="swap-red-blue" value="false"/>
|
|
||||||
-->
|
|
||||||
|
|
||||||
<Realm className="org.apache.catalina.realm.MemoryRealm" pathname="conf/guacamole-users.xml"/>
|
<Realm className="org.apache.catalina.realm.MemoryRealm" pathname="conf/guacamole-users.xml"/>
|
||||||
</Context>
|
</Context>
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!--
|
<!--
|
||||||
Guacamole - Pure JavaScript/HTML VNC Client
|
Guacamole - Clientless Remote Desktop
|
||||||
Copyright (C) 2010 Michael Jumper
|
Copyright (C) 2010 Michael Jumper
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Guacamole - Pure JavaScript/HTML VNC Client
|
* Guacamole - Clientless Remote Desktop
|
||||||
* Copyright (C) 2010 Michael Jumper
|
* Copyright (C) 2010 Michael Jumper
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
<!DOCTYPE HTML>
|
<!DOCTYPE HTML>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Guacamole - Pure JavaScript/HTML VNC Client
|
Guacamole - Clientless Remote Desktop
|
||||||
Copyright (C) 2010 Michael Jumper
|
Copyright (C) 2010 Michael Jumper
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
This program is free software: you can redistribute it and/or modify
|
||||||
@@ -99,7 +99,7 @@
|
|||||||
window.onresize();
|
window.onresize();
|
||||||
|
|
||||||
// Instantiate client
|
// Instantiate client
|
||||||
var vncClient = new VNCClient(display);
|
var vncClient = new GuacamoleClient(display);
|
||||||
|
|
||||||
var state = document.getElementById("state");
|
var state = document.getElementById("state");
|
||||||
vncClient.setOnStateChangeHandler(function(clientState) {
|
vncClient.setOnStateChangeHandler(function(clientState) {
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Guacamole - Pure JavaScript/HTML VNC Client
|
* Guacamole - Clientless Remote Desktop
|
||||||
* Copyright (C) 2010 Michael Jumper
|
* Copyright (C) 2010 Michael Jumper
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
@@ -17,7 +17,7 @@
|
|||||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function VNCClient(display) {
|
function GuacamoleClient(display) {
|
||||||
|
|
||||||
var STATE_IDLE = 0;
|
var STATE_IDLE = 0;
|
||||||
var STATE_CONNECTING = 1;
|
var STATE_CONNECTING = 1;
|
||||||
@@ -445,7 +445,7 @@ function VNCClient(display) {
|
|||||||
},
|
},
|
||||||
|
|
||||||
"name": function(parameters) {
|
"name": function(parameters) {
|
||||||
document.title = "Guacamole (" + unescapeGuacamoleString(parameters[0]) + ")";
|
document.title = unescapeGuacamoleString(parameters[0]);
|
||||||
},
|
},
|
||||||
|
|
||||||
"clipboard": function(parameters) {
|
"clipboard": function(parameters) {
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Guacamole - Pure JavaScript/HTML VNC Client
|
* Guacamole - Clientless Remote Desktop
|
||||||
* Copyright (C) 2010 Michael Jumper
|
* Copyright (C) 2010 Michael Jumper
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Guacamole - Pure JavaScript/HTML VNC Client
|
* Guacamole - Clientless Remote Desktop
|
||||||
* Copyright (C) 2010 Michael Jumper
|
* Copyright (C) 2010 Michael Jumper
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Guacamole - Pure JavaScript/HTML VNC Client
|
* Guacamole - Clientless Remote Desktop
|
||||||
* Copyright (C) 2010 Michael Jumper
|
* Copyright (C) 2010 Michael Jumper
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Guacamole - Pure JavaScript/HTML VNC Client
|
* Guacamole - Clientless Remote Desktop
|
||||||
* Copyright (C) 2010 Michael Jumper
|
* Copyright (C) 2010 Michael Jumper
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Guacamole - Pure JavaScript/HTML VNC Client
|
* Guacamole - Clientless Remote Desktop
|
||||||
* Copyright (C) 2010 Michael Jumper
|
* Copyright (C) 2010 Michael Jumper
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Guacamole - Pure JavaScript/HTML VNC Client
|
* Guacamole - Clientless Remote Desktop
|
||||||
* Copyright (C) 2010 Michael Jumper
|
* Copyright (C) 2010 Michael Jumper
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Guacamole - Pure JavaScript/HTML VNC Client
|
* Guacamole - Clientless Remote Desktop
|
||||||
* Copyright (C) 2010 Michael Jumper
|
* Copyright (C) 2010 Michael Jumper
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Guacamole - Pure JavaScript/HTML VNC Client
|
Guacamole - Clientless Remote Desktop
|
||||||
Copyright (C) 2010 Michael Jumper
|
Copyright (C) 2010 Michael Jumper
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
Reference in New Issue
Block a user