/[projects]/misc/xenconsole/console.php
ViewVC logotype

Contents of /misc/xenconsole/console.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2014 - (show annotations) (download)
Wed Jul 17 17:47:49 2013 UTC (10 years, 10 months ago) by torben
File size: 654 byte(s)
use newew XenServerConsole.jar
1 <?php
2 include("config.php");
3
4 $key = $_GET["key"];
5 $session = $_GET["session"];
6 $url = $_GET["url"];
7 $name = $_GET["name"];
8
9 if ($key != $password) {
10 die("Invalid key");
11 }
12
13 ?>
14 <html>
15 <body>
16
17 <h2><?php echo $name;?></h2><br>
18
19 <center>
20 <table>
21 <tr>
22 <td>
23
24 <applet code="com/citrix/xenserver/console/Initialize.class"
25 archive="jar/XenServerConsole.jar"
26 width="800" height="600">
27 <PARAM NAME=SESSION VALUE="<?php echo $session;?>">
28 <PARAM NAME=URL VALUE="<?php echo $url;?>">
29 <PARAM NAME=USEURL VALUE="true">
30 </applet>
31
32 </applet>
33 </td>
34 </tr>
35 </table>
36 </center>
37 </body>
38 </html>
39

  ViewVC Help
Powered by ViewVC 1.1.20