2012-01-04 07:18:26 +00:00
|
|
|
<?php
|
2015-10-31 19:16:35 +01:00
|
|
|
require_once 'include/global.inc';
|
2016-01-09 10:27:15 +01:00
|
|
|
|
2016-01-09 10:35:42 +01:00
|
|
|
$xmlfile = httpget('xmlfile');
|
2016-01-09 10:27:15 +01:00
|
|
|
|
2015-10-31 18:29:12 +01:00
|
|
|
siteheader('POL Scripting Reference');
|
2016-01-03 15:44:13 +01:00
|
|
|
if ($xmlfile && file_exists($xmlfile.'.xml')) // A better error processing here wouldn't hurt
|
|
|
|
|
xlstdocument('escript.xslt', $xmlfile.'.xml');
|
|
|
|
|
else
|
|
|
|
|
echo "<p style='text-align: center; color: #F00; padding:2em;'>Error: unknown module name.</p>";
|
|
|
|
|
|
2015-10-31 18:29:12 +01:00
|
|
|
sitefooter();
|