MAJ V4.5.0
This commit is contained in:
parent
bb1b4cb457
commit
4117891855
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
@ -188,6 +188,13 @@ public class VerificationHistorique {
|
||||
for(int i2 = 0 ; i2 < LesFichiers2.size(); i2++) {
|
||||
String nameStudent2 = LesFichiers2.get(i2).getAttributs().get("dossier");
|
||||
|
||||
if(commandes.analyse_exclure_name_creator) {
|
||||
String author = nameStudent2.toLowerCase();
|
||||
if(author.equalsIgnoreCase(commandes.analyse_auteur_exclure_historique)) {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
txt.setText(AffichageMessageEcran + "\n" + "Recherche correspondance avec " + nameStudent2);
|
||||
|
||||
ArrayList<node> HitoriqueDuFichier2 = LesFichiers2.get(i2).retourneEnfantsByName("text:changed-region", new ArrayList<node>());
|
||||
|
@ -676,7 +676,7 @@ public final class setting extends JFrame {
|
||||
commandes.number_match=Integer.valueOf(textFieldMiniCorrespondance.getText());
|
||||
commandes.mini_number_modification = Integer.valueOf(textFieldNbrMiniModification.getText());
|
||||
commandes.nombres_modifications_simultané_maxi = Integer.valueOf(textFieldMaxiModificationSimul.getText());
|
||||
commandes.analyse_auteur_exclure_historique = textFieldPremierAuteur.getText();
|
||||
commandes.analyse_auteur_exclure_historique = textFieldPremierAuteur.getText().trim().toLowerCase();
|
||||
commandes.analyse_exclure_name_creator=chckEclureCreateur.isSelected();
|
||||
|
||||
//** Validation similitude
|
||||
|
Loading…
x
Reference in New Issue
Block a user