<?php include 'settings.php';
$fn = $_GET['fn']; $fn = htmlspecialchars($fn);
$ien = $_GET['ien']; $ien = htmlspecialchars($ien);
switch ($fn)
  {
  case "delimited":
    logit("app_ipldelimited");
    getit("localhost:8090/patch/delimited/" . $ien);
    break;

  default:
logit("app_ipl");
    echo "<!DOCTYPE html>\n";
    echo "<head>\n";
    echo "  <title>Iris / Gtm Vista Patch Compare </title>\n";
    echo "  <link rel=\"icon\" type=\"image/png\" href=\"favicon.png\">\n";
    echo "  <meta charset=\"utf-8\">\n";
    echo "  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n";
    echo "  <style>\n";
    echo "    a { color: black; }\n";
    echo "    body { font-size:14px; }\n";
    echo "  </style>\n";
    echo "</head>\n";
    echo "<p>Patches Installed on IRIS, not on GTM VISTA</p>\n";
    echo "<table>\n";
    getit("localhost:8090/patch/ipl");
    echo "</table>\n";
    echo "</body>\n";
    echo "</html>\n";
    break;
    }
?>