Repository: guacamole-client Updated Branches: refs/heads/master 1710c31fc -> ff9f3ae7e
GUACAMOLE-565: Add terminal-type parameter for SSH and Telnet. Add the new terminal-type parameter to the protocol JSON files. Project: http://git-wip-us.apache.org/repos/asf/guacamole-client/repo Commit: http://git-wip-us.apache.org/repos/asf/guacamole-client/commit/ad7d3dde Tree: http://git-wip-us.apache.org/repos/asf/guacamole-client/tree/ad7d3dde Diff: http://git-wip-us.apache.org/repos/asf/guacamole-client/diff/ad7d3dde Branch: refs/heads/master Commit: ad7d3dde34cc1da720db08e5568ead9175ed4168 Parents: fed5133 Author: Jim Chen <[email protected]> Authored: Wed May 16 11:57:31 2018 -0400 Committer: Jim Chen <[email protected]> Committed: Sat May 26 23:52:24 2018 -0400 ---------------------------------------------------------------------- .../src/main/resources/org/apache/guacamole/protocols/ssh.json | 5 +++++ .../main/resources/org/apache/guacamole/protocols/telnet.json | 5 +++++ 2 files changed, 10 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/guacamole-client/blob/ad7d3dde/guacamole-ext/src/main/resources/org/apache/guacamole/protocols/ssh.json ---------------------------------------------------------------------- diff --git a/guacamole-ext/src/main/resources/org/apache/guacamole/protocols/ssh.json b/guacamole-ext/src/main/resources/org/apache/guacamole/protocols/ssh.json index 442214a..a0cb7d8 100644 --- a/guacamole-ext/src/main/resources/org/apache/guacamole/protocols/ssh.json +++ b/guacamole-ext/src/main/resources/org/apache/guacamole/protocols/ssh.json @@ -83,6 +83,11 @@ "name" : "backspace", "type" : "ENUM", "options" : [ "", "127", "8" ] + }, + { + "name" : "terminal-type", + "type" : "ENUM", + "options" : [ "xterm", "xterm-256color", "vt220", "vt100", "ansi", "linux" ] } ] }, http://git-wip-us.apache.org/repos/asf/guacamole-client/blob/ad7d3dde/guacamole-ext/src/main/resources/org/apache/guacamole/protocols/telnet.json ---------------------------------------------------------------------- diff --git a/guacamole-ext/src/main/resources/org/apache/guacamole/protocols/telnet.json b/guacamole-ext/src/main/resources/org/apache/guacamole/protocols/telnet.json index 5b960f8..5d60281 100644 --- a/guacamole-ext/src/main/resources/org/apache/guacamole/protocols/telnet.json +++ b/guacamole-ext/src/main/resources/org/apache/guacamole/protocols/telnet.json @@ -66,6 +66,11 @@ "name" : "backspace", "type" : "ENUM", "options" : [ "", "127", "8" ] + }, + { + "name" : "terminal-type", + "type" : "ENUM", + "options" : [ "xterm", "xterm-256color", "vt220", "vt100", "ansi", "linux" ] } ] },
