From 9dcef5688ff2a519cdf20fea293d9e7c7c4c47f0 Mon Sep 17 00:00:00 2001 From: KLuka Date: Fri, 24 Jul 2015 16:02:14 +0200 Subject: [PATCH] Added Github url in context menu "About..." popup --- shellinabox/shell_in_a_box.jspp | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/shellinabox/shell_in_a_box.jspp b/shellinabox/shell_in_a_box.jspp index 8f9c5aa..4e449cc 100644 --- a/shellinabox/shell_in_a_box.jspp +++ b/shellinabox/shell_in_a_box.jspp @@ -464,16 +464,17 @@ ShellInABox.prototype.messageReplay = function(type, data) { }; ShellInABox.prototype.about = function() { - alert("Shell In A Box version " + VERSION + - "\nCopyright 2008-2010 by Markus Gutschke\n" + - "For more information check http://shellinabox.com" + + alert("Shell In A Box " + VERSION + + "\n\n" + + "Copyright 2008-2015 by Markus Gutschke. For more information visit\n" + + "http://shellinabox.com or http://github.com/shellinabox/." + (typeof serverSupportsSSL != 'undefined' && serverSupportsSSL ? "\n\n" + - "This product includes software developed by the OpenSSL Project\n" + - "for use in the OpenSSL Toolkit. (http://www.openssl.org/)\n" + - "\n" + - "This product includes cryptographic software written by " + - "Eric Young\n(eay@cryptsoft.com)" : + "This product includes software developed by the OpenSSL Project for\n" + + "use in the OpenSSL Toolkit. (http://www.openssl.org/)" + + "\n\n" + + "This product includes cryptographic software written by Eric Young\n" + + "(eay@cryptsoft.com)" : "")); };