- Initial import of the mob, reorganizing dirs to match packaged version
[plcapi.git] / debugger / index.php
1 <?php
2 // $Id$
3   $query = '';
4   if (isset($_GET['run']))
5   {
6     $path = parse_url($_GET['run']);
7     if (isset($path['query']))
8       $query = '?'.$path['query'];
9   }
10 ?>
11 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
12     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
13 <html>
14 <head>
15 <title>XMLRPC Debugger</title>
16 </head>
17 <frameset rows="360,*">
18   <frame name="frmcontroller" src="controller.php<?php echo htmlspecialchars($query); ?>" marginwidth="0" marginheight="0" frameborder="0" />
19   <frame name="frmaction" src="action.php" marginwidth="0" marginheight="0" frameborder="0" />
20 </frameset>
21 </html>