root/modules/branches/2.5/javassh/page.javassh.php

Revision 7524, 1.4 kB (checked in by p_lindheimer, 4 years ago)

Merged revisions 7411,7413,7415-7416,7419-7420,7423-7434,7438-7439,7441-7442,7444-7446,7458-7469 via svnmerge from
http://svn.freepbx.org/modules/branches/2.6

........

r7411 | mickecarlsson | 2009-01-07 11:07:27 -0800 (Wed, 07 Jan 2009) | 1 line


Closes #3439 fixes calltrace function for ringgroup with firstnotonphone or firstavailable modes. Thank you naftali5

........

r7442 | mickecarlsson | 2009-02-03 10:33:30 -0800 (Tue, 03 Feb 2009) | 1 line


Closes #3510 add missing echo in code. Thank you jsarrel

........

r7462 | p_lindheimer | 2009-02-17 13:07:28 -0800 (Tue, 17 Feb 2009) | 1 line


add webserver as acceptable AUTHTYPE so admin module does not complain

........

r7464 | mickecarlsson | 2009-03-01 11:03:55 -0800 (Sun, 01 Mar 2009) | 1 line


Closes #3557, fixes typo in code. Thank you zultron.

........

r7469 | mbrevda | 2009-03-07 14:15:25 -0800 (Sat, 07 Mar 2009) | 1 line


cosmetic and security settings updated; updated applet to latest version

........

  • Property svn:mime-type set to text/html
  • Property svn:eol-style set to native
Line 
1 <?php
2 /* $Id:$ */
3
4 // Wrapper code for opening a new window.
5 //
6 //This program is free software; you can redistribute it and/or
7 //modify it under the terms of version 2 of the GNU General Public
8 //License as published by the Free Software Foundation.
9 //
10 //This program is distributed in the hope that it will be useful,
11 //but WITHOUT ANY WARRANTY; without even the implied warranty of
12 //MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 //GNU General Public License for more details.
14
15
16
17 echo "<h2> "._("Java SSH")." </h2>";
18 echo _("If necessary re-enter the maint user and password. Once the applet has opened enter the IP address of your PBX.<br>");
19 echo _("You will then connect to the FreePBX server. You can then login as 'root' or 'asterisk', or whatever user you have created.");
20
21 ?>
22
23 <APPLET CODE="com.mindbright.application.MindTerm.class"
24           ARCHIVE="/admin/modules/javassh/mindterm.jar" WIDTH=0 HEIGHT=0>
25     <PARAM NAME="cabinets" VALUE="/admin/modules/javassh/mindterm.cab">
26     <PARAM NAME="sepframe" value="true">
27     <PARAM NAME="debug" value="false">
28     <PARAM NAME="" value="">
29     <PARAM NAME="bg-color" value="black">
30     <PARAM NAME="fg-color" value="white">
31     <PARAM NAME="cursor-color" value="white">
32     <PARAM NAME="menus" value="popN">
33     <PARAM NAME="exit-on-logout" value="true">
34     <PARAM NAME="allow-new-server" value="false">
35 </APPLET>
Note: See TracBrowser for help on using the browser.