MAJ V4.4.2
This commit is contained in:
parent
b89548a62e
commit
bc8411ee0e
Binary file not shown.
Binary file not shown.
3
bin/.gitignore
vendored
3
bin/.gitignore
vendored
@ -125,3 +125,6 @@
|
|||||||
/zipstudent.png
|
/zipstudent.png
|
||||||
/zipstudent.svg
|
/zipstudent.svg
|
||||||
/zipstudentmini.png
|
/zipstudentmini.png
|
||||||
|
/sautpageColonne.svg
|
||||||
|
/sautpagecolonne.png
|
||||||
|
/sautpagecolonnemini.png
|
||||||
|
Binary file not shown.
@ -6,7 +6,6 @@ import java.util.regex.Pattern;
|
|||||||
|
|
||||||
import MEPTL.commandes;
|
import MEPTL.commandes;
|
||||||
import cXML.node;
|
import cXML.node;
|
||||||
import list.listeAttributsAnalyseWriter;
|
|
||||||
import list.listeDesNodesAncrable;
|
import list.listeDesNodesAncrable;
|
||||||
import list.listeDesNodesEvalPlacement;
|
import list.listeDesNodesEvalPlacement;
|
||||||
import list.listeDesNodesFormatageDirect;
|
import list.listeDesNodesFormatageDirect;
|
||||||
@ -264,9 +263,9 @@ public class evaluationAttribut {
|
|||||||
// evaluation du nom de la page
|
// evaluation du nom de la page
|
||||||
if(k.equals("evalNamePage") && sujet.getNomElt().equals("page")) {
|
if(k.equals("evalNamePage") && sujet.getNomElt().equals("page")) {
|
||||||
if(nodeStudent!=null) {
|
if(nodeStudent!=null) {
|
||||||
retour = evaluationNamePage(retour,nodeStudent, sujet.getAttributs().get("style:master-page-name"), sujet.getAttributs().get("evalNamePage"),"Page");
|
retour = evaluationNamePage(retour,nodeStudent, evaluation.withoutCodeAndPointPourRechercheContenuExact(sujet.getAttributs().get("style:master-page-name")), sujet.getAttributs().get("evalNamePage"),"Page");
|
||||||
}else {
|
}else {
|
||||||
retour = evaluationNamePage(retour,null, "Pas trouvé la page", sujet.getAttributs().get("evalNamePage"),"Page");
|
retour = evaluationNamePage(retour,null, evaluation.withoutCodeAndPointPourRechercheContenuExact(sujet.getAttributs().get("style:master-page-name")), sujet.getAttributs().get("evalNamePage"),"Page");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -467,25 +466,17 @@ public class evaluationAttribut {
|
|||||||
*/
|
*/
|
||||||
private static node evalEntetePasActive(node sujet, node nodeStudent, node retour, String nameElt) {
|
private static node evalEntetePasActive(node sujet, node nodeStudent, node retour, String nameElt) {
|
||||||
if(nodeStudent!=null) {
|
if(nodeStudent!=null) {
|
||||||
int nbA=0;
|
String reponseSujet = "non";
|
||||||
int nbAs=0;
|
String reponseStudent = "non";
|
||||||
String reponseSujet = "oui";
|
|
||||||
String reponseStudent = "oui";
|
if(sujet.getNodes().size()==0) reponseSujet="oui";
|
||||||
Enumeration<String> key1 = sujet.getAttributs().keys();
|
if(nodeStudent.getNodes().size()==0) reponseStudent="oui";
|
||||||
while(key1.hasMoreElements()) {
|
|
||||||
String k1 = key1.nextElement();
|
|
||||||
if(listeAttributsAnalyseWriter.isAttributAnalyseWriter(k1)) nbA++;
|
|
||||||
}
|
|
||||||
if(nbA<=0) reponseSujet = "non";
|
|
||||||
key1 = nodeStudent.getAttributs().keys();
|
|
||||||
while(key1.hasMoreElements()) {
|
|
||||||
String k1 = key1.nextElement();
|
|
||||||
if(listeAttributsAnalyseWriter.isAttributAnalyseWriter(k1)) nbAs++;
|
|
||||||
}
|
|
||||||
if(nbAs<=0)reponseStudent = "non";
|
|
||||||
retour = evaluationEntetePasActive(retour,reponseStudent,reponseSujet,sujet.getAttributs().get("evalEntetePasActive"),"Entete");
|
retour = evaluationEntetePasActive(retour,reponseStudent,reponseSujet,sujet.getAttributs().get("evalEntetePasActive"),"Entete");
|
||||||
}else {
|
}else {
|
||||||
retour = evaluationEntetePasActive(retour,null, "Pas trouvé le node de l'étudiant", sujet.getAttributs().get("evalEntetePasActive"),"Entete");
|
String reponseSujet = "non";
|
||||||
|
if(sujet.getNodes().size()==0) reponseSujet="oui";
|
||||||
|
retour = evaluationEntetePasActive(retour,null, reponseSujet, sujet.getAttributs().get("evalEntetePasActive"),"Entete");
|
||||||
}
|
}
|
||||||
return retour;
|
return retour;
|
||||||
}
|
}
|
||||||
@ -501,19 +492,17 @@ public class evaluationAttribut {
|
|||||||
*/
|
*/
|
||||||
private static node evalEnteteActive(node sujet, node nodeStudent, node retour, String nameElt) {
|
private static node evalEnteteActive(node sujet, node nodeStudent, node retour, String nameElt) {
|
||||||
if(nodeStudent!=null) {
|
if(nodeStudent!=null) {
|
||||||
int nbAs=0;
|
String reponseSujet = "non";
|
||||||
String reponseSujet = "oui";
|
String reponseStudent = "non";
|
||||||
String reponseStudent = "oui";
|
|
||||||
Enumeration<String> key1 = sujet.getAttributs().keys();
|
if(sujet.getNodes().size()>0) reponseSujet="oui";
|
||||||
key1 = nodeStudent.getAttributs().keys();
|
if(nodeStudent.getNodes().size()>0) reponseStudent="oui";
|
||||||
while(key1.hasMoreElements()) {
|
|
||||||
String k1 = key1.nextElement();
|
|
||||||
if(listeAttributsAnalyseWriter.isAttributAnalyseWriter(k1)) nbAs++;
|
|
||||||
}
|
|
||||||
if(nbAs<=0)reponseStudent = "non";
|
|
||||||
retour = evaluationEnteteActive(retour,reponseStudent,reponseSujet,sujet.getAttributs().get("evalEnteteActive"),"Entete");
|
retour = evaluationEnteteActive(retour,reponseStudent,reponseSujet,sujet.getAttributs().get("evalEnteteActive"),"Entete");
|
||||||
}else {
|
}else {
|
||||||
retour = evaluationEnteteActive(retour,null, "Pas trouvé le node de l'étudiant", sujet.getAttributs().get("evalEnteteActive"),"Entete");
|
String reponseSujet = "non";
|
||||||
|
if(sujet.getNodes().size()>0) reponseSujet="oui";
|
||||||
|
retour = evaluationEnteteActive(retour,null, reponseSujet, sujet.getAttributs().get("evalEnteteActive"),"Entete");
|
||||||
}
|
}
|
||||||
return retour;
|
return retour;
|
||||||
}
|
}
|
||||||
@ -529,25 +518,17 @@ public class evaluationAttribut {
|
|||||||
*/
|
*/
|
||||||
private static node evalPiedDePagePasActive(node sujet, node nodeStudent, node retour, String nameElt) {
|
private static node evalPiedDePagePasActive(node sujet, node nodeStudent, node retour, String nameElt) {
|
||||||
if(nodeStudent!=null) {
|
if(nodeStudent!=null) {
|
||||||
int nbA=0;
|
String reponseSujet = "non";
|
||||||
int nbAs=0;
|
String reponseStudent = "non";
|
||||||
String reponseSujet = "oui";
|
|
||||||
String reponseStudent = "oui";
|
if(sujet.getNodes().size()==0) reponseSujet="oui";
|
||||||
Enumeration<String> key1 = sujet.getAttributs().keys();
|
if(nodeStudent.getNodes().size()==0) reponseStudent="oui";
|
||||||
while(key1.hasMoreElements()) {
|
|
||||||
String k1 = key1.nextElement();
|
|
||||||
if(listeAttributsAnalyseWriter.isAttributAnalyseWriter(k1)) nbA++;
|
|
||||||
}
|
|
||||||
if(nbA==0) reponseSujet = "non";
|
|
||||||
key1 = nodeStudent.getAttributs().keys();
|
|
||||||
while(key1.hasMoreElements()) {
|
|
||||||
String k1 = key1.nextElement();
|
|
||||||
if(listeAttributsAnalyseWriter.isAttributAnalyseWriter(k1)) nbAs++;
|
|
||||||
}
|
|
||||||
if(nbAs==0)reponseStudent = "non";
|
|
||||||
retour = evaluationPiedPagePasActive(retour,reponseStudent,reponseSujet , sujet.getAttributs().get("evalPiedPagePasActive"),"Pied page");
|
retour = evaluationPiedPagePasActive(retour,reponseStudent,reponseSujet , sujet.getAttributs().get("evalPiedPagePasActive"),"Pied page");
|
||||||
}else {
|
}else {
|
||||||
retour = evaluationPiedPagePasActive(retour,null, "Pas trouvé le node de l'étudiant", sujet.getAttributs().get("evalPiedPagePasActive"),"Pied page");
|
String reponseSujet = "non";
|
||||||
|
if(sujet.getNodes().size()==0) reponseSujet="oui";
|
||||||
|
retour = evaluationPiedPagePasActive(retour,null, reponseSujet, sujet.getAttributs().get("evalPiedPagePasActive"),"Pied page");
|
||||||
}
|
}
|
||||||
return retour;
|
return retour;
|
||||||
}
|
}
|
||||||
@ -563,19 +544,16 @@ public class evaluationAttribut {
|
|||||||
*/
|
*/
|
||||||
private static node evalPiedDePageActive(node sujet, node nodeStudent, node retour, String nameElt) {
|
private static node evalPiedDePageActive(node sujet, node nodeStudent, node retour, String nameElt) {
|
||||||
if(nodeStudent!=null) {
|
if(nodeStudent!=null) {
|
||||||
int nbAs=0;
|
String reponseSujet = "non";
|
||||||
String reponseSujet = "oui";
|
String reponseStudent = "non";
|
||||||
String reponseStudent = "oui";
|
|
||||||
Enumeration<String> key1 = sujet.getAttributs().keys();
|
if(sujet.getNodes().size()>0) reponseSujet="oui";
|
||||||
key1 = nodeStudent.getAttributs().keys();
|
if(nodeStudent.getNodes().size()>0) reponseStudent="oui";
|
||||||
while(key1.hasMoreElements()) {
|
|
||||||
String k1 = key1.nextElement();
|
|
||||||
if(listeAttributsAnalyseWriter.isAttributAnalyseWriter(k1)) nbAs++;
|
|
||||||
}
|
|
||||||
if(nbAs<=0)reponseStudent = "non";
|
|
||||||
retour = evaluationPiedPageActive(retour,reponseStudent,reponseSujet , sujet.getAttributs().get("evalPiedPageActive"),"Pied page");
|
retour = evaluationPiedPageActive(retour,reponseStudent,reponseSujet , sujet.getAttributs().get("evalPiedPageActive"),"Pied page");
|
||||||
}else {
|
}else {
|
||||||
retour = evaluationPiedPageActive(retour,null, "Pas trouvé le node de l'étudiant", sujet.getAttributs().get("evalPiedPageActive"),"Pied page");
|
String reponseSujet = "non";
|
||||||
|
if(sujet.getNodes().size()>0) reponseSujet="oui";
|
||||||
|
retour = evaluationPiedPageActive(retour,null, reponseSujet, sujet.getAttributs().get("evalPiedPageActive"),"Pied page");
|
||||||
}
|
}
|
||||||
return retour;
|
return retour;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user