MAJ V4.5.0
This commit is contained in:
parent
4117891855
commit
3926751f49
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -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;
|
||||
}
|
||||
|
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user