$m) $out[] = sprintf("%-16s %-16s %-16s",$id,@$m['cmd'],@$m['seq']); return implode("\n",$out); } $HandleActions['ruleset'] = 'HandleRuleset'; function HandleRuleset($pagename) { header("Content-type: text/plain"); print Ruleset(); } function DisplayStopWatch() { global $StopWatch; StopWatch('now'); $out[] = "
";
  foreach((array)$StopWatch as $k => $x) {
    $out[] = "$x\n";
  }
  if (is_array($StopWatch)) array_pop($StopWatch);
  $out[] = '
'; return implode('',$out); } $FmtP['/\\$StopWatch/e'] = 'DisplayStopWatch()';