<?php echo header("Content-type: text/xml"); ?>
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="layout.xsl"?>
<site>
<?php
	include "tools.xml";
	$lines = array();
	exec("cd /home/sweaglesw/cdev/grid-bug/web_games/; ls *.{gdl,kif}", $lines, $errcode);
	for ($i = 0; $i < count($lines); $i++) {
		echo "<game>" . $lines[$i] . "</game>\n";
	}
	?>
</site>
