Plugins display tree

Click on plugin names to see the details.
top
menu
identity

real_name

session_once

session_start

session_stop

session_informations

session_duration

session_deconnection

role

session_activity

questions

questions_all

questions_nomore

questions_shuffle

questions_next

statmenu

exportcsv

autoeval_stats

statmenu_good

statmenu_smiley

statmenu_bad

statmenu_indice

statmenu_nr_questions

statmenu_time

statmenu_rank

statmenu_students

statmenu_questions

action

session_graph

action_destroy_student

change_acl

options

hide

answered

answered_other

debug

answers

action_help

reload_plugins

reload_questions

analyse

student_work

questions_svg

histogramgood

grade_recompute

questions_comments

cheaters_quick

cheaters

comment

map

about

about_version

about_questions

about_time

acls

question_change_answer

heart
title_bar

title

title_time

ttl

question_before

heart_content

question

question_answer

question_good

question_bad

autoeval

question_indices

question_required

question_graph

question_comments

question_bads

question_correction

question_stat

question_grades

question_source

Plugin execution order

role acls question_source action_destroy_student cheaters_quick options cheaters session_once question_change_answer student_work answered_other questions_svg histogramgood answers session_start action_help grade_recompute statmenu_time statmenu_students statmenu_questions questions_comments session_stop reload_questions comment heart question_bads session_graph change_acl question_correction statmenu questions_nomore about_questions question_before exportcsv menu questions_all about_version question session_informations session_activity statmenu_nr_questions title_time questions_next map session_duration question_answer question_graph analyse identity question_stat about question_grades question_comments session_deconnection action title title_bar ttl real_name questions statmenu_bad question_required question_good question_indices statmenu_good question_bad statmenu_rank statmenu_indice autoeval questions_shuffle autoeval_stats statmenu_smiley answered reload_plugins about_time hide debug heart_content top

Plugin details

The attributes values are for the english language, all of them may change in other languages.

???? indicates a text computed (may be empty) computed by the plugin and that must be inserted in the page.

You can click on plugin attributes to see there definition.
Top level plugin. It defines the 3 columns of the page:
the left menu, the heart of the page and the administrator menu.

This plugin is the page composer, it must be
the last one to be executed.
css_attributes
CSS selectorEnglishFrench
> DIV > TABLEwidth: 100% ;
translations
CSS selectorEnglishFrench
int_requiredThe answer must be an integer wrote in decimal.La réponse à cette question doit être un nombre entier écrit en décimal.
string_expectedYour answer must contain: Dans votre réponse, on devrait trouver :
string_rejectedYour answer must not contain: Dans votre réponse, on ne doit pas trouver :
The left column in the page.
css_attributes
CSS selectorEnglishFrench
.box_titledisplay: block ;
> DIV > TABLE > TBODY > TR > TDwhite-space: nowrap ;
Display the identity of the connected user.
tipAll the informations about your identity and the current sessionCe bloc dont le titre est votre nom contient toutes les informations concernant votre identité et votre session en cours
Display the realname of the student.
If 15% of the questions are answered
and there is 4 hours without answers.
Then no more answers are allowed.
The student may see there answers.
translations
CSS selectorEnglishFrench
session_stoppedThe session is terminatedLa session est terminée
Begin: ????? color:#999 size:70%
It rejects any work before the session start.
option_help"HH:MM DD/MM/YYYY" Set the examination start date. The value can be a Python dictionnary with student id as keys, the default value is defined by the empty ("") key.
option_set
option_namebegin-date
tipSession start dateDate de début de la session
option_default09:00 1/1/2005
translations
CSS selectorEnglishFrench
session_not_startedThe session is not yet startedLa session n'a pas encore commencée
End: ????? color:#999 size:70%
It rejects any work after the session stop.
option_help"HH:MM DD/MM/YYYY" Set the examination termination date.
option_set
option_nameend-date
tipSession stop date.Date de fin de la session.
option_default19:00 1/1/2035
translations
CSS selectorEnglishFrench
session_stoppedThe session is terminatedLa session est terminée
????? size:70%
Display session start/stop in one line.
tipSession begin and end datesDates de début et fin de session
Remaining time: ????? color:#999 size:70%
Display the session duration.
tipTime before the session endTemps restant jusqu'à la fin de la session
javascript var remaining_seconds, starting_time ; function decrement_time(s) { remaining_seconds = s ; var now = new Date() ; starting_time = now.getTime() ; setInterval(update_time, 1000) ; } function duration(t) { var s ; var r = t % 60 ; var t = Math.floor(t / 60) ; if (r) { s = r ; if (t == 0) s += 's' ; } else s = "" ; r = t % 60 ; t = Math.floor(t / 60) ; if (t+r && (r != 0 || s != "")) s = r + "m" + s ; r = t % 24 ; t = Math.floor(t / 24) ; if (t+r && (r != 0 || s != "")) s = r + "h" + s ; r = t % 7 ; t = Math.floor(t / 7) ; if(t+r && (r != 0 || s != "")) s = r + "j" + s ; if (t) s = t + "s" + s ; return s ; } function update_time() { var now = new Date() ; var s = remaining_seconds - (now.getTime() - starting_time)/1000 ; s = s.toFixed(0) ; document.getElementById('remaining').innerHTML = duration(s) ; if ( s < 300 ) { document.getElementById('remaining').style.color = '#000' ; } if ( s < 60 ) { document.getElementById('remaining').style.background = '#F00' ; document.getElementById('remaining').style.color = '#FFF' ; } }
Logout ????? color:red size:70%
The 'logout' button.
tipDeconnexion keep anyone to use your browser to answer the questionsLa déconnexion empêche quiconque d'utiliser votre navigateur pour continuer à répondre au questionnaire
Role ?????
Display the 'role' menu. This plugin needs JavaScript.

It will create the 'roles' file with the default role.
option_help"single" or "multiple" If 'single', a user can have one one session active at a time. So it is not possible to have 2 roles on 2 web pages. But time accounting is better because students can not open multiple questions at the same time.
option_set
option_namesession
tipChoose your rolePermet de choisir votre role
option_defaultmultiple
For each role, display the number of active users
currently in this role.
tipNumber of active users the last 10 minutes per roleQui a travaillé pendant les 10 dernières minutes en fonction du role
The questions box, it displays the allowed questions.
css_attributes
CSS selectorEnglishFrench
A.bad_answer_givencolor:#F00;
A.current_questiontext-decoration:underline;
A.highlightbackground: black; color: white;text-decoration: blink;
A.indice_givenfont-style:italic;
A.max_descendantsfont-weight: bold;
A.question_givencolor:#888;
option_help"integer" If the number of questions in the menu is greater than this number, then pulldown menus are used.
option_set
titleQuestionsLes questions
option_nameuse-select
tipChoose your question in the following listVous devez choisir une question parmi les suivantes
option_default50
Display a menu allowing to choose between seeing all the questions
or only the allowed ones.
tipChoose your question list: * All the questionnary questions. * The possible questions as in the students list.Choix de la liste des questions à afficher : * Toutes les questions qui existent. * Celles accessibles normalement avec les prérequis.
translations
CSS selectorEnglishFrench
allAllToutes
normalPossibleNormal
No more questions!!! ?????
Display an informative text when there is no more questions to answer.
tipYou have finished the questionnary. Congratulation!Vous êtes arrivé au bout du questionnaire, félicitations !
If enabled, this plugin shuffle the allowed question list.
Next question ?????
Allow to go to the next question in alphabetical order.
tipGoto the next question in alphabetical order.Passez à la question suivante dans l'ordre alphabétique
The statistics menu box.
titleStatisticsStatistiques
tipInformation about the questions and your progression within the group.Informations concernant les exercices à faire et votre progression dans le groupe
CSV rank export ?????
The output of this plugin is a CSV file containing for each student
the normalized number of good/bad answers and indices.
There is also the work time in hours.
tipTable to import into a spreadsheet, for each student there is: The student name #good answers #bad answers #given tips Work time in hours Values are normalized between 0 and 1.Tableau intégrable dans un tableur avec pour chaque étudiant : Nom de l'étudiant #bonnes réponses #mauvaises réponses #indices affichés Temps passé en TP en heures Les différentes valeurs sont normalisées 0 c'est aucun et 1 c'est le maximum.
Displays a graphical state of the questions and students
css_attributes
CSS selectorEnglishFrench
position: relative; height: 35em
.badcolor:red
.mebackground: #FF0;
.okcolor:green
A.tips:hover TTleft:30em; width:24em; top: -3em; font-size: 100%
DIVposition: absolute; font-family: monospace
SPANtop: 5em; left:20em; width:20em
tip'.' are peoples, 'x' are questions, the yellow square: it's you. Verticaly it's the level, and horizontaly it's the average time.Les '.' sont les personnes, les 'x' les questions et le carré jaune, c'est vous. Verticalement c'est le niveau et horizontalement, c'est le temps de réflexion.
javascript function time_to_slot(x) { return Math.log(x/15) / Math.log(1.500000) ; } function histogram(t, time_searching) { var s = '' ; var h = 17 ; var m = 1.7 ; var mx = 1 ; var dx = 3 ; var x ; var slot = time_to_slot(time_searching).toFixed(0) ; for(var i=5; i<2*h; i++) s += ' 
' ; for(var i in t) { s += '
' + ' ' + '
' ; } for(var i=-9; i<=9; i++) { s += '
' + (i >= 0 ? ' ' + i : i ) + '
' ; } for(var i=1; i<200; i*=5) { x = dx + mx * time_to_slot(i*60) ; s += '
' + i + 'min.
' ; } document.write(s) ; }
????? good answers color:green
The number of good answers.
tipNumber of good answer you have givenNombres de bonnes réponses que vous avez donné
Add smileys to the statistics of good/bad/tip/...
translations
CSS selectorEnglishFrench
statmenubad-1You give many bad answers. Check your answer before answeringTestez votre réponse avant de la donner
statmenubad-2You give really too many bad answers!Vous répondez vraiment trop souvent des bétises !
statmenubad1Fine, you give not many bad answers.Bien, vous donnez peu de mauvaises réponses
statmenubad2Good! You give not many bad answers.Vous vous trompez vraiment pas souvent !
statmenugood-1Your are behind the otherVous êtes en retard
statmenugood-2Your are behind the other, ask help to the teacherVous êtes très en retard, faites vous aider
statmenugood1Fine, continueBien, continuez
statmenugood2Good!Très bien !
statmenuindice-1You ask many tips.Vous regardez trop les indices
statmenuindice-2You ask too much tip. Try to think by yourself.Vous demandez systématiquement les indices, c'est pas bien
statmenuindice1Fine, you ask not many tip.Bien, vous regardez peu les indices
statmenuindice2Good. You use really not many tip!Vous utilisez très peu les indices !
statmenutime-1After you have given a good answer, choose quickly another question.Après avoir répondu, passez rapidement à une autre question
statmenutime-2You take too much time without question displayed on your screenVous passez trop de temps sans question affichée
statmenutime1You should read the the informations given after you correctly answered a questionVous devriez lire ce qui est affiché après avoir répondu
statmenutime2You do not read the explanations displayed after you correctly answered a questionVous ne lisez pas les explications affichées après avoir répondu
????? bad answers color:red
The number of bad answers.
tipNumber of bad answer you have given, do not randomly answer if you can test your answer.Nombres de mauvaises réponses que vous avez donné, évitez de répondre au hasard si vous avez la possibilité de tester.
????? tips asked
The number of given tips.
tipNumber of tips you have askedNombres d'indices différents que vous avez regardés
????? questions defined
The total number of questions.
tipTotal number of question.Nombres de questions que le système contient.
????? of work
Display the student work time.
option_help"{'':60, 'student1': 90}" A Python dictionnary with the maximum number of minutes of work time per student. The key is the student ID. The '' key indicates the default time.
option_set
option_namemax-thinking-time
tipThe time you were workingLe temps que vous avez passé à travailler
option_default{'':100*60, 'guest_john_doe': 60}
translations
CSS selectorEnglishFrench
no_more_timeNo more time to answer.Temps de réflexion dépassé, vous ne pouvez plus répondre
Position: ?????
Displays the student rank computed with the number of good answers.
It is only useful when all the students are working together.
tipYour position in the group (this is not your grade)Votre classement dans le groupe (ceci n'est pas votre note)
Students ?????
Displays a statistics table about all the students.
tipFor each student. display statistics about its workPour chaque étudiant affiche les statistiques concernant l'ensemble de son travail
translations
CSS selectorEnglishFrench
//CAPTIONFor each student. display statistics about its workPour chaque étudiant affiche les statistiques concernant l'ensemble de son travail
//c0NameNom
//c0>SPANLink to the student work.Pointeur sur les statistiques de l'étudiant
//c1GoodBon
//c10Sim.
//c10>SPANSimultaneous answers with other studentsTaux de réponses simultanés (sans intérêt)
//c11Var.
//c11>SPANStandard deviance of the student reflexion time for all the questionsVariance du temps de réflexion sur l'ensemble des questions
//c12IP
//c12>SPANLast connection IP of the studentDernière IP utilisée
//c1>SPAN#good answer (green: behind the others, red: late)Nombre de bonnes réponses (vert si en avance et rouge si en retard)
//c2Disp.Posé
//c2>SPAN#known questionsNombre de questions connues
//c3BadMau.
//c3>SPAN#bad answers (green: no many, red: many. The color take into account the number of known questions.)Nombre de mauvaises réponses (vert si peu de mauvaises réponses par rapport au nombre de questions connues. Pour rouge, c'est qu'il y a trop de mauvaises réponses)
//c4TipInd.
//c4>SPAN#tips asked (green: no many, red: many. The color take into account the number of known questions.)Nombre d'indices vus (vert si peu d'indices demandés par rapport au nombre de questions connues. Pour rouge, c'est qu'il y a trop d'indices demandés)
//c5//
//c5>SPAN#commentsNombre de commentaires laissés
//c6SearchCherche
//c6>SPANSearching answer timeTemps total passé à chercher les réponses
//c7AfterAprès
//c7>SPANTime between questions (red: the student take too many time to choose another question, green: the student go too quickly to another question without reading the answer commentTemps total passé avant de passer à la question suivante en cas de bonne réponse (rouge : l'étudiant passe trop de temps sans question affiché sur l'écran. Vert: l'étudiant passe à la question suivante sans même lire ce qui est affiché sur l'écran)
//c8FirstPremière
//c8>SPANFirst connectionPremière connexion
//c9LastDernière
//c9>SPANLast connectionDernière connexion
Questions ?????
Displays session statistics about the questions.
tipFor each question, display statistics about all the studentsPour chaque question affiche les statistiques concernant l'ensemble des étudiants
translations
CSS selectorEnglishFrench
//CAPTIONFor each question, display statistics about all the studentsPour chaque question affiche les statistiques concernant l'ensemble des étudiants
//c0The questionLa question
//c0>SPANThe questionLa question pour laquelle on donne les statistiques
//c1SawVue
//c1>SPAN0: Nobody saw it, 1: Everybody saw it0: Personne ne la connaît, 1: tous le monde la connaît
//c2DisplayPosées
//c2>SPAN#displayed on screen / #students saw itNombre de fois quelle a été posée / Nombre de personne qui la connaisse
//c3AnsweredRépondus
//c3>SPAN0: Nobody answered, 1: All students knowing it answered it0: Personne n'a répondu, 1: tous ceux qui la connaisse ont répondu
//c4BadMauvaise
//c4>SPAN#bad answers / #students saw itNombre de mauvaises réponses / Nombre de personnes qui la connaisse
//c5TipsIndices
//c5>SPAN#tip / #students saw itNombre d'indices / Nombre de personnes qui la connaisse
//c6timeTemps
//c6>SPANFull time HH:MM:SS to answer the questionTemps total HH:MM:SS passé pour répondre à la question
//c7CommentCommentaire
//c7>SPAN#comments about the questionNombre de commentaires déposés
The 'action' box
titleActions
tipSelect the action you want to doChoisissez ce que vous voulez faire
Question graph ?????
Display the question graph with statistics for this session.
tipDisplay the question graph with session statistics. Click to see SVG fileAffiche le graphe des questions avec les statistique de la session. Cliquez pour voir le fichier SVG
Delete students ?????
Destroy all the students with 0 or 1 good answer.
tipDelete the students having answered only to a couple of questionDétruit tous les étudiants qui n'ont donné aucune bonne réponse
translations
CSS selectorEnglishFrench
//deletedTheses students have been deleted from the system. The bracketed number indicate the number of good answers they have givenCes étudiants ont été enlevés du système. Le nombre entre parenthèses indique le nombre de bonnes réponses qu'ils ont donnés
Allow to change the ACL of users and roles.
css_attributes
CSS selectorEnglishFrench
/.docfont-size: 70%;
/.nowrapwhite-space: nowrap ;
/A.change_acl:beforecontent:'Edit the access rights (ACL)'content:'Editer les droits d\'accès (ACL)'
/BUTTON.change_acl_savefont-size: 130%
/BUTTON.change_acl_save:beforecontent:'Save the ACL'content:'Sauvegarder les droits'
/tt.rolesfont-size: 70%; font-weight: normal ;
sort_column0
javascript function change_acls(user) { var f = document.getElementById('acls_form') ; var selects = f.getElementsByTagName('SELECT') ; var s = [user] ; for(var i=0; i
Session options ?????
Allow to change session options
css_attributes
CSS selectorEnglishFrench
/.options TEXTAREAwidth: 40em; height: 100%???
/BUTTON.save_options:beforecontent:'Save the options'content:'Sauver les options'
sort_column0
tipView or set the session optionsAffiche ou modifie les options de la session
translations
CSS selectorEnglishFrench
//CAPTIONView or set the session options???
//c0Command line option and plugin nameOption de ligne de commande et plugin
//c1Documentation
//c2Default valueValeur par défaut
//c3Current valueValeur courante
Visible ?????
This plugin allows to remove acls to others users.
It is not yet working.
css_attributes
CSS selectorEnglishFrench
/TT.hidebackground:yellow
/TT.hide:beforecontent:'×'
tipVisibility management of pluginsGestion des vues
javascriptvar hide_message = 'Give the role/student list to which remove this plugin:' ; function hide_stop_event(event) { if ( event.stopPropagation ) event.stopPropagation(true) ; if ( event.preventDefault ) event.preventDefault(true) ; else { event.returnValue = false; event.keyCode = 0; } event.cancelBubble = true ; } function hide(event, plugin) { hide_stop_event(event) ; var who = prompt('«' + plugin + '»\n\n' + hide_message, hide_roles) ; window.location = '?hide=' + plugin + ',' + who ; return false ; } var hide_message = 'Donnez la liste des roles à qui faut-il enlever ce droit :' ; function hide_stop_event(event) { if ( event.stopPropagation ) event.stopPropagation(true) ; if ( event.preventDefault ) event.preventDefault(true) ; else { event.returnValue = false; event.keyCode = 0; } event.cancelBubble = true ; } function hide(event, plugin) { hide_stop_event(event) ; var who = prompt('«' + plugin + '»\n\n' + hide_message, hide_roles) ; window.location = '?hide=' + plugin + ',' + who ; return false ; }
The work done ?????
Display all the questions and answer given by the connected student.
css_attributes
CSS selectorEnglishFrench
.commentbackground: #DDD ;
TABLE.bad_answer .an_answerbackground: #FDD ;
TABLE.good_answer .an_answerbackground: #DFD ;
TT.an_answer, PRE.an_answerfont-weight: bold ;
tipSee all the questions and answers in the work you have doneVoir toutes les questions et réponses qui ont été faites
translations
CSS selectorEnglishFrench
//an_answerYour answer: Votre réponse :
//answered_byAnswered by: Réponses de :
//comment TDYour comment: Votre commentaire :
Work done by the others ?????
Display the questions and answers of any student.
This plugin link is not visible on the web page.
To use it, you must click on a student name on the student statistics page.
css_attributes
CSS selectorEnglishFrench
.commentbackground: #DDD ;
TABLE.bad_answer .an_answerbackground: #FDD ;
TABLE.good_answer .an_answerbackground: #DFD ;
TT.an_answer, PRE.an_answerfont-weight: bold ;
tipSee all the questions and answers in the work you have doneVoir toutes les questions et réponses qui ont été faites
translations
CSS selectorEnglishFrench
//an_answerYour answer: Votre réponse :
//answered_byAnswered by: Réponses de :
//comment TDYour comment: Votre commentaire :
prototypeanswered
Debug ?????
Allow to display plugin definition in tips from the plugin interface
css_attributes
CSS selectorEnglishFrench
a.tips > div.tips > divwhite-space: pre;
tipActivate debugging on this pageActivation du débuggage sur cette page
The good answers ?????
Display all the questions definition.
css_attributes
CSS selectorEnglishFrench
TABLEborder: 1px solid black ;
tipSee the answersVoir les réponses
Help/Explanations ?????
Display the file 'help.html' in a frame.
Any questionnary can redefine its own page.
tipSee the help page about this workVoir une page d'aide concernant le TP
translations
CSS selectorEnglishFrench
//object_unsupportedYour browser does not know OBJECT tag.Votre navigateur ne supporte pas la balise OBJECT
Reload plugins ?????
Reload all the modified Quenlig plugins.
It is currently not working nicely, do not try to use.
tipReload server plugin This does not reload question definitionsRecharge les plugins du serveur s'ils ont été modifié Cela ne recharge pas les questions
Reload question ?????
Reload the current question source file.
This plugin can be used while a real session is running.

It is not totally safe, if you introduce a syntax error in the module,
the server will need a restart to restore the question file.
tipReload the Python file containing the question definitionRelit le fichier Python contenant la définition de la question
Analyse menu
titleAnalysis toolsAnalyser
tipAnalysis toolsDivers outils pour analyser le travail
Answered questions ?????
Display for each question answered the informations about the question.
Not really useful.
It should be enhanced to allow the teacher to see these informations
for the other students.
tipStatistics about the questions a student answeredStatistiques sur les questions auxquelles un étudiant a répondu
translations
CSS selectorEnglishFrench
//CAPTIONInformation about each question saw by the studentPour chaque question, indique comment l'étudiant a répondu
//c0Date
//c0>SPANThe last time the question was sawLe moment ou la question a été vue la dernière fois
//c1OK
//c1>SPANTrue if the good answer was givenTrue si la bonne réponse a été donnée
//c2#Disp.#Vus
//c2>SPANNumber of the the question was displayedNombre de fois que la question a été vue
//c3#Bad#Mau.
//c3>SPANNumber of bad answer givenNombre de mauvaises réponses données
//c4TipIndices
//c4>SPAN#tip saw / #tip totalNombre d'indices vue / nombre d'indice total
//c5#Com.
//c5>SPAN#comment leaved for the questionNombre de commentaire déposés
//c6TimeTemps
//c6>SPANTime with this question on screenTemps passé avec la question affichée sur l'écran
//c7Question
//c7>SPANA link the the question itselfLe nom de la question avec un lien vous dirigeant vers la question
Session graphic ?????
Display an SVG graphic of the session with all the questions and statistics.
This graphic is very slow to display so it is unusable.
tipDisplay a SVG graphic about the state of the student group and their answers.Affiche un fichier SVG représentant graphiquement la façon dont le groupe répond à l'ensemble des questions.
Histogram good answer ?????
Display the histogram of the number of good and bad answers
for all the students.
tipSee the number of good answers histogram per studentVoir l'histogramme du nombre de bonnes réponses par étudiants
translations
CSS selectorEnglishFrench
//histogramGood answer histogrammL'histogramme du nombre de bonnes réponses
histobadBad answer histogramL'histogramme du nombre de mauvaises réponses
Recompute grades ?????
DANGEROUS: allow to recompute all the automatic computed grades.
DO NOT USE if the grading is contextual to the student.
It is only useful if the grading functions are modified after
the examination.
css_attributes
CSS selectorEnglishFrench
Acolor: red
tipBeware: DO NOT USE IN CASE OF CONTEXTUAL GRADING. It is only useful if you have modified an automatic grading testAttention : NE PAS FAIRE SI LA NOTATION EST CONTEXTUELLE. C'est seulement utile dans le cas où vous avez modifié le test de notation automatique
translations
CSS selectorEnglishFrench
//grade_recomputeAutomatic grading recomputedLe recalcul des notations automatique est terminé
All the comments ?????
displays all the comments about all the questions.
tipAll the students commentsL'ensemble des commentaires qui ont été déposés par l'ensemble des étudiants
translations
CSS selectorEnglishFrench
//CAPTIONThe students commentsLes commentaires déposés par les étudiants
//c0The questionLa question
//c0>SPANThe commented question. It's None if there was no active questionLa question pour laquelle l'étudiant à déposé un commentaire. Il y a None si aucune question n'était affichée lors du dépôt du commentaire
//c1CommentCommentaire
//c1>SPANThe commentLe texte du commentaire déposé par l'étudiant
//c2StudentÉtudiant
//c2>SPANDisplay the student answersVoir les réponses de l'étudiant
//c3Date
//c3>SPANThe comment dateLa date de dépôt du commentaire
Cheaters too fast ?????
Detection of students answering too quickly.
sort_column-2
tipSearch students answering too quickly.Cherche ceux qui répondent trop vite (liste bonne réponses)
translations
CSS selectorEnglishFrench
//CAPTIONStudent answering too quickly to questions. Number of questions answered with 10, 20 and 40 less time than the average answer timeÉtudiants répondant trop rapidement. Nombre de questions répondues en 10, 20, 40 fois moins de temps que le temps moyen de réponse.
//c0StudentÉtudiant
//c110 time10*+rapide
//c220 time20*+rapide
//c340 time40*+rapide
Cheaters pairs ?????
Detection of the student always giving the same answer at the same time.
sort_column-3
tipSearch cheaters pairsCherche les copieurs
translations
CSS selectorEnglishFrench
//CAPTIONStudents working not aloneÉtudiants travaillant à plusieurs
//c0Student 1Étudiant 1
//c0>SPANA student of the coupleUn des étudiants
//c1Student 2Étudiant 2
//c1>SPANAnother student of the coupleL'autre étudiant
//c21 copied on 21 copie su 2
//c2>SPANNumber of good answers given by 1 less than one minute after the good answer given by 2Nombre de bonne réponses saisies par 1 moins d'une minute après une bonne réponse saisie par 2
//c32 copied on 12 copie sur 1
//c3>SPANNumber of good answers given by 2 less than one minute after the good answer given by 1Nombre de bonne réponses saisies par 2 moins d'une minute après une bonne réponse saisie par 1
//c4% copied from 2% de bonne réponse copiées par 1
//c4>SPANPercentage of answers copied from the student 2Pourcentage de bonne réponses copiées sur 2
//c5% copied from 1% de bonne réponse copiées par 2
//c5>SPANPercentage of answers copied from the student 1Pourcentage de bonne réponses copiées sur 1
no_pairs_foundNo cheater pair found.Aucun copieur n'a été trouvé.
Allow the students to leave a comment about the question.
css_attributes
CSS selectorEnglishFrench
.comment_givenwhite-space: normal;
BUTTONwidth: 100% ;
TEXTAREAfont-size: 80% ;
titleMake a commentFaites un commentaire
tipIf there is a problem in the question (ambiguity, grammar...). If more tips are needed. If an answer you think good is rejected. Then: leave a comment.S'il y a un problème dans l'énoncé de la question (ambiguïté, grammaire, ...). Si les indices ne sont pas suffisants. Si une réponse que vous considérez bonne n'est pas acceptée. Alors : laissez un commentaire.
translations
CSS selectorEnglishFrench
comment_buttonSend commentEnvoyer commentaire
comment_givenYour comment: Votre commentaire :
Display a graphical map of the questions.
css_attributes
CSS selectorEnglishFrench
IMGwidth: 100% ; margin-top: 0.3em ;
tipThere is a square per question, the first questions are on the left, the last on the right. Yellow: The question on screen Green: question answered correctly Red: question you answered incorrectly Dark blue: question you may look but you did not. Light Blue: you saw the question text The color is lighter if tips have been asked.Il y a un carré par question, on part de la gauche on doit arriver à droite. Jaune : la question affichée sur l'écran Vert : question à laquelle vous avez répondu correctement Rouge : question pour laquelle votre dernière réponse était fausse Bleu foncé : question qu'il est possible de regarder Bleu clair : Question abandonnée La couleur est plus pâle si des indices ont été demandés.
????? size:60%
About Quenlig box.
Running version of Quenlig
tipQUENLIG version numberVersion de QUENLIG utilisée
Display the directory name containing the questionnary
tipThe questionnary is in this directoryNom du répertoire contenant la définition du questionnaire
????? seconds
CPU time used to create the HTML page
tipCPU time used to generate this pageTemps CPU utilisé pour générer cette page
The ACLS are not predefined, any plugin can add its own.

The roles ACLS may be defined in the user named after the role.

ACLS are taken from:
  * The default ACLs from plugin:
     acls = {'Default':('executable','hiddable'), 'Teacher':('!executable',)}
  * The ACLs from role
  * The student ACLs
     acls = {plugin_A:('executable',), plugin_B: ('!hiddable', )}
     
The code assume that :
  * The role of a role does not change
  * A role is a student: The ACLs of a role are the ACLs of the student
This plugin add links in the 'work done' page in order to
allow students to change an old good answer
css_attributes
CSS selectorEnglishFrench
/A.question_change_answerfont-size: 60% ;
/A.question_change_answer:beforecontent:' (change your answer)'content:' (Changer votre réponse)'
option_help"integer" Define the time in seconds allowed to modify an answer once it has be accepted. The plugin 'question_change_answer' must be activated.
option_set
option_namechange-allowed-timeout
option_default3600
The heart of the web page.
css_attributes
CSS selectorEnglishFrench
.box_titlebackground: #CFC ; padding: 2px;
> DIVmargin-top: 0.7em;
> DIV > TABLE.box_contentbackground: #EEE ;
width100%
An horizontal bar at the top of the page.
css_attributes
CSS selectorEnglishFrench
TABLEbackground: #DDD ;
????? size:200% align:center
Display the page title.
tipIt's the question name or the page title if you are not answering to a questionC'est le nom de la question ou le titre de la page si vous n'êtes pas en train de répondre à une question
????? align:right
Display the mean time used by student to answer the current question.
tipAverage search time before answering correctly to this questionTemps de réflexion moyen de l'ensemble du groupe pour cette question
Display the remaining time to answer the current question.
css_attributes
CSS selectorEnglishFrench
#ttlfont-size: 70%; font-weight: bold
tipRemaining time to answerTemps restant pour répondre à la question
display the 'before answering' informations box.
titleBefore answeringAvant de répondre
tipInformation displayed here are courses remainder and/or action you must do before answering the question.Les informations affichées ici sont des rappels de cours et/ou des actions que vous devez effectuer avant de répondre à la question.
This plugin display the content of the first plugin with
an not empty attribute named 'heart_content'.
This allow plugins in the menu to display their content in the
heart of the page when clicked, for example the 'action_help' plugin.
Display the question text.
titleQuestion
tipThe question you must answerLa question que l'on vous pose et à laquelle vous devez répondre
It both display the INPUT HTML tag to enter the answer
but it also verify the answer.

As the answer may modify the question list, it must be executed
before the question list computation.
css_attributes
CSS selectorEnglishFrench
FORMmargin: 0px
INPUTwidth: 100% ; font-family: times; font-size:120%
TEXTAREAwidth: 100% ;
titleGive your answer hereDonnez votre réponse ici
tipDo not forget to test your answer before validating it, If no, you may give incorrect answer.Pensez à tester votre réponse dans la réalité avant de la saisir ici, sinon vous risquez de donnez une mauvaise réponse bêtement
javascript function disable_tab(event) { if ( window.event ) event = window.event ; key = event.keyCode ; if(key == 9) { event.target.value += ' ' ; return false; } else return true; }
translations
CSS selectorEnglishFrench
answer_buttonSend the answerEnvoyer la réponse
maximum_bad_answerYou can no more answer to this question, choose another oneVous ne pouvez plus répondre à cette question, choisissez en une autre
nr_tryNumber of remaining answer attempts: Nombre d'essais que vous pouvez encore faire :
????? background:#CFC
Display the information box in case of good answer.
titleGood answer! Choose another question.Bonne réponse ! Choisissez une autre question.
????? background:#FCC
This plugin display a box with the information about the bad answer.
titleBad answerMauvaise réponse
This plugin allow to do an autoevaluation of questions and students level.

There is no more question choice for students.

To make it work, the ACLS: Students/SESSION/Logs/Student/acls
Must be set to :

{
'question_bad': ('!executable',),
'map': ('!executable',),
'answered': ('!executable',),
'about': ('!executable',),
'about_questions': ('!executable',),
'about_time': ('!executable',),
'about_version': ('!executable',),
'action': ('!executable',),
'question_before': ('!executable',),
'question_good': ('!executable',),
'question_indices': ('!executable',),
'question_required': ('!executable',),
'questions': ('!executable',),
'questions_nomore': ('!executable',),
'questions_shuffle': ('!executable',),
'session_duration': ('!executable',),
'session_start': ('!executable',),
'session_stop': ('!executable',),
'statmenu_bad': ('!executable',),
'statmenu_good': ('!executable',),
'statmenu_indice': ('!executable',),
'statmenu_nr_questions': ('!executable',),
'statmenu_rank': ('!executable',),
'statmenu_smiley': ('!executable',),
'statmenu_time': ('!executable',),
'comment': ('hide',),
'autoeval': ('executable',),
'autoeval_stats': ('executable',),
}
translations
CSS selectorEnglishFrench
autoeval_goodCongratulation! You can continue if you want:Bravo, vous pouvez continuer si vous le désirez.
give_solutionGive your answer above and strike 'Enter'.Saisissez la réponse au dessus et tapez sur la touche 'Entrée'.
giveup_problemI give up: I will never see again this problem.J'abandonne : je ne pourrais plus faire ce problème.
intro_problemProblems are in limited time (less than one hour) and can not be paused. The only way to start another problem is to give up or answer successfuly. Click on the button to start:Les problèmes sont en temps limité (moins d'une heure) et ne peuvent être suspendus. Les seuls moyens de changer de problème sont d'abandonner ou bien de réussir. Cliquer sur le bouton pour le lancer :
nomore_problemNo more problem to do.Il n'y a plus de problèmes à faire pour le moment.
start_problemStart a new problemDémarrer un nouveau problème
Displays the box with the tips for the current question.
titleTips to help youDes indices pour vous aider
tipIf you have no idea about a way to answer, you may ask a tipSi vous n'avez aucune idée sur la manière de répondre à la question, demandez un indice
translations
CSS selectorEnglishFrench
first_indiceGive me a tipDonnez-moi un indice
next_indiceGive me another tipDonnez-moi un autre indice
Display the informations about the required questions.
css_attributes
CSS selectorEnglishFrench
/DIV.answeruserwhite-space: pre; margin-left: 2em; background: #FFE
titleQuestions you have yet answeredQuestions auxquelles vous avez déjà répondues
tipYou will find here informations that may help you to answer the question. If you are stuck, think to read the informations displayed here.Souvent vous trouverez ici des informations pouvant vous aider à répondre à la question que l'on vous pose. Si vous êtes bloqué, pensez à relire les informations qui sont affichées ici.
translations
CSS selectorEnglishFrench
answerYour answer: Votre réponse :
Displays all the bad answers given for a question.
Displays all the comments about the current question.
sort_column3
titleComments about this questionLes commentaires qui ont été déposés à propos de cette question
translations
CSS selectorEnglishFrench
c0CommentCommentaire
c0>SPANThe student commentLe texte du commentaire déposé par l'étudiant
c1StudentÉtudiant
c1>SPANStudent login, you can click to send a mail. The mail will be initialized with the question and its commentLe login de l'étudiant, vous pouvez cliquer pour lui envoyer un mail avec le rappel de la question et le contenu de son commentaire
c2Date
c2>SPANThe comment dateLa date de dépôt du commentaire
Displays all the bad answers given for a question.
css_attributes
CSS selectorEnglishFrench
SPAN.uncommentedbackground: #FAA;
SPAN.uncommented PREbackground-color: #FAA ;
titleBad answers given to this questionLes mauvaises réponses données à cette question
translations
CSS selectorEnglishFrench
c0Bad answer givenMauvaise réponse donnée par l'étudiant
c0>SPANIf the bad answer background is red\A this mean that it has not been comment.\A\AIf there is '!!!' this means that the answer was not counted as good\A but after a questionnary modification it is now a valid answerSi la mauvaise réponse est sur fond rouge\A cela veux dire que l'étudiant n'a pas eu de commentaire.\A\AS'il y a des '!!!' c'est que sa réponse a été comptabilisée comme bonne\A mais que suite à une modification du système elle est maintenant considérée comme valide
c1The studentsLes étudiants
c1>SPANThe students that have given this bad answer\A In bold if they have not found the good answer\A Italic if they have asked a tipLes étudiants ayant donné cette mauvaise réponse\A En gras s'ils n'ont pas trouvé la bonne réponse\A En italique s'ils ont demandé un indice
Allow to grade and comment the good answers.
css_attributes
CSS selectorEnglishFrench
/.question_correction_commenttext-decoration: underline;
/.question_correction_table IMGwidth: 8px; height: 8px; background: #F00; border: 0px
/.question_correction_table SPANwhite-space: pre ;
sort_column0
titleCorrection
javascript function question_correction(event) { var input = event ? event.target : window.event ; var url = "?question_correction=" + input.name + "," + encode_uri(input.value) ; var img = document.createElement('IMG') ; img.src = url ; var td = input.parentNode ; if ( td.tagName != 'TD' ) td = td.parentNode ; td.style.background = 'yellow' ; input.parentNode.appendChild(img) ; }
translations
CSS selectorEnglishFrench
c0Student answerRéponse de l'étudiant
c0>SPANStudent answerRéponse de l'étudiant
c1GradeNote
c1>SPANClick on the grade you want to giveCliquer pour indiquer la note à lui donner
c2CommentCommentaire
c2>SPANEnter a comment about the student answer.\AThey can be sent to the student.Saisissez un commentaire sur sa réponse.\ACes commentaire peuvent être envoyés aux étudiants..
question_correction_commentA teacher comment by: Un commentaire laissé par :
Displays some statistics about the current question.
css_attributes
CSS selectorEnglishFrench
> TABLE > TRvertical-align: top ;
Pmargin: 0.1em ;
titleQuestion statisticsStatistiques sur cette question
tipBracketed number indicates the mean value for student that saw the questionEntre parenthèses ce sont les moyennes pour tous les étudiants ayant vu la question
translations
CSS selectorEnglishFrench
badBad answers Mauvaises réponse
commentComments Commentaires
givenSaw by Vues par
goodGood answers Bonnes réponse
indiceTip asked Indices demandés
timeMean time Temps moyen
viewDisplay Affichages
Display the students grades for a question sorted by answer
titleGrades for this questionNotes pour cette question
tipFor each teacher or competence, indicates the number of points gained or lostPour chaque enseignant ou compétence, indique le nombre de points en négatif ou positif.
Displays the question Python source.
css_attributes
CSS selectorEnglishFrench
/BUTTON.save_source:beforecontent:'Save this source code in the question file'content:'Sauvegarder ce code dans le fichier sources des questions'
/PRE.python_errorbackground: #F88; font-size:150%
javascript function encode_uri(t) { return encodeURI(t).replace(/\?/g, "%3F").replace(/#/g, "%23") .replace(/[.]/g, "%2E").replace(/;/g, "%3B").replace(/&/g, "%26") .replace(/\//g, "%2F").replace(/,/g, "%2C").replace(/[+]/g, '%2B') ; }

Plugin Attributes

Attribute nameDefault valueDocumentation
acls{}Define the default authorizations for each of the role/users. For example: {'Teacher': ('executable',) }. Currently only 'executable' capacity exists.
containerNoneThe name of the plugin containing the defined plugin.
content_is_titleNoneThe plugin execution value defines the box title.
css_attributes()These attributes are concatened in order to create the .css file. This attribute is defined as a list a strings containing a CSS selector and a value. All the selectors not starting by / are prefixed by: DIV.plugin_name.
execute<function <lambda> at 0x40866d14>An evaluation function "lambda state, plugin, argument: None" The 'state' is the student session, 'plugin' is the plugin being evaluated, and 'parameter' is None or a string found in the URL. If this function returns a string, then the string is displayed in the user interface. If it returns a tuple Mime-Type + string then the answer is defined as a file of this type.
horizontalNoneIf True, the contained plugins are placed horizontaly
javascript''The javascript attributes for all the plugins are concatened in order to create the .js file.
linkNoneIf not None, then the plugin value become a link to the indicated URL
link_to_selfNoneIf True, set "link" attribute so when clicked the plugin will be called with '1' parameter value.
option_defaultNoneDefault value for the option
option_help'No help'Explanation of the option usage
option_nameNoneThe option name used on the command line
option_set<function set_option at 0x4088064c>A function parsing the option value
permanent_aclFalseIf True, then the user can not lost the capacity to use this plugin even when switching of role.
priority_display0The position of the plugin in the display. It can be a integer or another plugin name. If the plugin name is prefixed by '-' then the current plugin is displayed before the indicated plugin. If a plugin name is used, then the 2 plugins are in the same container.
priority_display_intNoneDo not define in plugin. It is computed from "priority_display"
priority_execute0Define the order of plugin execution. It takes the same values than the 'priority_display' attribute.
priority_execute_intNoneDo not define in plugin. It is computed from "priority_execute"
prototypeNoneA plugin name from which all the default attributes values will be taken.
sort_column1The default sort column number if the plugin displays a table.

Plugin CSS Attributes

These attributes values are concatened into the CSS file.
Attribute nameCSS nameCSS selectorDocumentation
aftercontent>A:first-child.content:afterText to be displayed after the plugin content. This text is localisable.
backgroundbackground>TABLE>TBODY>TR>TDBackground color of the plugin content.
beforecontent>A:first-child.content:beforeText to be displayed before the plugin content. This text is localisable.
colorcolor>AText color of the plugin content.
font_sizefont-sizeFont size of the plugin content.
text_aligntext-alignHorizontal alignment of the plugin content.
tipcontent>A:first-child.content> SPAN:beforeThe tip content. This text is localisable.
titlecontent>A:first-child.content>.box_title:beforeThe box title
title_backgroundbackground>A>EM.box_titleBackground color of the box title.
translationscontent .%s:beforeA dictionary where the key is the CSS selector and the value the style. If the selector starts by // then it applies to the "heart" plugin.
widthwidthCSS width of the plugin display DIV