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

Contents of /misc/xenconsole/console.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1920 - (show annotations) (download)
Tue Jan 29 13:39:39 2013 UTC (11 years, 3 months ago) by torben
File size: 507 byte(s)
display vm name on console page
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
15 <h2><?php echo $name;?></h2><br>
16
17
18 <applet code="com/citrix/xenserver/console/Initialize.class"
19 archive="jar/XenServerConsole.jar"
20 width="800" height="600">
21 <PARAM NAME=SESSION VALUE="<?php echo $session;?>">
22 <PARAM NAME=URL VALUE="<?php echo $url;?>">
23 <PARAM NAME=USEURL VALUE="true">
24 </applet>

  ViewVC Help
Powered by ViewVC 1.1.20