-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
executable file
·446 lines (383 loc) · 17.5 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
<?php
// // Log the visit.
// require_once $_SERVER['DOCUMENT_ROOT'] . "/visitor/log_visitor.php";
// $title = "Quick Assessment for Diet Formulation";
// log_visitor($title);
ini_set('display_errors', 1);
// //version
// require_once "/var/www/dairymgt-site/REDIRECTION/versionControl.php";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Quick Assessment for Diet Formulation</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Stylesheets -->
<link rel="stylesheet" type="text/css" media="screen" href="css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" media="screen"
href="/css/ui-lightness/jquery-ui-1.10.4.custom.min.css"/>
<link rel="stylesheet" type="text/css" media="screen" href="/css/ui.jqgrid.css"/>
<link rel="stylesheet" type="text/css" media="screen" href="css/datepicker.css"/>
<link rel="stylesheet" type="text/css" media="screen" href="css/style.css"/>
<!-- JavaScript -->
<script src="/js/jquery-1.9.1.min.js" type="text/javascript"></script>
<script src="/js/i18n/grid.locale-en.js" type="text/javascript"></script>
<script src="/js/jquery.jqGrid.min.js" type="text/javascript"></script>
<script src="/js/sylvester.js" type="text/javascript"></script>
<script src="/js/jquery.form.js" type="text/javascript"></script>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
<script src="js/bootstrap-multiselect.js" type="text/javascript"></script>
<script src="/js/jquery-ui-1.10.3.custom.min.js" type="text/javascript"></script>
<script src="js/bootstrap-datepicker.js" type="text/javascript"></script>
<script src="js/jquery.blockUI.js" type="text/javascript"></script>
<script src="js/feedval.js?v=1.2" type="text/javascript"></script>
<script src="js/feedval_calc.js?v=1.2" type="text/javascript"></script>
<script>
var toolDir = 0; //'<?php // print $dietFormulation?>';
var currentDir = window.location.pathname;
var toolURL = "http://"+window.location.hostname + toolDir;
console.log("Url is: " + currentDir);
console.log("feedval is: "+toolDir);
console.log("Feedval url should be: " + toolURL);
// if(currentDir.includes(toolDir)){
// console.log("Correct Version Found.");
// } else {
// console.log("Wrong Version. Redirecting to corrent version.");
// alert("You are viewing an older version of the tool. Redirecting to latest version of the tool.");
// window.setTimeout(function(){ window.location.href = toolURL; },1000);
// }
</script>
<script type="text/javascript">
function refreshfun() {
window.location.href = "http://dairymgt.info/oldtools/DietFormulation_v2/index.php?tab=tool";
}
</script>
<?php
if (isset($_GET['tab'])) {
$tab = $_GET['tab'];
?>
<script type="text/javascript">
jQuery(document).ready(function(e) {
$('.nav-tabs a[href="#tool"]').tab('show');
$('.nav-tabs a[href="#evaluator"]').click(function(){
alert( "Handler for .click() called." );
});
//
// $( "#tabeval" ).click(function(){
// alert( "Handler for .click() called." );
//// initCalc();
// });
console.log("It worked");
return false;
});
</script>
<?php
}
?>
<script type="text/javascript">
jQuery(document).ready(function(e){
$('.nav-tabs a[href="#evaluator"]').off().click(function(){
initCalc();
console.log("initing calc");
var toolState = "eval";
// $('.footer-nav a[href="#evaluator"]').parent().addClass('active');
// $('.footer-nav a[href="#tool"]').parent().removeClass('active');
// $('.footer-nav a[href="#overview"]').parent().removeClass('active');
});
});
</script>
</head>
<body>
<div class="container">
<div>
<h3 class="text-center">Quick Assessment for Diet Formulation</h3>
<h4 class="text-center">V. E. Cabrera and R. D. Shaver</h4>
</div>
<ul id="tabs" class="nav nav-tabs" data-tabs="tabs">
<li class="active"><a href="#overview" data-toggle="tab">Overview</a></li>
<li><a href="#tool" data-toggle="tab">Tool</a></li>
<!-- <li><a href="#evaluator" data-toggle="tab">Evaluator</a></li> -->
<!-- <li><a href="#help" data-toggle="tab">Help</a></li> -->
</ul>
<div class="tab-content" style="padding:0">
<div id="overview" class="tab-pane active" style="padding:26px">
<?php
include "overview.php";
?>
</div>
<div id="tool" class="tab-pane" style="padding:26px">
<div class="row bottom-buffer">
<button class="btn btn-default optimizer" id="optimizer"
type="button" > Optimizer
</button>
<button class="btn btn-default evaluator" id="evaluator"
type="button" > Evaluator
</button>
</div>
<div class="row bottom-buffer">
<fieldset class="col-sm-6">
<legend>Upload Data</legend>
<form id="upload_form" action="ajax.php" method="post"
enctype="multipart/form-data">
<div class="form-group">
<label for="download-template">
Template Spreadsheet:
</label><br>
<button class="btn btn-default download" id="download-template"
type="button"
title="Download this spreadsheet, enter your data and upload it back to perform an analysis.">
Download
</button>
</div>
<div class="form-group">
<label for="data_file">
Upload data as Excel file:
</label>
<input type="file" name="data_file" id="data_file"
title="Download the template spreadsheet from above, enter your data and upload it back to perform an analysis."/>
</div>
<button id="data_file_submit" name="data_file_submit" type="submit"
class="btn btn-default" title="Upload selected file">
Upload
</button>
</form>
</fieldset>
<fieldset id="dateAndNutri" class="col-sm-6">
<legend>Select Nutrients and Date</legend>
<form>
<div class="form-group">
<label for="nutrients">
Select nutrients:
</label><br>
<select multiple="multiple" title="Select from available nutrients"
id="nutrients" class="form-control">
</select>
</div>
<div class="form-group">
<label id="price_date" for="dateP">
Price date:
</label>
<div class="input-group date">
<input type="text" id="dateP" class="form-control"
title="Select the date for ingredient prices" readonly/>
<span class="input-group-addon">
<i class="glyphicon glyphicon-calendar"></i>
</span>
</div>
</div>
</form>
</fieldset>
</div>
<div class="row bottom-buffer">
<fieldset class="col-sm-12">
<legend>Perform Analysis</legend>
<div class="btn-group">
<button id="analyze" name="analyze" type="button" class="btn btn-default"
title="Perform analysis">
Least Cost Optimization
</button>
<button class="download btn btn-default" name="download" type="button"
title="Download results as Excel spreadsheet">
Download Results
</button>
</div>
<div class="btn-group">
<button id="convert-to-kgs" name="convert-to-kgs" type="button"
class="btn btn-default"
title="Convert the units of all ingredients to KG">
Convert amounts to kg
</button>
<button id="convert-prices-to-kgs" name="convert-prices-to-kgs" type="button"
class="btn btn-default"
title="Convert the prices of all ingredients to KG">
Convert prices to kg
</button>
<div class="btn-group">
<button onclick="refreshfun()" class="btn btn-default">Refresh</button>
</div>
</div>
<br/>
<br/>
<!-- <div class="checkbox">
<label for="remove_negative_price_nutrients">
<input name="remove_negative_price_nutrients"
id="remove_negative_price_nutrients" type="checkbox"
title="Check this box to automatically remove nutrients with negative predicted costs from the analysis."/>
Remove nutrients with negative predicted unit costs.
</label>
</div>-->
<table id="grid">
<tr>
</tr>
</table>
<!-- #grid -->
<div class="btn-group">
<button id="analyze-footer" name="analyze-footer" type="button" class="btn btn-default"
title="Perform analysis">
Least Cost Optimization
</button>
</div>
</fieldset>
</div>
<div class="row bottom-buffer">
<fieldset class="col-sm-12">
<legend>Calculation after Minimization:</legend>
<table id="prediction-accuracy">
<tr>
<td>
<b>Equation Result: </b>
</td>
<td>
<span id="eq_result"></span><br/>
</td>
<!--
<tr>
<td>
<b>Adjusted R<sup>2</sup> :</b>
</td>
<td>
<span id="adjusted_r_square"></span><br/>
</td>
</tr>
-->
</table>
</fieldset>
</div>
<div class="row">
<div class="col-sm-12">
<div class="panel panel-default">
<div class="panel-heading">
<h4>Credits</h4>
</div>
<div class="panel-body">
<p>
* General midwest prices for ingredients are obtained from the
following
sources:
</p>
<ol>
<li>
<a href="http://future.aae.wisc.edu/tab/feed.html#93"
target="_blank"
title="Understanding Dairy Markets">Understanding Dairy
Markets</a>
(compiled by <b>Brian
W. Gould</b>): All displayed prices except <i>Good Quality
Hay</i>
and <i>Poor Quality
Hay</i>.
</li>
<li>
<a href="http://fyi.uwex.edu/forage/h-m-r/"
title="Weekly Hay Market Demand and Price Report for the Upper Midwest"
target="_blank">Weekly
Hay Market Demand and Price Report for the Upper Midwest</a>
(compiled by <b>Ken
Barnett</b>): Prices for <i>Good Quality Hay</i> and <i>Poor
Quality
Hay</i>.
</li>
</ol>
<p>
<b>NOTE:</b> Prices are fetched on a daily basis from the above
sources. If
prices aren't
updated at the source, the last available prices are displayed.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="invalid-selection-modal" class="modal fade" role="dialog" aria-labelledby="modalLabel1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"
aria-hidden="true">×</button>
<h4 class="modal-title" id="modalLabel1">Please check your selection</h4>
</div>
<div class="modal-body">
<ol>
<li id="rup_rdp_cp">
If <b>CP</b> is selected, neither <b>RUP</b> nor <b>RDP</b> can be
selected.
</li>
<li id="rup_rdp">
Selecting only <b>RUP</b> and <b>RDP</b> is invalid as they together
constitute
<b>CP</b>.
Please select one more nutrient.
</li>
<li id="nut_all_zeroes">
Nutrient(s) <b><span> </span></b> is/are not present in any of the selected
ingredients. Please make sure they have a non-zero composition for at least
one of
the selected ingredients.
</li>
<li id="NumIngBigNumNut">
The Number of Selected Ingredients has to be bigger or equal than the Number
of Selected Nutrients.
</li>
<li id="SolNoConverge">
There is no feasible solution. Solution found is the closest to a feasible solution. Not all constraints are met. Select more ingredients of relax constraints to find a feasible solution.
</li>
<li id="SolNotOptimal">
No feasible solution. Pick more ingredients or relax constraints.
</li>
</ol>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div id="ajax-error-modal" class="modal fade" role="dialog" aria-labelledby="modalLabel2">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"
aria-hidden="true">×</button>
<h4 class="modal-title" id="modalLabel2">AJAX Error</h4>
</div>
<div class="modal-body">
<p>
<b>Response Text: </b>
<span id="response_text"> </span>
</p>
<p>
<b>Text Status: </b>
<span id="text_status"> </span>
</p>
<p>
<b>Error Thrown: </b>
<span id="error_thrown"> </span>
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<div id="request-in-progress" class="panel panel-info" style="display: none">
<div class="panel-heading">
<h4 class="panel-title">Request in Progress</h4>
</div>
<div class="panel-body">
Fetching data from server. Please wait ...
</div>
</div>
<style>
#header2{
height: 42px!important;
}
iframe {height:100%;width:100%}
</style>
</body>
</html>