Skip to content

Commit

Permalink
Addressed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lbussy committed Jan 20, 2019
1 parent dd038aa commit 07bfbc5
Show file tree
Hide file tree
Showing 3 changed files with 87 additions and 45 deletions.
44 changes: 29 additions & 15 deletions beer-panel.php
Original file line number Diff line number Diff line change
@@ -1,27 +1,41 @@
<?php
/* Copyright 2012 BrewPi/Elco Jacobs.
* This file is part of BrewPi.
* BrewPi is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* BrewPi is distributed in the hope that it will be useful,
/* Copyright (C) 2018 Lee C. Bussy (@LBussy)
*
* This file is part of LBussy's BrewPi WWW Remix (BrewPi-WWW-RMX).
*
* BrewPi WWW RMX is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* BrewPi WWW RMX is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with BrewPi. If not, see <http://www.gnu.org/licenses/>.
*/
* along with BrewPi WWW RMX. If not, see <https://www.gnu.org/licenses/>.
*
* These scripts were originally a part of brewpi-www, a part of
* the BrewPi project. Legacy support (for the very popular Arduino
* controller) seems to have been discontinued in favor of new hardware.
*
* All credit for the original brewpi-www goes to @elcojacobs,
* @lukepower, @m-mcgowan, @vanosg, @GregAtkinson and I'm sure
* many more contributors around the world. My apologies if I have
* missed anyone; those were the names listed as contributors on the
* Legacy branch.
*
* See: 'original-license.md' for notes about the original project's
* license and credits. */

?>
<div id="top-bar" class="ui-widget ui-widget-header ui-corner-all">
<div id="lcd" class="lcddisplay">
<span class="lcd-text">
<span class="lcd-line" id="lcd-line-0">Live LCD waiting</span>
<span class="lcd-line" id="lcd-line-1">for update from</span>
<span class="lcd-line" id="lcd-line-2">script...</span>
<span class="lcd-line" id="lcd-line-2">script.</span>
<span class="lcd-line" id="lcd-line-3"></span>
</span>
</div>
Expand Down
43 changes: 28 additions & 15 deletions index.php
Original file line number Diff line number Diff line change
@@ -1,20 +1,33 @@
<?php
/* Copyright 2012 BrewPi/Elco Jacobs.
* This file is part of BrewPi.
* BrewPi is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* BrewPi is distributed in the hope that it will be useful,
/* Copyright (C) 2018 Lee C. Bussy (@LBussy)
*
* This file is part of LBussy's BrewPi WWW Remix (BrewPi-WWW-RMX).
*
* BrewPi WWW RMX is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* BrewPi WWW RMX is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with BrewPi. If not, see <http://www.gnu.org/licenses/>.
*/
* along with BrewPi WWW RMX. If not, see <https://www.gnu.org/licenses/>.
*
* These scripts were originally a part of brewpi-www, a part of
* the BrewPi project. Legacy support (for the very popular Arduino
* controller) seems to have been discontinued in favor of new hardware.
*
* All credit for the original brewpi-www goes to @elcojacobs,
* @lukepower, @m-mcgowan, @vanosg, @GregAtkinson and I'm sure
* many more contributors around the world. My apologies if I have
* missed anyone; those were the names listed as contributors on the
* Legacy branch.
*
* See: 'original-license.md' for notes about the original project's
* license and credits. */

// load default settings from file
$defaultSettings = file_get_contents('defaultSettings.json');
Expand Down Expand Up @@ -63,7 +76,7 @@ function prepareJSON($input) {
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>BrewPi reporting for duty!</title>
<title>BrewPi Legacy Remix</title>
<link type="text/css" href="css/redmond/jquery-ui-1.10.3.custom.css" rel="stylesheet" />
<link type="text/css" href="css/style.css" rel="stylesheet"/>
<link rel="apple-touch-icon" href="touch-icon-iphone.png">
Expand Down
45 changes: 30 additions & 15 deletions js/maintenance-panel.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,32 @@
/* Copyright 2012 BrewPi/Elco Jacobs.
* This file is part of BrewPi.
* BrewPi is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* BrewPi is distributed in the hope that it will be useful,
/* Copyright (C) 2018 Lee C. Bussy (@LBussy)
*
* This file is part of LBussy's BrewPi WWW Remix (BrewPi-WWW-RMX).
*
* BrewPi WWW RMX is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* BrewPi WWW RMX is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with BrewPi. If not, see <http://www.gnu.org/licenses/>.
*/

* along with BrewPi WWW RMX. If not, see <https://www.gnu.org/licenses/>.
*
* These scripts were originally a part of brewpi-www, a part of
* the BrewPi project. Legacy support (for the very popular Arduino
* controller) seems to have been discontinued in favor of new hardware.
*
* All credit for the original brewpi-www goes to @elcojacobs,
* @lukepower, @m-mcgowan, @vanosg, @GregAtkinson and I'm sure
* many more contributors around the world. My apologies if I have
* missed anyone; those were the names listed as contributors on the
* Legacy branch.
*
* See: 'original-license.md' for notes about the original project's
* license and credits. */
/* jshint jquery:true */
/* global reloadControlConstantsFromArduino, reloadControlSettingsFromArduino, reloadControlVariablesFromArduino,
reloadControlSettings, reloadControlConstants, reloadControlVariables,
Expand All @@ -26,6 +38,9 @@ var controllerVersion;
$(document).ready(function(){
"use strict";
updateControllerVersion();
reloadControlConstantsFromArduino();
reloadControlSettingsFromArduino();
reloadControlVariablesFromArduino();
//Maintenance Panel
$('#maintenance-panel')
.dialog({
Expand Down

0 comments on commit 07bfbc5

Please sign in to comment.