-
Notifications
You must be signed in to change notification settings - Fork 12
/
project.cgi
executable file
·897 lines (726 loc) · 38.6 KB
/
project.cgi
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
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
#!/usr/bin/python
# -*- coding: utf-8 -*-
####
# Copyright (C) 2009-2016 Kim Gerdes
# kim AT gerdes. fr
#
# This program 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 2
# of the License, or (at your option) any later version.
#
# This script 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 (www.gnu.org) for more details.
#
# You can retrieve a copy of the GNU General Public License
# from http://www.gnu.org/. For a copy via US Mail, write to the
# Free Software Foundation, Inc.
# 59 Temple Place - Suite 330,
# Boston, MA 02111-1307
# USA
####
import os, cgitb, cgi,time, sys, glob
from time import asctime, localtime
sys.path.append('modules')
from logintools import login
from logintools import isloggedin
from logintools import logout
from lib import config, database
cgitb.enable()
##############################################################################################"
def start():
form = cgi.FieldStorage()
thisfile = os.environ.get('SCRIPT_NAME',".")
userdir = 'users/'
logint = form.getvalue("login",None)
if logint == "logout":
print logout(userdir) # printing cookie header. important!
print "Content-Type: text/html\n" # blank line: end of headers
print '<script type="text/javascript">window.location.href=".";</script>'
project = (form.getvalue("project",None))
if project: project =project.decode("utf-8")
action = form.getvalue("action",None)
if action: action =action.decode("utf-8")
if action:
if action.startswith("project_"):project=action[8:]
project = project.replace("(","").replace(")","").replace("<","").replace(">","") # May not contain <>() to avoid XSS attacks
if project: action=u"project_"+project
if action:
#action, userconfig = login(form, userdir, thisfile, action.encode("utf-8"))
#action, userconfig = login(form, userdir, thisfile, action)
try:
action, userconfig = login(form, userdir, thisfile, action)
except Exception,e:
print "Content-Type: text/html\n" # blank line: end of headers
print "Error in project.cgi! Can't read the user config files. Please check that the user files are readible and writable by the apache user "+action.encode("utf-8")
import traceback
print "traceback:",traceback.print_exc()
print "Exception:",str(e)
sys.exit("something's wrong")
else:
action, userconfig = login(form, userdir, thisfile, action)
adminLevel, username, realname = int(userconfig["admin"]),userconfig["username"].decode("utf-8"),userconfig["realname"].decode("utf-8")
print "Content-Type: text/html\n" # blank line: end of headers
projectconfig=None
if logint == "confirm":
print "Your account has been confirmed. You can log on now." # blank line: end of headers
print '<script type="text/javascript">setTimeout(window.location.href=".",10000);</script>'
try:
projectconfig = config.configProject(project) # read in the settings of the current project
except:
print "Error! Can't read the configuration files. Please check that the files project.cfg, functions.cfg, and categories.cfg are present in the project folder "
sys.exit("something's wrong")
if not projectconfig:
##print "Content-Type: text/html\n" # blank line: end of headers
print "something went seriously wrong: can't read the configuration of the project"
if project: print project.encode("utf-8")
##print "Content-Type: text/html\n" # blank line: end of headers
print '<script type="text/javascript">window.location.href=".";</script>'
sys.exit("something's wrong")
#sql=database.SQL(project)
#userid = sql.userid(username, realname)
try:
sql=database.SQL(project)
userid = sql.userid(username, realname)
except Exception , e:
from sqlite3 import OperationalError
if isinstance(e, OperationalError) and str(e)in["attempt to write a readonly database","unable to open database file"]:
print "Error! Make your database and the path leading there from the arborator base modifiable by the apache user!"
if isinstance(e, KeyError):
print "Error! the configuration file does not contain all the necessary keys:",str(e)
else:
print "strange error accessing the database.<br>",str(e)
import traceback
traceback.print_exc()
sys.exit("something's wrong")
if (not projectconfig) and (not action):
print "something went seriously wrong: can't read the configuration of the project",project.encode("utf-8")
#print '<script type="text/javascript">window.location.href=".";</script>'
sys.exit("something's wrong")
return project,projectconfig,sql,thisfile,username,userid,adminLevel,form
def export(textname, exportNumber, exportType, project):
#textname=textname.encode("utf-8")
print "<h2>Exporting",textname.encode("utf-8"),"(text number",exportNumber,")</h2>"
if textname:
fc,users,sc,doublegovs=sql.exportAnnotations(int(exportNumber), textname, exportType )
if fc==0: print "<div style='padding:10;' class='ui-state-error ui-corner-all'>No files were exported, probably because the file is assigned to nobody.</div><br/>"
else:
print "Exported",fc,"files and a total of",sc,"sentences.<br/><br/>"
if exportType in ["allconll","allxml"]:
print "Exported all existing annotated trees into",
if exportType =="allconll": print textname.encode("utf-8")+".user.trees.conll files.<br/>"
else: print textname.encode("utf-8")+".user.trees.rhaps.xml files.<br/>"
else:
print "Exported complete files for each assignment into"
if exportType =="todoconll": print textname.encode("utf-8")+".user.complete.conll10 files.<br/>"
else: print textname.encode("utf-8")+".user.complete.rhaps.xml files.<br/>"
print "<br/><div style='padding:10;' class='ui-state-highlight ui-corner-all'>",
if fc==1:print "The export file for",users[0],"is"
else: print "All the",fc,"export files (for",(", ".join(users)).encode("utf-8")+") are"
print " in the export folder <strong style='color:#DD137B'><a href='projects/{project}/export' target='_blank'>inside the project folder</a></strong> on the server.</div><br/>".format(project=project.replace("'","\\'").replace('"','\\"').encode("utf-8"))
if doublegovs: print "<div style='padding:10;' class='ui-state-error ui-corner-all'>Achtung!<br/> The annotation contains multiple governors for one or more nodes. The lines have been doubled, and thus this is not a common Conll format!</div>"
else:
print "problem: no textname"
def reaction(project,projectconfig,sql,userid,form,query):
"""
contains reaction to actions, eg. uploading, erasing, exporting, ...
"""
filename = form.getvalue("filename",None)
if filename: # upload file
from lib.treebankfiles import uploadConll
filetype = form.getvalue("filetype",None)
print "trying to upload",filename,filetype,"into the database of the project",project.encode("utf-8")
if filetype in ["conll4","conll10","conll14"]:
print "---------- here we go"
nrsentences = uploadConll(sql,filename)
print """<div class="ui-widget ui-widget-content ui-corner-all box">I added {nrsentences} sentences from {filename}.</div>""".format(nrsentences=nrsentences,filename=filename)
else: print """<div class="ui-widget ui-widget-content ui-corner-all box">Strange filetype: {filename}.</div>""".format(filename=filename)
eraseNumber = form.getvalue("eraseNumber",None)
if eraseNumber: # erase text
print "erasing text number ",eraseNumber,"<br/>"
sc=sql.removeText(int(eraseNumber))
print "erased",sc,"sentences."
#statustextid = form.getvalue("statustextid",None)
#if statustextid: # erase text
##print "statustextid, text number:",statustextid,"<br/>"
#sql.statustext(int(statustextid),userid)
exportNumber = form.getvalue("exportNumber",None)
textname=None
if exportNumber: # export text
print '<div class="ui-widget ui-widget-content ui-corner-all box" >'
textname = form.getvalue("textname",None)
exportType = form.getvalue("exportType",None)
#print exportNumber,type(exportNumber)
exportNumber=int(exportNumber)
if exportNumber==-1 :
for t,tid in sorted( [(t,tid) for tid,t,nrtokens in sql.getall(None, "texts", None, None)]):
export(t, tid, exportType, project)
else: export(textname, exportNumber, exportType, project)
print '</div>'
userchoice = form.getlist('userchoice')
textid = form.getvalue("textid",None)
if userchoice and textid: # change todos
removeid = int(form.getvalue("removeid",0))
validator = int(form.getvalue("validator",0))
if removeid:
sql.removetextfromuser(int(textid),removeid)
else:
u=userchoice[0].split("(")[-1][:-1]
sql.addtext2user(textid,u,validator)
exochoice = form.getvalue("exochoice",None)
if exochoice:
textid = form.getvalue("textid",None)
exotoknum = form.getvalue("exotoknum",None)
print "changing exostatus of text id",textid,"to",exochoice
sql.setExo(textid, exochoice, exotoknum)
if query: # search results
print """<div class="ui-widget ui-widget-content ui-corner-all box" style="text-align:-moz-center;">"""
res = sql.snippetSearch(query)
if res:
print "<h2>Search results for {query}:</h2>".format(query=query)
print res.encode("utf-8")
else: print "no results for {query}</h2>".format(query=query)
print """</div>"""
def printhtmlheader(project):
print """<html>
<head>
<title>Arborator - {project} Project</title>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
<script type="text/javascript" src="script/jquery.js"></script>
<script type="text/javascript" src="script/jquery-ui-1.8.18.custom.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/jquery-ui-1.8.18.custom.css" media="screen"/>
<link href="css/arborator.css" rel="stylesheet" type="text/css">
<script type="text/javascript">
project="{project}";
userid="{userid}";
username="{username}";
""".format(project=project,userid=userid,username=username.encode("utf-8"))
print """
$('html').click(function() {
$("#exportdiv").css({ display: 'none' } );
$("#userform").css({ display: 'none' } );
$("#exoform").css({ display: 'none' } );
});
edit = function(textid,opensentence) {
$("#textid").attr("value", textid );
$("#opensentence").attr("value", opensentence );
$("#editorform").submit();
}
removeSample = function(textid, text) {
$("#eraseNumber").attr("value",textid);
$("#question").html("Are you sure that you want to erase the text "+text+" from the database?")
$('#dialog').dialog('open');
}
exportAnnos = function(textid, text, offset) {
$("#exportNumber").attr("value",textid);
$("#textname").attr("value",text);
offset.left=offset.left-280;
$("#exportdiv").offset(offset).css({ display: 'inline' } );
}
exportGo = function(type) {
$("#exportType").attr("value",type);
console.log($("#export"))
$("#export").submit();
$("#dialog").html("<img src='images/loading.gif'>");
$("#dialog").dialog({
height: 230,
width:150,
modal: true,
title:"Please wait!!!<br>This can be long.",
buttons: {}
});
$('#dialog').dialog('open');
}
adduser = function(textid, text, offset) {
$("#utextid").attr("value",textid);
$("#uremove").attr("value",0);
$("#userform").css({ display: 'block',top: offset.top, left: offset.left } );
}
userchoice = function(v) {
$("#validator").attr("value",v);
$("#uremove").attr("value",0);
$("#useraddremove").submit();
}
userremove = function(tid,uid) {
$("#utextid").attr("value",tid);
$("#uremove").attr("value",uid);
$("#useraddremove").submit();
}
nextstatus = function(tid) {
//console.log("nextstatus",tid)
$.ajax({
type: "POST",
url: "statusChange.cgi",
data: {"project":project,"userid":userid,"username":username,"textid":tid},
success: function(answer){
$("#textStatus"+tid).html(answer.status);
//console.log("changed!",answer);
},
error: function(XMLHttpRequest, textStatus, errorThrown){
console.log("error",project,erasetreeid)
}
});
}
nl2br = function(str) {
return (str + '').replace(/([^>\\r\\n]?)(\\r\\n|\\n\\r|\\r|\\n)/g, '$1'+ '<br>' +'$2');
}
startmate = function() {
//$("#startmateform :input").prop('disabled', true);
//checkMate();
$("#parseStatus").css('background-image', 'url("images/ajax-loader.gif")');
$.ajax({
type: "POST",
url: "mate.cgi",
data: {"project":project,"parserType":$( "#parserType" ).val(), "whoseTrees":$( "#whoseTrees" ).val(), "evaluationPercent":$( "#evaluationPercent" ).val(), "additionnalLexicon":$( "#additionnalLexicon" ).val(), "resultAnnotator":$( "#resultAnnotator" ).val()},
success: function(answer){
$("#parseStatus").html(answer);
console.log("finished!",answer);
//clearInterval(timer);
},
error: function(XMLHttpRequest, textStatus, errorThrown){
console.log("mate error",project)
}
});
timer = setInterval(checkMate, 5000);
}
checkMate = function() {
$.ajax({
url : "mate/parse.log",
dataType: "text",
cache: false,
processData: false,
success : function (data) {
$("#parseStatus").html(nl2br(data));
if (data.match("^Ready"))
{
console.log("Done");
clearInterval(timer);
$("#parseStatus").css('background-image', 'none');
//$("#startmateform :input").prop('disabled', false);
}
}
});
}
$(function () {
$("#dialog").dialog({
bgiframe: true,
autoOpen: false,
height: 350,
width:400,
modal: true,
buttons: {
Cancel: function() {
$(this).dialog('close');
},
"OK": function() {
$(this).dialog('close');
$("#erase").submit();
}
}
});
$('#exochoice').change(function ()
{
$('#exochange').submit();
});
})
getEvaluation = function(project,uid) {
$("#evalubutton"+uid).replaceWith("<img id='evalubutton"+uid+"' src='images/ajax-loader.gif'>");
$.ajax({
type: "GET",
url: "getEvaluation.cgi",
data: {"project":project,"uid":uid},
success: function(answer){
$("#evalubutton"+uid).replaceWith(answer);
//console.log("got!"+answer);
},
error: function(XMLHttpRequest, textStatus, errorThrown){
console.log("error",project)
alert("error erasing"+XMLHttpRequest+ '\\n'+textStatus+ "\\n"+errorThrown);
}
});
}
</script>
</head>
"""
def printheadline(project):
project = project.replace("(","").replace(")","").replace("<","").replace(">","")
if os.path.exists("projects/"+project+"/"+project+".png"):img="<img src='projects/"+project+"/"+project+".png' align='top' height='18'>"
else: img=""
query = form.getvalue("searchtext","")
print """<body id="body">
<div id="center" class="center" style="width:100%">
<div id="navigation" style="width:100%;margin:0px;border:0px;" class="arbortitle ui-widget-header ui-helper-clearfix">
<a href='.' style='position: fixed;left:1px;top:1px'><img src="images/arboratorNano.png" border="0"></a>
<a href="project.cgi?project={project}" style='position: fixed;left:120px;top:5px;color:white;' title="project overview">{img} {project} Annotation Project</a>
<div style='margin:5 auto;' id='sentinfo'>Project Overview</div>
<form method="get" action="project.cgi" id="searchform" style='position: fixed;right:1px;top:1px'>
<input type="text" id="searchtext" name="searchtext" value="{query}"/>
<input type="hidden" id="project" name="project" value="{project}">
<span title="search" onClick="$('#searchform').submit();" style="cursor:pointer;" class="ui-button-icon-primary ui-icon ui-icon-search"></span>
</form>
</div>
""".format(project=project,img=img,query=query)
if os.path.exists("sitemessage.html"):print open("sitemessage.html").read()
return query
def printmyassignments(project,sql,projectconfig,userid): # assigned texts
txt = u"""
<div class="ui-widget ui-widget-content ui-corner-all box" style="text-align:-moz-center;">
You have been assigned the following texts of the <b>{project}</b> Project<br/>
""".format(project=project)
txt += u"""Please select the text to annotate:<br/><br/><table class="whitable">"""
txt += u" <tr><td>text name</td><td>number of sentences</td><td>number of tokens</td><td>trees modified by you</td><td>status</td></tr>"
scount,mcount,tcount=0,0,0
for _,_,tid,todotype,status,comment in sql.getall(None, "todos",["userid"], [userid]):
try:
tid,t,nrtokens = sql.getall(None, "texts",["rowid"],[tid])[0]
except:
sql.removeText(tid)
print "we found a todo for a non existing text and removed it."
continue
try: todotype=int(todotype)
except: todotype=0
if todotype:txt += u" <tr><td><b><span class='val'>validation of <br></span><a style='cursor:pointer;' onclick=edit('"+str(tid)+"',1)>"+ t +"</a></b></td>"
else: txt += u" <tr><td><b><a style='cursor:pointer;' onclick=edit('"+str(tid)+"',1)>"+ t +"</a></b></td>"
sn=sql.getnumber(None, "sentences", ["textid"], [tid])
scount+=sn
txt += u" <td>"+str(sn)+"</td>"
tn=sql.getNumberTokensPerText(tid)
tcount+=tn
txt += u" <td>"+str(tn)+"</td>"
txt += u" <td> "
mc = sql.getNumberTreesPerUserAndText(userid,tid)
mcount+=mc
txt += str(mc)
txt += u"</td>"
txt += u" <td><a style='cursor:pointer;dispay:block' id='textStatus"+str(tid)+"' "
txt+= "onclick=nextstatus('"+str(tid)+"')>"+ projectconfig["text status"].get(status,"ooooo") +"</a></td>"
txt += u"</tr>"
txt += u" <tr> </tr><tr><td>a total of:</td><td>{scount}</td><td>{tcount}</td><td>{mcount}</td></tr>".format(scount=scount,mcount=mcount,tcount=tcount)
txt += u"</table></div>"
if scount: print txt.encode("utf-8")
#else: print u"""<div class="ui-widget ui-widget-content ui-corner-all box" style="text-align:-moz-center;">
#You have not been assigned any text of the <b>{project}</b> Project<br/></div>
#""".format(project=project).encode("utf-8")
def printalltexts(project,sql,adminLevel):############################# all texts of the project
nrt,stotal,ttotal,tanno,tvali=sql.getNumberTexts(),0,0,0,0
project = project.replace("(","").replace(")","").replace("<","").replace(">","")
print """
<div class="ui-widget ui-widget-content ui-corner-all box" style="text-align:-moz-center;" id='projectbox'>
The <b>{project}</b> Project has {nrt} texts and {nrs} sentences. <br/>
<br/>
<table class='whitable'>
<thead><tr><th>text name</th><th>number of sentences</th><th>number of tokens</th><th>sentence length</th><th >annotators</th><th>validator</th><th title='non sollicitated trees by users not assigned to this text are listed here.'>other trees</th><th>exo</th><th> </th><th> </th><th> </th></tr></thead>
""".format(project=project,nrt=nrt,nrs=sql.getNumberSentences())
tuples=[]
for t,tid,nrtokens in sorted( [(t,tid,nrtokens) for tid,t,nrtokens in sql.getall(None, "texts",None,None)]): # got to get it in alphabetical order .decode("utf-8")
c1= u"<b><a style='cursor:pointer;dispay:block' onclick=edit('{tid}',1)>{t}</a></b></td>".format(tid=tid, t=t)
sn=sql.getnumber(None, "sentences", ["textid"], [tid])
stotal+=sn
c2=str(sn)
if not nrtokens: nrtokens=sql.getNumberTokensPerText(tid) # ,recompute=True
#nrtokens=sql.getNumberTokensPerText(tid,recompute=True) # recomputes the token number
ttotal+=nrtokens
c3=str(nrtokens)
if sn: c4=str(round(float(nrtokens)/sn,2))
else: c4="0"
a,v = "",""
tannot,tvalit=0,0
reals=[]
for _,uid,tid,todotype,status,comment in sql.getall(None, "todos",["textid"], [tid], orderby="order by userid"):
try: todotype=int(todotype)
except: todotype=0
res= sql.getall(None, "users",["rowid"], [uid])
if res :
uid,user,realname = res[0]
if not realname: realname=sql.realname(user)
av=u"<div style='float:left;margin-right:10px;'>"+realname
if status!="0": av+= "<i><sub>"+ projectconfig["text status"].get(status,"ooo")+ "</i></sub>"
if adminLevel: av+= "<div class='ui-button-icon-primary ui-icon ui-icon-circle-minus' style='float:right;cursor:pointer;margin-right:15px;' onclick='var e=arguments[0];e.stopPropagation();userremove({tid},{uid});'></div>".format(tid=tid,uid=uid)
av+="</div>"
reals+=[realname]
if todotype: # validators
v+=av
tvalit+=1
else: # annotators
a+=av
tannot+=1
if not a: a="<div style='float:left;margin-right:15px;'>nobody yet</div>"
if not v: v="<div style='float:left;margin-right:15px;'>nobody yet</div>"
tanno+=tannot
tvali+=tvalit
c5,c6=a,v
otherreals=[r for r, in sql.treesForText(tid) if r and r not in reals]
#print "otherreals",otherreals, tid
if otherreals: c7=" ".join(otherreals)
else: c7=" "
if adminLevel:
# exo stuff:
et,esn = sql.getExo(tid)
et = sql.exotypes[et] # transform exotypenumber into text
if not esn: esns=""
else: esns=esn
c8= """<a style='cursor:pointer;' onclick='$("#exoform").val("{et}").css({{ top: $(this).offset().top-5, left: $(this).offset().left-5 }}).toggle();$("#exoform select").val("{et}");$("#exotoknum").val("{esn}");var e=arguments[0];e.stopPropagation();$("#etextid").val({tid})'>{et} {esns}</a>""".format(tid=tid,et=et,esn=esn,esns=esns)
# user assignment:
c9 = u"""<div style='float:left;cursor:pointer;' title='asign this text to a user' onclick="var e=arguments[0];e.stopPropagation();adduser({tid},'{t}',{{ top: e.pageY, left: e.pageX }}); ">asign<div style='float:right;cursor:pointer;' class='ui-button-icon-primary ui-icon ui-icon-person' ></div></div> """.format(tid=tid,t=t)
# export
c10 = u""" <span style='cursor:pointer;'onclick="var e=arguments[0];e.stopPropagation();exportAnnos({tid},'{t}',$(this).offset());" title='export annotations of this text' ><img src="images/dbexport.bw.png" border="0"></span>""".format(tid=tid,t=t)
else:
c8= sql.exotypes[sql.getExo(tid)[0]] # only exotype is shown
c9= " "
c10 = """ """
if adminLevel>1: c11= u""" <span class='ui-button-icon-primary ui-icon ui-icon-trash' style='cursor:pointer;' onclick="var e=arguments[0]; e.stopPropagation(); removeSample({tid},'{t}');" title='remove all sentences from this file from database' ></span>""".format(tid=tid,t=t)
else: c11= " "
tuples+=[(c1,c2,c3,c4,c5,c6,c7,c8,c9,c10,c11)]
for tup in tuples:
print ('<tr><td>' + u"</td><td>".join(tup) + "</td></tr>").encode('utf-8')
if adminLevel:allexport="""<span style='cursor:pointer;'onclick="var e=arguments[0];e.stopPropagation();exportAnnos(-1,'all',$(this).offset());" title='export all annotations - very slow! blocks the database!' ><img src="images/dbexport.bw.png" border="0"></span>"""
else:allexport=""
evallinkhtml = '<a href="getEvaluation.cgi?project='+project+'">evaluation</a>'+' <a href="getEvaluation.cgi?project='+project+'&csv=csv">csv</a>'
nvs=sql.getNumberValidatedSentences()
nvt=sql.getNumberValidatedTokens()
if nrt: # at least some texts exist
if tanno: annota="{tanno} annotation assignments<br> (an average of {ava:.2f} assignments per text)".format(tanno=tanno,ava=float(tanno)/nrt)
else: annota=" "
if tvali: validata="{tvali} validation assignments <br> (an average of {avv:.2f} validators per text)".format(tvali=tvali,avv=float(tvali)/nrt)
else: validata=" "
if stotal: avsentlen=round(float(ttotal)/stotal,2)
else: avsentlen="n/a"
if nvs: avsentlenval=round(float(nvt)/nvs,2)
else: avsentlenval="n/a"
print """<TFOOT> <tr style='padding-top:20;'><td>{nrt} texts</td><td>{stotal} sentences<br>{nvs} validated</td><td>{ttotal} tokens<br>{nvt} validated</td><td>{avsentlen}<br>{avsentlenval} validated</td><td>{annota}</td><td>{validata}</td><td> </td><td>{evallinkhtml}</td><td> </td><td>{allexport} </td><td> </td></tr> </TFOOT>""".format(stotal=stotal, nvs=nvs, nvt=nvt, nrt=nrt, ttotal=ttotal,avsentlen=avsentlen, avsentlenval=avsentlenval, annota=annota,validata=validata,evallinkhtml=evallinkhtml if adminLevel else " ", allexport=allexport)
print "</table></div>"
def printuserassignments(project,projectconfig,sql,adminLevel, lastseens):
parser=projectconfig["configuration"]["importAnnotatorName"]
teacher=projectconfig["configuration"].get("teacher",None)
if teacher:
teacherid=sql.userid(teacher)
#scount,tcount=0,0
tablecontent=""
something=False
for uid,u,rea in sql.getall(None, "users",None,None, orderby="order by realname"):
if u!=parser:
textids=[]
treeidlists=[]
totaltokens=[]
titles=[]
#sentenceidlists=[]
txt=""
sc,tc,tnrtrees,lastmodif=0,0,0,[]
for _,uid,tid,todotype,status,comment in sql.getall(None, "todos",["userid"], [uid]): # for all the assignments (texts) for the given user
try: todotype=int(todotype)
except: todotype=0
textids+=[tid]
status=projectconfig["text status"].get(status,"?")
tid,t,nrtokens = sql.getall(None, "texts",["rowid"],[tid])[0]
sn=sql.getnumber(None, "sentences", ["textid"], [tid])
treenrs=sql.treeNrsForUserAndText(uid,tid)
trees=sorted([(int(n),asctime(localtime(o))) for (sid,n,o,trid,) in treenrs])
treeidlists+=[ [ (trid,sid) for (sid,n,o,trid,) in treenrs] ]
nrtrees=len(treenrs)
lastmodif+=[o for (sid,n,o,trid,) in treenrs]
if sn==nrtrees: trees="All"
else: trees=str(trees).replace("(","\n").replace("),","").replace("'","").replace(",",":").replace(")","")[1:-1] or "None"
tn=nrtokens
sc+=sn
tc+=tn
totaltokens+=[tn]
titles+=[t]
tnrtrees+=nrtrees
if todotype: txt+= "<span class='val'>"
txt+= """ <span title="modified trees: {trees}">{t} (<span class='val'>{nrtrees}</span>/{sn}/{tn}/{status})</span> """.format(t=t.encode("utf-8"),sn=sn,tn=tn,status=status,nrtrees=nrtrees,trees=trees)
if todotype: txt+= "</span> "
something=True
if sc:
tablecontent+= " <tr ><td><b>{u}</b></td><td>".format(u=u)
tablecontent+= txt
avt="<span class='val'>{tnrtrees} ({avt:.1f}%)</span>".format(tnrtrees=tnrtrees,avt=float(tnrtrees)/sc*100)
else:
continue
tablecontent+= "uuu"
avt=" 0"
if lastmodif: lastmodif=asctime(localtime(sorted(lastmodif)[-1]))
if sc: lastseen=asctime(localtime(lastseens.get(u,(0,0))[0]))
else: lastseen= " "
tablecontent+= " </td><td><b>{avt}</td><td>{sc}/{tc}<td>{lastseen}</td><td>{lastmodif}</td></b></td></tr>".format(tnrtrees=tnrtrees,avt=avt ,sc=sc,tc=tc, lastseen=lastseen, lastmodif=lastmodif or " ")
if teacher:
tablecontent+= "<tr><td>{rea} </td><td colspan=5>".format(rea=rea.encode("utf-8"))
tablecontent+= '''<input type="button" onclick="getEvaluation('{project}',{uid});" class="fg-button ui-state-default ui-corner-all" style="width:155px;z-index:33;" value="get {rea}'s evaluation" name="evalubutton{uid}" id="evalubutton{uid}" cursor="pointer">'''.format(project=project,uid=uid, rea=rea.encode("utf-8"))
tablecontent+= "</td></tr>"
tablecontent+= "<tr><td colspan=6 style='padding-bottom:20;'></td></tr>"
#break
if something:
print """
<div class="ui-widget ui-widget-content ui-corner-all box" style="text-align:-moz-center;">
The assignments of the <b>{project}</b> Project<br/>
""".format(project=project)
print """<br/><table class='whitable'>"""
print """ <tr>
<td>user name</td>
<td>assigned texts: <br> text name (trees modified by user, total number of sentences, total number of tokens, status)</td>
<td>total number of modified trees</td>
<td>total number of sentences / <br> total number of tokens</td>
<td>last seen</td> <td>last modification</td> """
#if teacher: print "<td>result</td>"
print " </tr>"
print tablecontent
print "</table></div>"
if adminLevel>1:
print """<div class="ui-widget ui-widget-content ui-corner-all box">
<a href="uploader.cgi?project={project}"><span class='ui-button-icon-primary ui-icon ui-icon-folder-open' style='' title='Add Conll or XML files containing annotations to the database' ></span>Add files to the database</a>
</div></div></div></div></div></div> """.format(project=project)
return now
def printmenues(project,sql):
parser=projectconfig["configuration"]["importAnnotatorName"]
print """<form method="get" action="editor.cgi" style="display: none;" id="editorform" >
<input type="hidden" id="project" name="project" value="{project}">
<input type="hidden" id="textid" name="textid" value="">
<input type="hidden" id="opensentence" name="opensentence" value="1">
<img src="images/ajax-loader.gif" border="0">
<img src="images/loading.gif" border="0">
</form>
""".format(project=project)
print """<form method="post" action="project.cgi?project={project}" style="display: none;" id="nextstatusform" >
<input type="hidden" id="statustextid" name="statustextid" value="">
</form>
""".format(project=project)
#<input type="hidden" id="project" name="project" value="{project}">
print """<div id="exoform" style=" position:absolute;display: none;" onclick="var e=arguments[0];e.stopPropagation();">
<form method="post" action="project.cgi?project={project}" id="exochange" name="exochange">
<input type="hidden" id="etextid" name="textid" value="">
<select id="exochoice" name="exochoice" style="width:180px;" >
{options}
</select>
<input id="exotoknum" type="text" value="0" name="exotoknum" title="number of sentences per student (0=all)" style="width:20px;">
</form>
</div> """.format(project=project, options="\n".join(["<option>"+ty+"</option>" for ty in sql.exotypes]))
print """<div id="userform" style="position:absolute; display:none;" onclick="var e=arguments[0];e.stopPropagation();">
<form method="post" action="project.cgi?project={project}" id="useraddremove" name="useradd">
<select id="userchoice" name="userchoice" style="width:180px;" >""".format(project=project)
user_rows = sorted(sql.getall(None, "users",None,None), key=lambda x: x[2].lower() if x[2] is not None else "")
for uid,user,realname in user_rows:
if user!=parser:
#print [user]
print " <option>",
if realname: print realname.encode('utf-8'),
print " ("+user+")</option>"
print """ </select>
<div class='ui-button-icon-primary ui-icon ui-icon-circle-check' style='cursor:pointer; float:right;' onclick="var e=arguments[0];e.stopPropagation();userchoice(1);" title='asign this user as validatator' ></div>
<div class='ui-button-icon-primary ui-icon ui-icon-circle-plus' style='cursor:pointer; float:right;' onclick="var e=arguments[0];e.stopPropagation();userchoice(0);" title='asign this user as annotator' ></div>
<input type="hidden" id="utextid" name="textid" value="">
<input type="hidden" id="uremove" name="removeid" value="false">
<input type="hidden" id="validator" name="validator" value="0">
</form>
</div>"""
print """<div class="ui-widget ui-widget-content ui-corner-all" style="position: absolute; padding: 5px;z-index:20;display:none;font-size:.8em;" id="exportdiv">
<form id="export" name="export" method="POST" action="project.cgi?project={project}" >
<div id="radioset" class="ui-buttonset" style="margin-left:15px">
export complete files per assignment as<br>
<label for="radio1" class="ui-state-active ui-button ui-widget ui-state-default ui-button-text-only ui-corner-left" onclick='exportGo("todosconll")' title="All assignments are exported as complete CoNLL files, independently of whether the annotator has actually changed the tree or not from the original parse tree. CoNLL files only contain the form, the lemma, the category, and the dependency.">
<span class="ui-button-text">
CoNLL file
</span>
</label><label for="radio2" class="ui-state-active ui-button ui-widget ui-state-default ui-button-text-only ui-corner-right" onclick='exportGo("todosxml")' title="All assignments are exported as complete XML files, independently of whether the annotator has actually changed the tree or not from the original parse tree.">
<span class="ui-button-text">
XML file
</span>
</label>
</div>
<br>
<div id="radioset" class="ui-buttonset" style="margin-left:15px">
export all trees by any annotator as<br>
<label for="radio1" class="ui-state-active ui-button ui-widget ui-state-default ui-button-text-only ui-corner-left" onclick='exportGo("allconll")' title="All trees that any annotator has saved are exported, including the original parse trees. The resulting CoNLL files don't necessarily contain all sentences. CoNLL files only contain the form, the lemma, the category, and the dependency.">
<span class="ui-button-text">
CoNLL file
</span>
</label><label for="radio2" class="ui-state-active ui-button ui-widget ui-state-default ui-button-text-only ui-corner-right" onclick='exportGo("allxml")' title="All trees that any annotator has saved are exported, including the original parse trees. The resulting XML files don't necessarily contain all sentences.">
<span class="ui-button-text">
XML file
</span>
</label>
</div>
<br>
<div id="radioset" class="ui-buttonset" style="margin-left:15px">
export most recent trees by any annotator as<br>
<label for="radio1" class="ui-state-active ui-button ui-widget ui-state-default ui-button-text-only ui-corner-left" onclick='exportGo("lastconll")' title="The most recent tree for every sentence is exported, this may be the original parse trees. CoNLL files only contain the form, the lemma, the category, and the dependency.">
<span class="ui-button-text">
CoNLL file
</span>
</label><label for="radio2" class="ui-state-active ui-button ui-widget ui-state-default ui-button-text-only ui-corner-right" onclick='exportGo("lastxml")' title="The most recent tree for every sentence is exported, this may be the original parse trees.">
<span class="ui-button-text">
XML file
</span>
</label>
</div>
<input type="hidden" id="exportNumber" name="exportNumber" value="">
<input type="hidden" id="exportType" name="exportType" value="">
<input type="hidden" id="textname" name="textname" value="">
</form>
</div>
<div id="dialog" title="Confirmation" style="display: none;" >
<div class="ui-state-error ui-corner-all" style="margin: 40px;padding: 10pt 0.7em;">
<h2 id="question">Are you sure that you want to erase the text?</h2>
</div>
</div>
<form method="post" action="project.cgi?project={project}" style="display: none;" id="erase" >
<input type="hidden" id="eraseNumber" name="eraseNumber" value="">
</form>
""".format(project=project)
def printmate(project,projectconfig, sql, adminlevel):
if projectconfig.get("configuration",{}).get("mate",{}):
print """
<div class="ui-widget ui-widget-content ui-corner-all box" style="text-align:-moz-center;">Mate:
<form method="post" id="startmateform" name="startmateform">
For the <input type="hidden" id="etextid" name="textid" value="">
<select id="parserType" name="parserType" style="width:100px;height:25px;" >
{parsertypeoptions}
</select>-based parser, take
<input type="radio" name="whoseTrees" value="v" checked>the validators' trees <input type="radio" name="whoseTrees">all validated trees,
and use <input id="evaluationPercent" type="text" value="10" name="evaluationPercent" title="percentage of training data used for evaluation" style="width:33px;">% for evaluation.
<br/>
Use <input id="additionnalLexicon" type="text" value="" name="additionnalLexicon" title="name of additional lexicon to use" style="width:93px;"> as additional lexicon and store the parse results under
<input id="resultAnnotator" type="text" value="mate" name="resultAnnotator" title="username for resulting trees" style="width:63px;">.
<br/>
<input type="button" cursor="pointer" id="buttonstartmate" name="buttonstartmate" value="start Mate" style="width:155px;z-index:33;" class="fg-button ui-state-default ui-corner-all" onclick="startmate();">
</form>
<div id="parseStatus" class="ui-widget ui-widget-content ui-corner-all box" style="background-position: center center;background-repeat:no-repeat;">
</div>
</div> <br/> """.format(project=projectconfig.get("mate",None),parsertypeoptions="\n".join(["<option>"+ty+"</option>" for ty in ["graph","transition"]]))
#parserType
#whoseTrees
#evaluationPercent
#additionnalLexicon
#resultAnnotator
def printfooter(project,username,thisfile, now):
"""
"now" contains a list of all users currently online
"""
a=u"""<div class="arborfoot fg-toolbar ui-widget-header ui-helper-clearfix">logged in as {username}
<a href="{thisfile}?login=logout&project={project}">logout</a>""".format(username=username,project=project,thisfile=thisfile)
print (u"""<div class="arborfoot fg-toolbar ui-widget-header ui-helper-clearfix">logged in as {username}
<a href="{thisfile}?login=logout&project={project}">logout</a>""".format(username=username,project=project,thisfile=thisfile)).encode("utf-8")
if username!="guest": print (u' <a href="{thisfile}?login=editaccount&project={project}">edit the account {username}</a>'.format(username=username,project=project,thisfile=thisfile)).encode("utf-8")
if adminLevel > 1: print (u' <a href="{thisfile}?login=admin&project={project}">User Administration</a>'.format(project=project,thisfile=thisfile)).encode("utf-8")
if adminLevel: print (u' <a href="configedit.cgi?project={project}">Edit Configuration</a>'.format(project=project)).encode("utf-8")
nowstring=u'<a title="Ask questions or share your feelings with {r}..." href="mailto:{email}?subject=The%20Arborator%20is%20driving%20me%20crazy!">{r} ({u})</a>'
now = [nowstring.format(u=u,r=unicode(r),email=email) for (u,r,email) in now if u!= username]
if len(now)==1: print (u' You are not alone! This other user is online now: '+now[0]).encode("utf-8")
elif len(now)>1: print (u' You are not alone! These other users are online now: '+u", ".join(now)).encode("utf-8")
print "</div>"
print '</body></html>'
# <a href="admin.cgi?project={project}">Corpus Administration</a>
if __name__ == "__main__":
project,projectconfig,sql,thisfile,username,userid,adminLevel,form = start()
project = project.replace("(","").replace(")","").replace("<","").replace(">","") # May not contain <>() to avoid XSS attacks
printhtmlheader(project.encode("utf-8"))
query=printheadline(project.encode("utf-8"))
reaction(project,projectconfig,sql,userid,form,query)
printmyassignments(project,sql,projectconfig,userid)
printalltexts(project.encode("utf-8"),sql,adminLevel)
lastseens,now=sql.usersLastSeen()
if adminLevel:
printuserassignments(project.encode("utf-8"),projectconfig,sql,adminLevel, lastseens)
printmate(project.encode("utf-8"),projectconfig,sql,adminLevel)
printmenues(project.encode("utf-8"),sql)
printfooter(project,username,thisfile,now)