GUAC-672: Add "telnet" to list of known protocols. Associate terminal icon with telnet.

This commit is contained in:
Michael Jumper
2014-05-07 15:58:21 -07:00
parent 2650e9b964
commit 84ac5cad99
2 changed files with 3 additions and 2 deletions

View File

@@ -69,7 +69,7 @@ public class List extends AuthenticatingHttpServlet {
* Array of all known protocol names.
*/
private static final String[] KNOWN_PROTOCOLS = new String[]{
"vnc", "rdp", "ssh"};
"vnc", "rdp", "ssh", "telnet"};
/**
* Parses the given XML file, returning the parsed ProtocolInfo.

View File

@@ -422,7 +422,8 @@ div.section {
opacity: 0.5;
}
.protocol .icon.ssh {
.protocol .icon.ssh,
.protocol .icon.telnet {
background-image: url('../images/protocol-icons/guac-text.png');
}