MAJ V4.5.0

This commit is contained in:
pablo rodriguez 2024-04-02 16:31:26 +02:00
parent 4117891855
commit 3926751f49
5 changed files with 6 additions and 2 deletions

Binary file not shown.

Binary file not shown.

View File

@ -178,7 +178,7 @@ public class VerificationHistorique {
node N1 = HitoriqueDuFichier.get(j).getNodes().get(0);
if(commandes.analyse_exclure_name_creator) {
String author = N1.retourneFirstEnfantsByName("dc:creator").getContenu().toString().toLowerCase();
String author = N1.retourneFirstEnfantsByName("dc:creator").getContenu().toString().trim().toLowerCase();
if(author.equalsIgnoreCase(commandes.analyse_auteur_exclure_historique)) {
continue;
}
@ -189,7 +189,7 @@ public class VerificationHistorique {
String nameStudent2 = LesFichiers2.get(i2).getAttributs().get("dossier");
if(commandes.analyse_exclure_name_creator) {
String author = nameStudent2.toLowerCase();
String author = nameStudent2.trim().toLowerCase();
if(author.equalsIgnoreCase(commandes.analyse_auteur_exclure_historique)) {
continue;
}

View File

@ -1746,6 +1746,10 @@ public class meptl {
String note = "";
//** rechercher les correspondances avec le prénom et le nom de l'étudiant
//** correction des noms ayant des " - - " ou "- -" en "--"
if(identification.contains(" - - ")) identification.replaceAll(" - - ", "--");
if(identification.contains("- -")) identification.replaceAll("- -", "--");
if(identification.contains(" - ")) identification.replaceAll(" - ", "-");
String[] ident = identification.split(" "); //séparateur entre le prénom et le nom par un espace
node A=null;
if(ident.length==2) {