This commit is contained in:
pablo rodriguez 2022-11-25 16:19:31 +01:00
parent 590b3cdd60
commit d1afbcf303
29 changed files with 11 additions and 10 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1151,7 +1151,6 @@ public class meptl {
fichier.getNodes().add(nodmeta);
nodstylepage = a.numeroteNameNode(nodstylepage, "0"); //ajoute les numéros d'index et des attributs
fichier.getNodes().add(nodstylepage);
// nodstyleparagraphe=a.numeroteNameNode(nodstyleparagraphe, "0");
fichier.getNodes().add(nodstyleparagraphe);
// fichier.getNodes().add(nodstyleformatage);
fichier.getNodes().add(nodsequence);

View File

@ -584,7 +584,7 @@ public class rechercherUnNodeStudent {
valueAttributStudent=valueAttributStudent.replace("cm", "").replace("in", "");
double Valeur2 = Double.valueOf(valueAttributStudent);
System.out.println("Valeur student tab-stop="+Valeur2);
if((Valeur2>Valeur-tolerance)&&(Valeur2<Valeur+tolerance)) return A.get(i);
if((Valeur2>Valeur-2*tolerance)&&(Valeur2<Valeur+2*tolerance)) return A.get(i);
}
}

View File

@ -381,11 +381,11 @@ public class afficheText extends JEditorPane {
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>");
text.append("<p><b><u>Dossier de l'analyse contenant les fichiers des étudiants, feedbacks et notes</u></b> :</p>");
text.append("<p class=\"city\"><b>"+commandes.path+"</b></p>");
text.append("<br>");
text.append("<br><p>Fichier d'analyse :</p>");
text.append("<p class=\"city\"><b>"+commandes.PathFilenameAnalysis+"</b></p>");
text.append("<br><p><b><u>Fichier d'analyse</u></b> :</p>");
text.append("<p class=\"city\"><b>"+commandes.analysis_filename+"</b></p>");
setContentType("text/html");

View File

@ -356,6 +356,10 @@ public class evaluate extends JFrame {
JButton btnAfficheCodeFichierAnalyse = toolBar.add( actAboutFichierAnalyse );
btnAfficheCodeFichierAnalyse.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
}
});
btnAfficheCodeFichierAnalyse.setHideActionText(true);
btnAfficheCodeFichierAnalyse.setIcon(new ImageIcon(evaluate.class.getResource("/resources/fichierAnalyseInfo.png")));
toolBar.add(btnAfficheCodeFichierAnalyse);
@ -818,9 +822,7 @@ public class evaluate extends JFrame {
}else {
txtpnmessages.setText(baliseStyle.balise() + "<hr class=\"city\"><h1>*** Veuillez charger un fichier d'analyse ***</h1><hr>");
}
System.out.println( "Refresh Labels and texts" );
}
};

View File

@ -169,8 +169,8 @@ public class descriptionNode {
if(nameNode.equals("style:tab-stop")) descriptionNode = descriptionNode + "<p>Ce node est recherché par la valeur de l'attribut <b>\"style:position\"</b>."
+ "<br>Veuillez indiquer dans les consignes la valeur de cet attribut."
+ "<br>AnalyseWriter place par défaut une tolérance de <b><u>0,05 cm</u></b> sur la valeur de l'attribut pour le rechercher."
+ "<br>Il est conseillé de ne pas modifier la valeur de l'attribut dans <b>\"style:position\"</b>.</p>";
+ "<br>AnalyseWriter place par défaut une tolérance de <b><u>±0,05 cm</u></b> sur la valeur de l'attribut pour le rechercher."
+ "<br>Il est possible de placer des intevalles dans la valeur de l'attribut, par exemple <b>\"style:position=5.00cm→6.00cm\"</b>.</p>";