-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathquality.php
152 lines (133 loc) · 5.45 KB
/
quality.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
<?php
header("Content-type: text/html; charset=utf-8");
?>
<html>
<head>
<link href="css/mtequal.css" rel="styleSheet" type="text/css">
<script type="text/javascript" src="js/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="js/mtequal.js"></script>
<?php
include("config.php");
include("functions.php");
if (isset($taskid)) {
if (isset($mysession) && $mysession["taskid"] != $taskid) {
$taskinfo = getTaskInfo($taskid);
$mysession["taskid"] = $taskid;
$mysession["tasknow"] = $taskinfo["name"];
$mysession["tasksysnum"] = countTaskSystem($taskid);
$mysession["tasktype"] = $taskinfo["type"];
$mysession["taskistr"] = $taskinfo["instructions"];
$mysession["taskranges"] = rangesJson2Array($taskinfo["ranges"]);
if (isset($_SESSION)) {
$_SESSION["mysession"] = $mysession;
} else {
session_register("mysession");
}
}
}
if (!isset($mysession) || empty($mysession["status"]) || $mysession["taskid"]==0) {
header("Location: index.php");
#print "<script>window.open('index.php','_self');</script>";
}
$sentence_hash = getSentence($id, $taskid);
if (!isset($sentence_hash["source"])) {
header("Location: index.php#".($id-1));
exit;
}
?>
<style>
html{height:100%}body{height:100%;min-width:980px;overflow:hidden;font-family:verdana,arial,helvetica;font-size:12px;margin:0;padding:0;}
</style>
</head>
<body>
<div style="background-color: #FFFFFF; z-index:9999; position: absolute; width: 100%; height: 100%; border-right: 1px solid #222; border-left: 1px solid #222">
<table cellpadding="0" cellspacing="0" height="100%" width="100%">
<tr height="1%">
<td style="top:0; width:100%">
<?php
include("menu_sentence.php");
$monitoring=0;
if (isset($userid) && $userid != $mysession['userid'] && ($mysession["status"] == "root" || $mysession["status"] == "admin" || $mysession["status"] == "advisor")) {
$time = date( "d/m/Y H:m:s", time() );
print "<div style='display: inline-block; background: yellow; border: dashed #777 1px; border-radius: 0px 0px 15px 15px; padding: 9px; font-size:12px; position:absolute; top: 0px; margin-left: 320px; z-index:1000'>Monitoring... sentence <b>$id</b>, user: <b>$userid</b> ($time)<br><a href='admin.php?section=annotation#user$userid' style='float:right'>« Back to Admin</a></div><br>";
$monitoring=1;
$sentidx=-1;
} else {
if (isset($mysession['userid'])) {
$userid = $mysession['userid'];
if (!isset($taskid)) {
$taskid = $mysession["taskid"];
}
} else {
print "<br><font color=red>Access denied!</font> You are an unregistered user or your session has expired. Please <a href='index.php' target='_top'>login</a> again!";
return;
}
}
if (empty($mysession["status"])) {
print "<script>window.open('index.php','_self');</script>";
}
$errorlabel = "Errors";
if (!isset($errorid)) {
$errorid = "";
} else {
if (!empty($errorid) && $errorid >= 0) {
$errorlabel = $mysession["taskranges"][$errorid][0];
}
}
if ($mysession["taskistr"] != "") {
?>
<span style="float: right; padding-right: 20px; padding-top: 9px; width:20%;">
<div style='float: right; right: 0px; top:0px; display: inline-block; position: fixed;text-align: left; background: #eee; font-size: 12px; padding-top: 10px; padding-left: 10px; padding-right: 10px; padding-bottom: 10px; border: solid #999 1px; border-radius: 0px 0px 0px 15px; z-index: 1000'>
<button href="#collapse1" class="nav-toggle" style='float: right; margin-top: -4px;'>read more</button><div style="float: right; margin-right: 20px">Task instructions<br></div>
<div id="collapse1" style="display:none; font-size: 14px;">
<br><br>
<?php print $mysession["taskistr"]; ?>
</div>
</div>
</span>
<?php
}
print "<div style='display: block; width: 100%; float: left; left: 0px; margin-top: 5px'><div class=label>SOURCE: </div>" .showSentence ($sentence_hash["source"][0], $sentence_hash["source"][1], "source")."<div>";
if (isset($sentence_hash["reference"])) {
print "<div class=labelref>REFERENCE: </div>" . showSentence ($sentence_hash["reference"][0], $sentence_hash["reference"][1], "reference")."<div>";
}
?>
</div>
</div>
</td>
</tr>
<tr>
<td valign=top>
<div style='display: inline-block; box-shadow: 3px -5px 5px #888; position: relative; margin-bottom: 5px; margin-left: 0px; width: 100%; height: 6px; '>
</div>
<iframe src="quality_output.php?id=<?php echo $id; ?>&taskid=<?php echo $taskid; ?>&userid=<?php echo $userid; ?>&sentidx=<?php echo $sentidx; ?>&monitoring=<?php echo $monitoring; ?>" style="border: 0px; padding-left: 0px; margin-top: -10px; width:100%; height:100%"></iframe>
</td>
</tr>
</table>
</div>
<?php
if (isset($userid) && $userid != $mysession['userid'] && ($mysession["status"] == "root" || $mysession["status"] == "admin" || $mysession["status"] == "advisor")) {
print "<script>\n setTimeout(\"window.open('quality.php?id=$id&userid=$userid&taskid=$taskid','_self')\", 5000);\n</script>\n";
}
?>
<script>
$(document).ready(function() {
$('.nav-toggle').click(function() {
//get collapse content selector
var collapse_content_selector = $(this).attr('href');
//make the collapse content to be shown or hide
var toggle_switch = $(this);
$(collapse_content_selector).toggle(function(){
if ($(this).css('display')=='none'){
//change the button label to be 'Show'
toggle_switch.html('read more');
}else{
//change the button label to be 'Hide'
toggle_switch.html('close');
}
});
});
});
</script>
</body>
</html>