view show.php @ 1065:511147c1e119

Move some of the show.php javascript code to show.js.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 24 Jan 2017 13:13:48 +0200
parents f188caaedf0f
children 5f92fa5e683a
line wrap: on
line source

<?
//
// FAPWeb - Simple Web-based Demoparty Management System
// Party information display system
// (C) Copyright 2012-2015 Tecnic Software productions (TNSP)
//
require_once "mconfig.inc.php";
require_once "msite.inc.php";
require_once "msession.inc.php";
require_once "majax.inc.php";

$pageCSS = "css/show.css";

stSetupCacheControl();

cmPrintPageHeader("PARTY INFORMATION DISPLAY SYSTEM", "", FALSE);
stCommonAJAX("showajax.php", "show.php");
?>

<noscript>
  <div class="notice">
    <h1>Javascript required</h1>
    <p>
    The compo system page requires Javascript to be enabled for the AJAX functionality.
    <br />
    <a href="#">Please enable Javascript and reload this page</a>.
    </p>
  </div>
</noscript>

<div class="showView" id="mainView"></div>

<script type="text/javascript" src="show.js"></script>
<?
cmPrintPageFooter(FALSE);
?>