JSS — Command Reference
$start_time = microtime(true);
$root = "../data/jss/xml";
$xslDoc = new DOMDocument();
$xslDoc->load($root . “/commands.xsl”);
$xmlDoc = new DOMDocument();
$xmlDoc->load($root . “/commands.xml”);
$proc = new XSLTProcessor();
$proc->importStylesheet($xslDoc);
echo $proc->transformToXML($xmlDoc);
$end_time = microtime(true);
$total_time = $end_time – $start_time;
//echo “\n”;
?>
[...] also started writing documentation for the JSS commands. It is only partially completed but can still be helpful. Check out the JSS homepage for other [...]