www/import_ingredients.php

Mon, 18 May 2020 11:00:59 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Mon, 18 May 2020 11:00:59 +0200
changeset 679
48f8f3fce7c0
parent 311
f6fafccd8a6d
permissions
-rw-r--r--

Added reconnecting-websocket.js to automatic reconnect the websocket if the connection is lost. Usefull for mobile devices that go to sleep after a while. Changed mon_fermenters to use websockets instead of polling. Fixed wrong temperature color ranges on the fermenter monior. Increased the websocket receive buffer to 2048. In cannot overflow, but larger messages are chunked and the application does not handle these split messages. Needs termferm 0.9.9 or newer.

<?php
require_once($_SERVER['DOCUMENT_ROOT'].'/includes/global.inc.php');
if ($my_select == "fermentables" )
	page_header('Vergistbare ingredi&euml;nten import', 'import_ingredients');
else if ($my_select == "hops" )
	page_header('Hoppen import', 'import_ingredients');
else if ($my_select == "miscs" )
	page_header('Diverse ingredi&euml;nten import', 'import_ingredients');
else if ($my_select == "yeasts")
	page_header('Gisten import', 'import_ingredients');
else if ($my_select == "styles")
	page_header('Bierstijlen import', 'import_ingredients');
else
	page_header('Bummer', '');
?>

   <div id="MainPanel">
    <div style="float: left; margin-left: 240px; margin-top: 50px;">
<?php
     if ($my_select == "fermentables")
	echo '<div align="center">Vergistbare ingredi&euml;nten xml bestand upload.</div><br>' . PHP_EOL;
     else if ($my_select == "hops")
	echo '<div align="center">Hoppen xml bestand upload.</div><br>' . PHP_EOL;
     else if ($my_select == "miscs")
	echo '<div align="center">Diverse ingredi&euml;nten xml bestand upload.</div><br>' . PHP_EOL;
     else if ($my_select == "yeasts")
	echo '<div align="center">Gisten xml bestand upload.</div><br>' . PHP_EOL;
     else if ($my_select == "styles")
	echo '<div align="center">Bierstijlen xml bestand upload.</div><br>' . PHP_EOL;
?>
     <div id="eventsPanel"> </div>
     <div style="float: left; margin-top: 10px;" id="jqxFileUpload"> </div>
    </div>
   </div>

<?php
page_footer();
?>

mercurial