2022-06-05 18:42:06 +02:00
|
|
|
package app;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Enumeration;
|
|
|
|
import java.util.List;
|
2022-06-09 17:49:22 +02:00
|
|
|
import java.util.regex.Matcher;
|
|
|
|
import java.util.regex.Pattern;
|
2022-06-05 18:42:06 +02:00
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
|
|
import javax.swing.JEditorPane;
|
|
|
|
|
2022-06-09 09:13:46 +02:00
|
|
|
import MEPTL.commandes;
|
2022-06-05 18:42:06 +02:00
|
|
|
import cXML.node;
|
2022-06-11 12:10:28 +02:00
|
|
|
import calcul.calculIntervalleBaremeABCDE;
|
|
|
|
import calcul.calculNotesProgression;
|
|
|
|
import calcul.listeAttributsAnalyseWriter;
|
2022-06-05 18:42:06 +02:00
|
|
|
|
|
|
|
public class afficheText extends JEditorPane {
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
|
|
public void refreshAffichage(node nod) {
|
|
|
|
|
|
|
|
if(nod!=null) {
|
|
|
|
setContentType("text/html");
|
|
|
|
node nodeParent = nod.getParent();
|
|
|
|
|
2022-06-09 17:49:22 +02:00
|
|
|
String imageAllContent = "<img src="+afficheText.class.getResource("/resources/allcontentmini.png").toString()+">";
|
|
|
|
String imageTitre = "<img src="+afficheText.class.getResource("/resources/titremini.png").toString()+">";
|
|
|
|
String imageSaut = "<img src="+afficheText.class.getResource("/resources/sautmini.png").toString()+">";
|
|
|
|
String imageaddmenu = "<img src="+afficheText.class.getResource("/resources/addmenumini.png").toString()+">";
|
|
|
|
String imagerechercheIndex = "<img src="+afficheText.class.getResource("/resources/rechercheindexmini.png").toString()+">";
|
|
|
|
String imagerechercheContenuExact = "<img src="+afficheText.class.getResource("/resources/recherchecontenumini.png").toString()+">";
|
|
|
|
String imagereanalyseStyle = "<img src="+afficheText.class.getResource("/resources/evaluerstylemini.png").toString()+">";
|
|
|
|
String imagereEvaleNode = "<img src="+afficheText.class.getResource("/resources/evalnodemini.png").toString()+">";
|
|
|
|
String imagereRechercheAncragePage= "<img src="+afficheText.class.getResource("/resources/rechercheancragepagemini.png").toString()+">";
|
2022-06-09 20:35:59 +02:00
|
|
|
String imagereRecherchePlusProcheVoisin= "<img src="+afficheText.class.getResource("/resources/recherchecontenuplusprochevoisinmini.png").toString()+">";
|
2022-06-10 12:24:43 +02:00
|
|
|
String imagerePremierAuteur= "<img src="+afficheText.class.getResource("/resources/auteurcreateurmini.png").toString()+">";
|
|
|
|
String imagereDernierEditeur= "<img src="+afficheText.class.getResource("/resources/auteurediteurmini.png").toString()+">";
|
2022-06-09 17:49:22 +02:00
|
|
|
|
2022-06-05 18:42:06 +02:00
|
|
|
|
|
|
|
StringBuilder sb = new StringBuilder();
|
|
|
|
|
|
|
|
sb.append(baliseStyle.balise());
|
|
|
|
|
|
|
|
sb.append("<p class=\"p1\">Parent = " + nodeParent.getNomElt() + "</p><br>");
|
2022-06-05 21:06:41 +02:00
|
|
|
sb.append("<hr><br><h1>Nom du node : " + nod.getNomElt() + "</h1><br><hr>");
|
2022-06-06 09:50:45 +02:00
|
|
|
if(nod.getNomElt().equals("style:style")) {
|
|
|
|
sb.append("<h2>Nom du style : " + nod.getAttributs().get("style:name")+ "</h2><br>");
|
|
|
|
}
|
2022-06-05 21:06:41 +02:00
|
|
|
if(nod.getAttributs().get("evaluer")!=null) if(nod.getAttributs().get("evaluer").equalsIgnoreCase("true")) {
|
2022-06-06 09:50:45 +02:00
|
|
|
sb.append("<p><img src="+afficheText.class.getResource("/resources/evalwriter.png").toString()+"> Ce node est évalué.</p>");
|
2022-06-05 21:06:41 +02:00
|
|
|
}
|
|
|
|
|
2022-06-05 18:42:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
if(nod.getAttributs().size()>0) {
|
|
|
|
if(nod.getAttributs().size()==1) sb.append("<br><h4><u>L'ATTRIBUT DU NODE</u></h4>");
|
|
|
|
if(nod.getAttributs().size()>1) sb.append("<br><h4><u>LES ATTRIBUTS DU NODE</u></h4>");
|
|
|
|
}
|
|
|
|
if(nod.getAttributs().size()<=0) {
|
|
|
|
if(nod.getAttributs().size()==1) sb.append("<br><h4><u>PAS D'ATTRIBUT DANS CE NODE</u></h4>");
|
|
|
|
}
|
|
|
|
|
|
|
|
Enumeration<String> key = nod.getAttributs().keys();
|
|
|
|
List<String> Lesattributsdunode = new ArrayList<String>();
|
|
|
|
while(key.hasMoreElements()) {
|
|
|
|
String K = key.nextElement();
|
|
|
|
Lesattributsdunode.add(K);
|
|
|
|
}
|
|
|
|
//permet le tri par ordre alphabétique des clés du dictionnaire
|
|
|
|
Lesattributsdunode = Lesattributsdunode.stream().sorted().collect(Collectors.toList());
|
|
|
|
|
|
|
|
if(nod.getAttributs().get("evaluer")!=null) if(nod.getAttributs().get("evaluer").equalsIgnoreCase("true")) {
|
|
|
|
sb.append("<br>");
|
|
|
|
sb.append("<ul>");
|
2022-06-05 21:06:41 +02:00
|
|
|
sb.append("<li class=\"p4\"><b><u>Les attributs d'analyseWriter</u></b></li>");
|
2022-06-05 18:42:06 +02:00
|
|
|
for(int i=0; i < Lesattributsdunode.size();i++) {
|
|
|
|
if(listeAttributsAnalyseWriter.isAttributAnalyseWriter(Lesattributsdunode.get(i))) {
|
2022-06-09 17:49:22 +02:00
|
|
|
if(Lesattributsdunode.get(i).equals("allContent")) {
|
2022-06-09 20:55:42 +02:00
|
|
|
Pattern p = Pattern.compile("[1-9]$|[0-9]{2,}$");
|
2022-06-09 17:49:22 +02:00
|
|
|
Matcher m = p.matcher(nod.getAttributs().get(Lesattributsdunode.get(i)));
|
|
|
|
if(m.find()) {
|
|
|
|
sb.append("<li class=\"p4\">"+imageAllContent + " <b>" + Lesattributsdunode.get(i) + "=\"" + nod.getAttributs().get(Lesattributsdunode.get(i))+"\"</b></li>");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(Lesattributsdunode.get(i).equals("titre")||Lesattributsdunode.get(i).equals("titre1")||Lesattributsdunode.get(i).equals("titre2")||Lesattributsdunode.get(i).equals("titre3")) {
|
2022-06-11 16:53:59 +02:00
|
|
|
if(nod.getAttributs().get(Lesattributsdunode.get(i)).length()>0) {
|
2022-06-09 17:49:22 +02:00
|
|
|
sb.append("<li class=\"p4\">"+imageTitre + " <b>" + Lesattributsdunode.get(i) + "=\"" + nod.getAttributs().get(Lesattributsdunode.get(i))+"\"</b></li>");
|
2022-06-11 12:10:28 +02:00
|
|
|
}
|
2022-06-09 17:49:22 +02:00
|
|
|
}
|
|
|
|
if(Lesattributsdunode.get(i).equals("saut") && nod.getAttributs().get(Lesattributsdunode.get(i)).equals("true")) {
|
|
|
|
sb.append("<li class=\"p4\">"+imageSaut + " <b>" + Lesattributsdunode.get(i) + "=\"" + nod.getAttributs().get(Lesattributsdunode.get(i))+"\"</b></li>");
|
|
|
|
}
|
|
|
|
if(Lesattributsdunode.get(i).equals("addmenu") && nod.getAttributs().get(Lesattributsdunode.get(i)).equals("true")) {
|
|
|
|
sb.append("<li class=\"p4\">"+imageaddmenu + " <b>" + Lesattributsdunode.get(i) + "=\"" + nod.getAttributs().get(Lesattributsdunode.get(i))+"\"</b></li>");
|
|
|
|
}
|
|
|
|
if(Lesattributsdunode.get(i).equals("recherche_index") && nod.getAttributs().get(Lesattributsdunode.get(i)).equals("true")) {
|
|
|
|
sb.append("<li class=\"p4\">"+imagerechercheIndex + " <b>" + Lesattributsdunode.get(i) + "=\"" + nod.getAttributs().get(Lesattributsdunode.get(i))+"\"</b></li>");
|
|
|
|
}
|
|
|
|
if(Lesattributsdunode.get(i).equals("recherche_contenu_exact") && nod.getAttributs().get(Lesattributsdunode.get(i)).equals("true")) {
|
|
|
|
sb.append("<li class=\"p4\">"+imagerechercheContenuExact + " <b>" + Lesattributsdunode.get(i) + "=\"" + nod.getAttributs().get(Lesattributsdunode.get(i))+"\"</b></li>");
|
|
|
|
}
|
|
|
|
if(Lesattributsdunode.get(i).equals("analyseStyle") && nod.getAttributs().get(Lesattributsdunode.get(i)).equals("true")) {
|
|
|
|
sb.append("<li class=\"p4\">"+imagereanalyseStyle + " <b>" + Lesattributsdunode.get(i) + "=\"" + nod.getAttributs().get(Lesattributsdunode.get(i))+"\"</b></li>");
|
|
|
|
}
|
|
|
|
if(Lesattributsdunode.get(i).equals("evalNameNode") && !nod.getAttributs().get(Lesattributsdunode.get(i)).equals("0")) {
|
|
|
|
sb.append("<li class=\"p4\">"+imagereEvaleNode + " <b>" + Lesattributsdunode.get(i) + "=\"" + nod.getAttributs().get(Lesattributsdunode.get(i))+"\"</b></li>");
|
|
|
|
}
|
|
|
|
if(Lesattributsdunode.get(i).equals("recherche_anchor-page-number") && nod.getAttributs().get(Lesattributsdunode.get(i)).equals("true")) {
|
|
|
|
sb.append("<li class=\"p4\">"+imagereRechercheAncragePage + " <b>" + Lesattributsdunode.get(i) + "=\"" + nod.getAttributs().get(Lesattributsdunode.get(i))+"\"</b></li>");
|
|
|
|
}
|
2022-06-09 20:35:59 +02:00
|
|
|
if(Lesattributsdunode.get(i).equals("recherche_contenu_plus_proche_voisin") && nod.getAttributs().get(Lesattributsdunode.get(i)).equals("true")) {
|
|
|
|
sb.append("<li class=\"p4\">"+imagereRecherchePlusProcheVoisin + " <b>" + Lesattributsdunode.get(i) + "=\"" + nod.getAttributs().get(Lesattributsdunode.get(i))+"\"</b></li>");
|
|
|
|
}
|
2022-06-10 12:24:43 +02:00
|
|
|
if(Lesattributsdunode.get(i).equals("evalNameInitialCreator") && !nod.getAttributs().get(Lesattributsdunode.get(i)).equals("0")) {
|
|
|
|
sb.append("<li class=\"p4\">"+imagerePremierAuteur + " <b>" + Lesattributsdunode.get(i) + "=\"" + nod.getAttributs().get(Lesattributsdunode.get(i))+"\"</b></li>");
|
|
|
|
}
|
|
|
|
if(Lesattributsdunode.get(i).equals("evalNameCreator") && !nod.getAttributs().get(Lesattributsdunode.get(i)).equals("0")) {
|
|
|
|
sb.append("<li class=\"p4\">"+imagereDernierEditeur + " <b>" + Lesattributsdunode.get(i) + "=\"" + nod.getAttributs().get(Lesattributsdunode.get(i))+"\"</b></li>");
|
|
|
|
}
|
2022-06-09 20:35:59 +02:00
|
|
|
|
|
|
|
|
2022-06-09 17:49:22 +02:00
|
|
|
|
|
|
|
// sb.append("<li class=\"p4\"><b>" + Lesattributsdunode.get(i) + "=\"" + nod.getAttributs().get(Lesattributsdunode.get(i))+"\"</b></li>");
|
2022-06-05 18:42:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
sb.append("</ul>");
|
|
|
|
sb.append("<br>");
|
|
|
|
sb.append("<ul>");
|
|
|
|
sb.append("<li class=\"p2\"><b><u>Les attributs de Writer</u></b></li>");
|
|
|
|
for(int i=0; i < Lesattributsdunode.size();i++) {
|
|
|
|
if(!listeAttributsAnalyseWriter.isAttributAnalyseWriter(Lesattributsdunode.get(i))) {
|
|
|
|
sb.append("<li class=\"p2\"><b>" + Lesattributsdunode.get(i) + "=\"" + nod.getAttributs().get(Lesattributsdunode.get(i))+"\"</b></li>");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sb.append("</ul>");
|
|
|
|
}
|
|
|
|
|
|
|
|
if(nod.getAttributs().get("evaluer")!=null) if(!nod.getAttributs().get("evaluer").equalsIgnoreCase("true")) {
|
|
|
|
sb.append("<br>");
|
|
|
|
sb.append("<ul>");
|
|
|
|
sb.append("<li class=\"p3\"><b><u>Les attributs d'analyseWriter</u></b></li>");
|
|
|
|
for(int i=0; i < Lesattributsdunode.size();i++) {
|
|
|
|
if(listeAttributsAnalyseWriter.isAttributAnalyseWriter(Lesattributsdunode.get(i))) {
|
|
|
|
sb.append("<li class=\"p3\"><b>" + Lesattributsdunode.get(i) + "=\"" + nod.getAttributs().get(Lesattributsdunode.get(i))+"\"</b></li>");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sb.append("</ul>");
|
|
|
|
sb.append("<br>");
|
|
|
|
sb.append("<ul>");
|
|
|
|
sb.append("<li class=\"p3\"><b><u>Les attributs de Writer</u></b></li>");
|
|
|
|
for(int i=0; i < Lesattributsdunode.size();i++) {
|
|
|
|
if(!listeAttributsAnalyseWriter.isAttributAnalyseWriter(Lesattributsdunode.get(i))) {
|
|
|
|
sb.append("<li class=\"p3\"><b>" + Lesattributsdunode.get(i) + "=\"" + nod.getAttributs().get(Lesattributsdunode.get(i))+"\"</b></li>");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sb.append("</ul>");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(nod.getAttributs().size()>0) {
|
|
|
|
if(nod.getAttributs().get("evaluer")==null) {
|
|
|
|
sb.append("<br>");
|
|
|
|
sb.append("<ul>");
|
|
|
|
sb.append("<li class=\"p3\"><b><u>Les attributs d'analyseWriter</u></b></li>");
|
|
|
|
for(int i=0; i < Lesattributsdunode.size();i++) {
|
|
|
|
if(listeAttributsAnalyseWriter.isAttributAnalyseWriter(Lesattributsdunode.get(i))) {
|
|
|
|
sb.append("<li class=\"p3\"><b>" + Lesattributsdunode.get(i) + "=\"" + nod.getAttributs().get(Lesattributsdunode.get(i))+"\"</b></li>");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sb.append("</ul>");
|
|
|
|
sb.append("<br>");
|
|
|
|
sb.append("<ul>");
|
|
|
|
sb.append("<li class=\"p3\"><b><u>Les attributs de Writer</u></b></li>");
|
|
|
|
for(int i=0; i < Lesattributsdunode.size();i++) {
|
|
|
|
if(!listeAttributsAnalyseWriter.isAttributAnalyseWriter(Lesattributsdunode.get(i))) {
|
|
|
|
sb.append("<li class=\"p3\"><b>" + Lesattributsdunode.get(i) + "=\"" + nod.getAttributs().get(Lesattributsdunode.get(i))+"\"</b></li>");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sb.append("</ul>");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(!nod.retourneLesContenusEnfants("").trim().isEmpty()) {
|
2022-06-09 17:49:22 +02:00
|
|
|
sb.append("<br><br><h4><u>Contenu</u></h4><br>" + nod.retourneLesContenusEnfants("") );
|
2022-06-05 18:42:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
setText("<html>"+sb.toString()+"</html>");
|
|
|
|
}
|
|
|
|
if(nod==null) {
|
|
|
|
setText("");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2022-06-06 18:59:42 +02:00
|
|
|
|
2022-06-09 09:13:46 +02:00
|
|
|
public void AfficheTotalPoint(node nod, int pointTotalNode) {
|
2022-06-06 18:59:42 +02:00
|
|
|
|
|
|
|
setContentType("text/html");
|
|
|
|
node nodeParent = nod.getParent();
|
|
|
|
|
|
|
|
|
|
|
|
StringBuilder sb = new StringBuilder();
|
|
|
|
|
|
|
|
sb.append(baliseStyle.balise());
|
|
|
|
|
|
|
|
if(nodeParent!=null) {
|
|
|
|
sb.append("<p class=\"p1\">Parent = " + nodeParent.getNomElt() + "</p><br>");
|
|
|
|
}
|
|
|
|
sb.append("<hr><br><h1>Total des points dans le node : " + nod.getNomElt() + "</h1><br><hr>");
|
|
|
|
|
|
|
|
sb.append("<p class=\"p5\">Uniquement les nodes évalués</p>");
|
2022-06-09 09:13:46 +02:00
|
|
|
sb.append("<p class=\"p5\">TOTAL POINT = " + String.valueOf(pointTotalNode) + "</p>");
|
2022-06-06 18:59:42 +02:00
|
|
|
|
|
|
|
setText("<html>"+sb.toString()+"</html>");
|
|
|
|
}
|
|
|
|
|
2022-06-09 09:13:46 +02:00
|
|
|
|
|
|
|
public void afficheChargementFichierAnalyse(){
|
|
|
|
|
|
|
|
|
|
|
|
StringBuilder text = new StringBuilder();
|
|
|
|
text.append(baliseStyle.balise());
|
|
|
|
text.append("<hr><h1><u>INFORMATIONS</u><h1><hr><br>");
|
|
|
|
text.append("<h3>Le titre de l'exercice est : <u>" + commandes.analyse_titre+"</u></h3>");
|
|
|
|
text.append("<p>Le sujet (metaSujet) est : <b>" + commandes.analyse_metaSujet+"</b></p>");
|
|
|
|
text.append("<p>L'auteur de l'exercice est : <b>" + commandes.analyse_auteur+"</b></p>");
|
|
|
|
if(commandes.analyse_baremeABC==true) {
|
|
|
|
text.append("<br><p>La notation est sous la forme d'une <b><u>note alphabétique ABCDE</u></b>.</p>");
|
|
|
|
text.append("<p>La progression est de <b>" + String.valueOf(commandes.analyse_progression)+ "</b></p>");
|
2022-06-11 12:10:28 +02:00
|
|
|
calcul.calculIntervalleBaremeABCDE C = new calculIntervalleBaremeABCDE(commandes.analyse_progression);
|
|
|
|
text.append("<p>" + C.getMessageLigne() + "</p>");
|
2022-06-09 09:13:46 +02:00
|
|
|
}else {
|
|
|
|
text.append("<p>La notation est sous la forme d'une <b><u>note numérique</u></b>.</p>");
|
|
|
|
text.append("<p>Le barème est sur <b>" + String.valueOf(commandes.analyse_notefrom)+ "</b></p>");
|
|
|
|
text.append("<p>La progression est de <b>" + String.valueOf(commandes.analyse_progression) + "</b></p>");
|
2022-06-11 12:10:28 +02:00
|
|
|
calculNotesProgression C = new calculNotesProgression(commandes.analyse_progression, commandes.analyse_notefrom);
|
|
|
|
text.append("<p>" + C.getMessageLigne() + "</p>");
|
2022-06-09 09:13:46 +02:00
|
|
|
}
|
|
|
|
text.append("<br>");
|
|
|
|
text.append("<p>Le nom du fichier : <b>" + commandes.analysis_filename + "</b></p>");
|
|
|
|
text.append("<p>Le hash de l'évaluation est : <b>" + commandes.hash + "<b></p>");
|
|
|
|
text.append("<br>");
|
|
|
|
text.append("<p>Historiques des modifications present : <b>" + commandes.analyse_historiquePresent + "</b></p>");
|
|
|
|
text.append("<br>");
|
|
|
|
text.append("<p>Verification de la presence metaSujet : <b>" + commandes.analyse_presenceMetaSujet + "</b></p>");
|
|
|
|
text.append("<br>");
|
|
|
|
text.append("<p>Contrôle la date de céation : <b>" + commandes.analyse_controleDateCreation+ "</b></p>");
|
|
|
|
text.append("<br>");
|
|
|
|
text.append("<p>Contrôle l'auteur initial du fichier : <b>" + commandes.analyse_controle_Initial_Creator + "</b></p>");
|
|
|
|
text.append("<br>");
|
|
|
|
text.append("<p>Dossier de l'analyse contenant les fichiers des étudiants :</p>");
|
2022-06-11 12:10:28 +02:00
|
|
|
text.append("<p class=\"city\"><b>"+commandes.path+"</b></p>");
|
2022-06-09 17:49:22 +02:00
|
|
|
text.append("<br>");
|
|
|
|
text.append("<br><p>Fichier d'analyse :</p>");
|
2022-06-11 12:10:28 +02:00
|
|
|
text.append("<p class=\"city\"><b>"+commandes.PathFilenameAnalysis+"</b></p>");
|
2022-06-09 20:35:59 +02:00
|
|
|
|
2022-06-09 09:13:46 +02:00
|
|
|
|
2022-06-09 20:35:59 +02:00
|
|
|
setContentType("text/html");
|
2022-06-09 09:13:46 +02:00
|
|
|
setText(text.toString());
|
|
|
|
}
|
|
|
|
|
2022-06-05 18:42:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|