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
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
|
<?php
require "get_elements.php";
$eid = 0;
if(isset($_GET["eid"]) && $_GET["eid"] != '') {
$eid = $_GET["eid"];
$elements = get_elements($eid);
}
?>
<html>
<head>
<title>Home | Scilab cloud</title>
<link href="cloud.css" rel="stylesheet">
<link href="fancybox/source/jquery.fancybox.css" rel="stylesheet">
<script src="fancybox/lib/jquery.js" type="text/javascript"></script>
<script src="fancybox/source/jquery.fancybox.js"></script>
<script>
$(document).ready(function(){
var webroot = "http://cloud.scilab.in/";
// var webroot = "http://localhost/cloud/";
var imgdata = '<img src="images/ajax-loader.gif">';
$("#single_image").fancybox();
$('.fancymenu').fancybox({title: ""});
//$("a#comment").fancybox();
$("#graph-dwnld").hide();
$("#categories").live("change", function(){
id = $("#categories").val();
if(id == "") {
$('#lb').html('');
$('#b').html('');
$('#lc').html('');
$('#c').html('');
$('#le').html('');
$('#e').html('');
$('#input').val('');
$('#output').val('');
}else {
$.ajax({
type: "POST",
url: webroot + "getdata.php",
data:{
'catid': id
},
beforeSend: function(){
$('#lb').html('');
$('#b').html(imgdata);
},
success: function(output) {
/*output = JSON.parse(output);*/
console.log(output);
if(output){
$('#lb').html('Book');
$('#b').html(output);
$('#lc').html('');
$('#c').html('');
$('#le').html('');
$('#e').html('');
$('#input').val('');
$('#output').val('');
}else {
alert('There is no book in this category');
}
}
});
}
});
$("#books").live("change", function(){
id = $("#books").val();
if(id == "") {
$("#c").html('');
$("#lc").html('');
$('#le').html('');
$('#e').html('');
$('#input').val('');
$('#output').val('');
}else {
$.ajax({
type: 'POST',
url: webroot + "getdata.php",
data:{
'bid': id
},
beforeSend: function(){
$('#lc').html('');
$('#c').html(imgdata);
},
success: function(output) {
output = JSON.parse(output);
if(output) {
$("#c").html(output);
$("#lc").html("Chapter");
$('#le').html('');
$('#e').html('');
$('#input').val('');
$('#output').val('');
}else {
alert('Somthing wrong, Please refresh page');
}
}
});
}
});
$("#chapter").live("change", function(){
id = $("#chapter").val();
if(id == "") {
$('#le').html('');
$('#e').html('');
$('#input').val('');
$('#output').val('');
}else {
$.ajax({
type: "POST",
url: webroot + "getdata.php",
data:{
'cid': id
},
beforeSend: function(){
$('#le').html('');
$('#e').html(imgdata);
},
success: function(output) {
output = JSON.parse(output);
if(output) {
$("#e").html(output);
$("#le").html("Example");
$('#output').val('');
$('#input').val('');
}else {
alert('Somthing wrong, Please refresh page');
}
}
});
}
});
$("#example").live("change", function(){
$("#nos").hide();
id = $("#example").val();
folder = $("#books").val();
if(id == "") {
$('#input').val('');
$('#output').val('');
}else {
$.ajax({
type: "POST",
url: webroot + "getcode.php",
data:{
'eid': id
},
dataType: "json",
success: function(output) {
$("#input").val(output.code);
if(output.nos) {
$("#nos").html(output.nos + " reviews").show();
$("#nos").attr("href", "http://scilab.in/cloud_comments/" + id);
}
$('#output').val('');
}
});
}
});
$("body").live("change", "#categories, #books, #chapter", function() {
$("#nos").hide();
});
$("#submit").live("click",function(){
if ($('#graphicsmode').is(':checked')) {
val =1;
}else {
val='';
}
$('.cls-body').addClass('loading-cls');
$("#submit").html("Executing...");
$('#submit').addClass('loading-cls');
$('#input').addClass('loading-cls');
$('#output').addClass('loading-cls');
// $("#submit").attr("disabled","disabled");
$.ajax({
type: "POST",
url: "submit.php",
data:{code:$("#input").val(),graphicsmode:val},
dataType: "json",
timeout: 60000,
success: function(resp ) {
msg = resp["response"];
// $("#submit").attr("disabled","");
$("#submit").html("Execute");
$('.cls-body').removeClass('loading-cls');
$('#submit').removeClass('loading-cls');
$('#input').removeClass('loading-cls');
$('#output').removeClass('loading-cls');
$("#output").val(msg["output"].replace(/^\s+|\s+$/g, ''));
if (msg["graph_exists"]=="1") {
$("#image").attr("src","http://scilab-test.garudaindia.in/cloud/graphs/"+msg["user_id"]+"/"+msg["graph"]+".png");
$("#sdwn").attr("href","http://scilab-test.garudaindia.in/cloud/graphs/"+msg["user_id"]+"/"+msg["graph"]+".png");
$("#single_image").trigger("click");
}
},
error: function (x, t, m) {
$("#submit").html("Execute");
$('.cls-body').removeClass('loading-cls');
$('#submit').removeClass('loading-cls');
$('#input').removeClass('loading-cls');
$('#output').removeClass('loading-cls');
if(t==="timeout") {
alert("Server is unable to serve your request. Please try after some time");
} else {
alert(t);
}
$("#output").val('502 Bad Gateway');
}
});
});
});
</script>
</head>
<?php
//date_default_timezone_set('Asia/Kolkata');
$today = date("Y-m-d H:i:s");
$banner_float_start_date = "2015-12-24 00:00:00.1";
$banner_float_end_date = "2016-01-04 24:59:59.9";
if ($today >= $banner_float_start_date) {
if ($today <= $banner_float_end_date) {
echo '<center><div style="background:red;height:45px;width:80%;padding-top:20px;font-size:20px;"> Scilab on Cloud service is not available from 24th Dec 2015 to 4th Jan 2016 due to maintenance of Garuda cloud server .</div></center>';
}
}
?>
</br>
<body background="images/body-bg.png" class="cls-body">
<div class="banner">
<a href="http://cloud.scilab.in" class="home-link" title="Home-Scilab on Cloud"><img src="images/scilab-logo.png" class="logo" alt="Home"></a>
<div class="site-name">Scilab on Cloud <sub><span style="font-style: italic; font-size: 10px;color: lightgoldenrodyellow;text-align: center;margin: 0px 0px 0px 0px;">Powered by Garuda cloud - <a href="http://megha.garudaindia.in" target="_blank" class="ext" style="color:#FFFFFF;">megha.garudaindia.in</a></span></sub>
</div>
<div id="banner-tabs">
<a class="fancymenu" title="Scilab on GARUDA Cloud" href="#abuot1" >About</a>
<div id="abuot1" style="width:400px; display: none; padding: 5px; font-size: 0.8em; color: black;">
<b>About Scilab on GARUDA Cloud.</b>
<p style="text-align: justify; ">Scilab on Cloud facilitates execution of the codes for particular example(s) online. The results can then be verified with the solved example(s) from the textbook. It is also possible to change the values of the variables and in fact, the code itself, and execute it. In addition to the given examples, one can also copy and paste (or) write a new code in the input box provided and execute the same. <a href="http://scilab.in/scilab-on-cloud">Read more.. </a>
</p>
</div>
<a id="invitation" class="fancymenu" title="Textbook Companion Project" href="#invitation1">Invitation</a>
<div id="invitation1" style="width:400px; display: none; padding: 5px; font-size: 0.8em; color: black;">
<b>Contribute to Scilab Textbook Companion Project / Scilab on GARUDA Cloud. </b>
<p style="text-align: justify; ">The FOSSEE team has created a submission portal that allows the code for each example to be uploaded individually. The Textbook Companion Project aims to port solved examples from standard textbooks using an open source software system, such as Scilab. <a href="http://scilab.in/Textbook_Companion_Project">Read more..</a>
</p>
</div>
<a id="contact-us" class="fancymenu" title="Contact Scilab on Cloud" href="#contact-us1">Contact us</a>
<div id="contact-us1" style="width:400px; display: none; padding: 5px; font-size: 0.8em; color: black;">
<b>Send us your valuable suggestions and feedback that shall enable us to enhance our work.</b>
<p style="text-align: justify; ">If you wish to contribute to our activities such as <b>Lab Migration, Textbook Companion, SciLinks, Scilab on Cloud, Scilab on Aakash,</b> please write to <a href="mailto: contact@scilab.in">contact@scilab.in</a>. For feedback on Lab Migration (or) Textbook Companion, <a href="http://scilab.in/feedbacks">click here</a>.
</p>
</div>
</div>
<a href="http://scilab.in" title="Scilab.in"><img id="scilab-logo" src="images/scilab_logo.png" /></a>
</div>
<a id="single_image" href="#simage" style="display: none;">test</a>
<div id="simage" style="display: none; width 50%">
<img id="image" href="" style="width:100%; height:75%;" /><br><b style="font-size:23px;">↓</b>
<a id="sdwn" href="" target="_blank" download="result.png">Download</a>
</div>
<div id="abuot1" style="width:400px; display: none; padding: 5px; font-size: 0.8em; color: black;">
<b>About Scilab on GARUDA Cloud.</b>
<p style="text-align: justify; ">Scilab on Cloud facilitates execution of the codes for particular example(s) online. The results can then be verified with the solved example(s) from the textbook. It is also possible to change the values of the variables and in fact, the code itself, and execute it. In addition to the given examples, one can also copy and paste (or) write a new code in the input box provided and execute the same. <a href="http://scilab.in/scilab-on-cloud">Read more.. </a>
</p>
</div>
<table align="center" cellpadding="6" cellspacing="0" width="100%">
<tr>
<td colspan="2">
<div class="lalg">Category</div>
<?php
function is_selected($nos) {
global $elements;
if($nos == $elements["category"]) {
return "selected";
}
}
?>
<select id="categories" name="categories">
<option value="">-- Select category --</option>
<option value="10" <?php echo is_selected(10); ?>>Analog Electronics</option>
<option value="3" <?php echo is_selected(3); ?>>Chemical Engineering</option>
<option value="12" <?php echo is_selected(12); ?>>Computer Programming</option>
<option value="2" <?php echo is_selected(2); ?>>Control Theory & Control Systems</option>
<option value="7" <?php echo is_selected(7); ?>>Digital Communications</option>
<option value="11" <?php echo is_selected(11); ?>>Digital Electronics</option>
<option value="8" <?php echo is_selected(8); ?>>Electrical Technology</option>
<option value="1" <?php echo is_selected(1); ?>>Fluid Mechanics</option>
<option value="9" <?php echo is_selected(9); ?>>Mathematics & Pure Science</option>
<option value="5" <?php echo is_selected(5); ?>>Mechanical Engineering</option>
<option value="6" <?php echo is_selected(6); ?>>Signal Processing</option>
<option value="4" <?php echo is_selected(4); ?>>Thermodynamics</option>
<option value="13" <?php echo is_selected(13); ?>>Others</option>
</select>
<span id="contrib" <?php if($eid) echo "style='display: inline;'"?>> <a class="fancymenu" href="#acknowledge">+ Contributor</a></span>
</td>
</tr>
<tr>
<td colspan="2">
<div id="lb" class="lalg">
<?php if($eid) echo "Book"; ?>
</div>
<div id="b">
<?php if($eid) echo $elements["books"]; ?>
</div>
</td>
</tr>
<tr>
<td colspan="2">
<div id="lc" class="lalg">
<?php if($eid) echo "Chapter"; ?>
</div>
<div id="c">
<?php if($eid) echo $elements["chapters"]; ?>
</div>
</td>
</tr>
<tr>
<td colspan="2">
<div id="le" class="lalg">
<?php if($eid) echo "Example"; ?>
</div>
<div id="e">
<?php if($eid) echo $elements["examples"]; ?>
</div>
</td>
</tr>
<tr class="bclr">
<td class="white-text">
<span class="pull-left">
Scilab Code
</span>
<span class="pull-right">
<?php
if($eid && $elements["nos"]) {
echo "<a id='nos' href='http://scilab.in/cloud_comments/{$eid}' target='_blank' style='display: inline;'>{$elements['nos']} reviews</a>";
} else {
echo "<a id='nos' href='#' target='_blank'></a>";
}
?>
</span>
</td>
<td class="white-text">Output</td>
</tr>
<tr class="bclr">
<td>
<textarea name="code" id="input" rows="20" cols="40" placeholder="Write a new code or select existing from above category..."><?php
if(isset($_GET['eid']) && $_GET['eid'] != '') {
require_once('db-connect.php');
$extensions = array('sce', 'sci');
$data = "";
$query = "select filepath from textbook_companion_dependency_files where id in (select dependency_id from textbook_companion_example_dependency where example_id=".$_REQUEST['eid'].")";
$result = mysql_query($query);
if($result) {
while($row = mysql_fetch_array($result)) {
if(in_array(end(explode('.', $row['filepath'])), $extensions)) {
$file = file_get_contents('../scilab_in_2015/uploads/'.$row['filepath'], true);
$data .= $file;
}
}
$query = "select filepath from textbook_companion_example_files where example_id=".$_REQUEST['eid'];
$result = mysql_query($query);
while($row = mysql_fetch_array($result)) {
if(in_array(end(explode('.', $row['filepath'])), $extensions)) {
$file = file_get_contents('../scilab_in_2015/uploads/'.$row['filepath'], true);
$data .= $file;
}
}
echo $data;
}
}
?></textarea>
</td>
<td><textarea name="code" id="output" rows="20" cols="40" readonly="readonly"></textarea></td>
</tr>
<tr class="bclr">
<td>
<a href="#" id="submit" class="execute-button">Execute</a>
</td>
<td>
<a id="commentBtn" class="fancymenu" href="#lightbox-form"> Report bug / Give feedback</a>
<div id="lightbox-form" style="display:none">
<div id="error-msg"></div>
<div id="success-msg">Thank you for your valuable feedback.</div>
<div id="comment-form-wrapper">
<form id="comment-form" id="comment_form">
<p><u>Please fill the details.</u></p>
<label>Feedback/Bug type:</label><br>
<select id="comment-type">
<option value=''>-- Select Type of issue --</option>
<option value=1> Blank Code / Incorrect code</option>
<option value=2>Output error</option>
<option value=3>Execution error</option>
<option value=4>Missing example(s)</option>
<option value=6>Blank output</option>
<option value=7>Any other / General</option>
</select>
<br><br>
<label>Description:</label><br>
<textarea id="comment-body" rows="6" cols="50" placeholder="Please tell us more..."></textarea> <br><br>
<input id="comment-notify" type="checkbox"> I want to be notified. <br> <br>
<div id="comment-email-wrapper">
<label>Email:</label><br>
<input id="comment-email" type="text" name='email'> <br><br>
</div>
<input type="submit" value="Submit">
</form>
</div> <!-- #/comment-form-wrapper -->
</div>
</td>
</tr>
<tr>
<td colspan="2" class="footer white-text">
<p class="test-footer" style="font-size: 10px;color: lightgoldenrodyellow;text-align: center;margin: 0px 0px 0px 0px;">Disclaimer</p>
</td>
</tr>
<tr>
<td style="width:50%" class="footer white-text">
<p class="test-footer" style="font-size: 10px;color: lightgoldenrodyellow;text-align: center;margin: 0px 0px 0px 0px;">Every effort is made to make all the codes to run smoothly. However, Scilab Cloud takes no responsibility for, and will not be liable for, the website being temporarily unavailable due to technical issues and code not producing accurate outputs due to any toolboxes.</p>
</td>
<td class="footer white-text">
<p class="test-footer" style="font-size: 10px;color: lightgoldenrodyellow;text-align: center;margin: 0px 0px 0px 0px;">Scilab is a trademark of <a href="http://www.inria.fr/en/" target="_blank" class="ext" style="color:#FFFFFF;">Inria</a><span class="ext"></span> (registered at the INPI for France and the rest of the World) and <a href="http://www.scilab-enterprises.com/" target="_blank" class="ext" style="color:#FFFFFF;">Scilab Enterprises</a><span class="ext"></span> is granted exclusive rights for Scilab Trademark.</p>
</td>
</tr>
</table>
<div id="acknowledge" style="display:none;">
<?php
if($eid) {
echo $elements["contrib"];
}
?>
</div>
<script src="acknowledge.js"></script>
<script src="comment.js"></script>
</body>
</html>
|