Remove $id$ tag now that we are on git; update copyright notice to year 2013
[plcapi.git] / debugger / index.php
1 <?php
2   $query = '';
3   if (isset($_GET['run']))
4   {
5     $path = parse_url($_GET['run']);
6     if (isset($path['query']))
7       $query = '?'.$path['query'];
8   }
9 ?>
10 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
11     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
12 <html>
13 <head>
14 <title>XMLRPC Debugger</title>
15 </head>
16 <frameset rows="360,*">
17   <frame name="frmcontroller" src="controller.php<?php echo htmlspecialchars($query); ?>" marginwidth="0" marginheight="0" frameborder="0" />
18   <frame name="frmaction" src="action.php" marginwidth="0" marginheight="0" frameborder="0" />
19 </frameset>
20 </html>