-
Notifications
You must be signed in to change notification settings - Fork 11
/
problem.php
293 lines (231 loc) · 6.77 KB
/
problem.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
<?php
/*
* @copyright (c) 2008 Nicolo John Davis
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*/
session_start();
if(!isset($_SESSION['isloggedin']))
{
echo "<meta http-equiv='Refresh' content='0; URL=login.php' />";
exit(0);
}
else
{
$username = $_SESSION['username'];
$userid = $_SESSION['userid'];
}
include('settings.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta name="Keywords" content="programming, contest, coding, judge" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="Distribution" content="Global" />
<meta name="Robots" content="index,follow" />
<link rel="stylesheet" href="images/Envision.css" type="text/css" />
<link rel="stylesheet" href="images/Tabs.css" type="text/css" />
<title>Programming Contest</title>
<script type="text/javascript" src="jquery-1.3.1.js"></script>
<script type="text/javascript" src="jquery.form.js"></script>
<script type="text/javascript" src="jquery.timers-1.1.2.js"></script>
<?php include('timer.php'); ?>
<script type="text/javascript">
<!--
function onSucess(data)
{
if(data.verdict == 0)
{
$('#status' + data.problemid).attr('class', 'accepted');
$('#upload' + data.problemid).hide();
$('#status' + data.problemid).html('<strong>Accepted</strong>');
$('#status' + data.problemid).hide();
$('#status' + data.problemid).fadeIn('slow');
messagebox('Accepted');
getDetails();
getLeaders();
}
else if(data.verdict == 1)
{
$('#status' + data.problemid).attr('class', 'compile');
$('#status' + data.problemid).html('<strong>Compile Error</strong>');
$('#status' + data.problemid).hide();
$('#status' + data.problemid).fadeIn('slow');
messagebox('Compile Error');
}
else if(data.verdict == 2)
{
$('#status' + data.problemid).attr('class', 'wrong');
$('#status' + data.problemid).html('<strong>Wrong Answer</strong>');
$('#status' + data.problemid).hide();
$('#status' + data.problemid).fadeIn('slow');
messagebox('Wrong Answer');
}
else if(data.verdict == 3)
{
$('#status' + data.problemid).attr('class', 'time');
$('#status' + data.problemid).html('<strong>Time Limit</strong>');
$('#status' + data.problemid).hide();
$('#status' + data.problemid).fadeIn('slow');
messagebox('Time Limit Exceeded');
}
else if(data.verdict == 4)
{
$('#status' + data.problemid).attr('class', 'invalid');
$('#status' + data.problemid).html('<strong>Invalid File</strong>');
$('#status' + data.problemid).hide();
$('#status' + data.problemid).fadeIn('slow');
messagebox('Invalid File');
}
}
function onEdit()
{
$('#editpanel').html( '<button id="save">Save</button> <button id="cancel">Cancel</button>' );
$('#save').click(onSave);
$('#cancel').click(onCancel);
//This will return tabn where n is the problem number
var problem = $('body').attr('id');
//We extract the number from the above
problem = problem[3];
$.get('admin/modifyproblem.php', {problemid: problem, mode: 'get'}, function(data) {
$('#statementpanel').html( '<textarea id="statement" style="width: 100%"></textarea>' );
$('#statement').text(data);
});
}
function onCancel()
{
$('#editpanel').html( '<button id="edit">Edit</button>' );
$('#edit').click(onEdit);
//This will return tabn where n is the problem number
var problem = $('body').attr('id');
//We extract the number from the above
problem = problem[3];
$.get('admin/modifyproblem.php', {problemid: problem, mode: 'get'}, function(data) {
$('#statementpanel').html( '<code class="statement"></code>' );
$('code.statement').html(data);
});
}
function onSave()
{
$('#editpanel').html( '<button id="edit">Edit</button>' );
$('#edit').click(onEdit);
var st = $('#statement').val();
//This will return tabn where n is the problem number
var problem = $('body').attr('id');
//We extract the number from the above
problem = problem[3];
$.post('admin/modifyproblem.php', {problemid: problem, mode: 'put', statement: st}, function(data) {
$('#statementpanel').html( '<code class="statement"></code>' );
$('code.statement').html(data);
});
}
$(document).ready(function() {
dispTime();
getLeaders();
getDetails();
setInterval("dispTime()", 1000);
setInterval("getLeaders()", getLeaderInterval);
setInterval("getDetails()", getLeaderInterval);
$('.uploadform').ajaxForm({
dataType: 'json',
success: onSucess
});
$('#edit').click(onEdit);
} );
-->
</script>
</head>
<?php
$problemid = $_GET['id'];
$problemid = htmlentities($problemid);
$good = false;
for($i=1 ; $i<=count($points) ; $i++)
if($problemid == $i)
$good = true;
if($good == false)
$problemid = 1;
print '<body class="menu2" id="tab'; print $problemid; print '">';
?>
<!-- wrap starts here -->
<div id="wrap">
<!--header -->
<?php include('header.php'); ?>
<!-- menu -->
<?php include('menu.php'); ?>
<!-- content-wrap starts here -->
<div id="content-wrap">
<div id="main">
<div class="messagebox" style="display: none"> </div>
<?php
$time = date_create();
if($time < $startTime)
echo '<h2>The contest has not yet begun</h2>';
else
{
print '<ul id="tabnav">';
for($i=1 ; $i<=count($points) ; $i++)
print "<li class='tab$i'><a href='problem.php?id=$i'>Problem $i</a></li>\n";
print '</ul>';
$value = $points[$problemid-1];
print "<h2>Problem $problemid</h2>";
if($running)
{
include('uploadform.php');
}
print "<p id='statementpanel'><code class='statement'>";
readfile("$PROBLEMDIR/$problemid/statement") or print "Problem is not available at this time";
print "</code></p>";
if($_SESSION['admin'])
print "<p id='editpanel' style='float: right'> <button id='edit'>Edit</button> </p>";
}
?>
</div>
<div id="sidebar">
<?php
if($time >= $startTime)
{
echo <<<EO
<h3>Point Value</h3>
<ul class="sidemenu">
<li><strong>$value</strong></li>
</ul>
EO;
if($problemid == 1)
{
/*echo <<<EO
<h3>Hints</h3>
<ul class="sidemenu">
<li>Be careful when you read the input.</li>
</ul>
EO;*/
}
else if($problemid == 2)
{
}
else if($problemid == 3)
{
}
else if($problemid == 4)
{
}
else if($problemid == 5)
{
}
}
echo <<<EOHTML
</li>
</ul>
EOHTML;
include('sidebar.php');
?>
</div>
<!-- content-wrap ends here -->
</div>
<!--footer starts here-->
<div id="footer">
<?php include('footer.php'); ?>
</div>
<!-- wrap ends here -->
</div>
</body>
</html>