V4.4.3
Dans le retourne le contenu textuel d'un node affiche [span] lorsque il s'agit d'un node text:span Dans la m"thode evalPlacement pour afficher le contenu du node avant, il remonte les nodes parent si ce sont des nodes text:span.
This commit is contained in:
parent
d66267e229
commit
6346f9824a
@ -12,6 +12,6 @@
|
||||
<classpathentry kind="lib" path="C:/Users/pabr6/git/analyseWriter/MEPTL/miglayout15-swing.jar"/>
|
||||
<classpathentry kind="lib" path="jgoodies-forms-1.8.0.jar" sourcepath="jgoodies-forms-1.8.0-sources.jar"/>
|
||||
<classpathentry kind="lib" path="C:/Users/pabr6/eclipse-workspace/Exportation documentation analyseWriter/plugins/documentation.analyseWriter_1.0.0.202212032022.jar"/>
|
||||
<classpathentry kind="lib" path="C:/Users/pabr6/eclipse-workspace/cXML.jar" sourcepath="/cXML"/>
|
||||
<classpathentry kind="lib" path="C:/Users/pabr6/eclipse-workspace/cXML.jar"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
|
Binary file not shown.
Binary file not shown.
1
base_evaluations_analyseWriter.xml
Normal file
1
base_evaluations_analyseWriter.xml
Normal file
File diff suppressed because one or more lines are too long
21
bin/.gitignore
vendored
21
bin/.gitignore
vendored
@ -1,5 +1,3 @@
|
||||
/MEPTL/
|
||||
/action/
|
||||
/calcul/
|
||||
/evaluer/
|
||||
/fenetres/
|
||||
@ -9,22 +7,3 @@
|
||||
/sousmenuEvaluation/
|
||||
/sousmenuRecherche/
|
||||
/sousmenuRepresentation/
|
||||
/verifhistoriquemini.png
|
||||
/verifhistoriquestudent.png
|
||||
/verifhistoriquestudent.svg
|
||||
/verifhistoriquestudentmini.png
|
||||
/versevaluate.png
|
||||
/versevaluate.svg
|
||||
/versevaluatemini.png
|
||||
/versfichierAnalyse.png
|
||||
/versfichierAnalyseModifmax.svg
|
||||
/voir.svg
|
||||
/voirmini.png
|
||||
/what.svg
|
||||
/whatmini.png
|
||||
/zip.png
|
||||
/zip.svg
|
||||
/zipmini.png
|
||||
/zipstudent.png
|
||||
/zipstudent.svg
|
||||
/zipstudentmini.png
|
||||
|
BIN
bin/MEPTL/VerificationHistorique.class
Normal file
BIN
bin/MEPTL/VerificationHistorique.class
Normal file
Binary file not shown.
BIN
bin/action/actOpenHistoriqueEvaluation.class
Normal file
BIN
bin/action/actOpenHistoriqueEvaluation.class
Normal file
Binary file not shown.
BIN
bin/action/actPathBaseEvaluations.class
Normal file
BIN
bin/action/actPathBaseEvaluations.class
Normal file
Binary file not shown.
Binary file not shown.
@ -654,14 +654,26 @@ public class evaluationAttribut {
|
||||
int calcul = 0;
|
||||
node nodeSujetfrereAvant = sujet.retourneLeNodeFrereAvant();
|
||||
node nodParentSujet = sujet.getParent();
|
||||
if(nodParentSujet!=null)if(sujet.getParent().getNomElt().equals("OU")) {
|
||||
if(nodParentSujet!=null)if(nodParentSujet.getNomElt().equals("OU")) {
|
||||
nodeSujetfrereAvant = nodParentSujet.retourneLeNodeFrereAvant();
|
||||
}
|
||||
if(nodeSujetfrereAvant!=null)if(nodeSujetfrereAvant.getNomElt().equals("OU")) {
|
||||
nodeSujetfrereAvant = nodeSujetfrereAvant.getNodes().get(0);
|
||||
}
|
||||
while(nodParentSujet.getNomElt().equals("text:span")) {
|
||||
nodParentSujet = nodParentSujet.getParent();
|
||||
sujet = sujet.getParent();
|
||||
}
|
||||
|
||||
|
||||
node nodeStudentfereAvant = nodeStudent.retourneLeNodeFrereAvant();
|
||||
//si le node frère avant est null alors traitement des nodes text:span (formatage local des caractères)
|
||||
if(nodeStudentfereAvant==null) {
|
||||
while(nodeStudent.getParent().getNomElt().equals("text:span")){
|
||||
nodeStudentfereAvant = nodeStudent.getParent().retourneLeNodeFrereAvant();
|
||||
nodeStudent = nodeStudent.getParent();
|
||||
}
|
||||
}
|
||||
if(nodeSujetfrereAvant==null) nodeSujetfrereAvant = new node();
|
||||
if(nodeStudentfereAvant==null) nodeStudentfereAvant = new node();
|
||||
String A = nodeSujetfrereAvant.retourneLesContenusEnfants("");
|
||||
|
@ -291,10 +291,13 @@ private void chargeEvaluationSelected(node evaluation) {
|
||||
commandes.ecritNoteCSV = Boolean.valueOf(evaluation.getAttributs().get("ecritNoteCSV"));
|
||||
commandes.newLogo = Boolean.valueOf(evaluation.getAttributs().get("newLogo"));
|
||||
commandes.noLogo = Boolean.valueOf(evaluation.getAttributs().get("noLogo"));
|
||||
|
||||
commandes.fourniCSV = Boolean.valueOf(evaluation.getAttributs().get("fourniCSV"));
|
||||
commandes.nameCSV = evaluation.getAttributs().get("nameCSV");
|
||||
|
||||
if(evaluation.getAttributs().get("analyse_nombres_modifications_simultané_maxi")!=null) {
|
||||
commandes.analyse_nombres_modifications_simultané_maxi = Integer.valueOf(evaluation.getAttributs().get("analyse_nombres_modifications_simultané_maxi"));
|
||||
}
|
||||
|
||||
commandes.fourniCSV = Boolean.valueOf(evaluation.getAttributs().get("fourniCSV"));
|
||||
commandes.nameSVG = evaluation.getAttributs().get("nameSVG");
|
||||
|
||||
@ -491,6 +494,7 @@ private node creationNodeEvaluation(node evaluation, String name) {
|
||||
evaluation.getAttributs().put("ecritNoteCSV", String.valueOf(commandes.ecritNoteCSV) );
|
||||
evaluation.getAttributs().put("newLogo", String.valueOf(commandes.newLogo) );
|
||||
evaluation.getAttributs().put("noLogo", String.valueOf(commandes.noLogo) );
|
||||
evaluation.getAttributs().put("analyse_nombres_modifications_simultané_maxi", String.valueOf(commandes.analyse_nombres_modifications_simultané_maxi) );
|
||||
|
||||
//Supprime le node fichier s'il existe.
|
||||
node nodremove = evaluation.retourneFirstEnfantsByName("fichier");
|
||||
|
Loading…
Reference in New Issue
Block a user