MAJ (Ajout d'un drapeau pour ne pas faire apparaître les détails dans
les feedbacks des étudiants)
This commit is contained in:
parent
80e246ea09
commit
3eaed5f3bb
Binary file not shown.
Binary file not shown.
1
bin/.gitignore
vendored
1
bin/.gitignore
vendored
@ -1 +1,2 @@
|
||||
/fenetres/
|
||||
/MEPTL/
|
||||
|
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.
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.
@ -190,14 +190,17 @@ public class HTML {
|
||||
+ "</tr>\r\n" +
|
||||
"</table>";
|
||||
|
||||
if(!commandes.noDetail) {
|
||||
return "<table width=\"80%\" align=\"center\" cellpadding=\"4\" cellspacing=\"0\" style=\"page-break-after: avoid\">\r\n" +
|
||||
"<col width=\"100%\"/>"
|
||||
+ "<tr valign=\"top\">"
|
||||
+ "<td width=\"15%\" style=\"border-top: 0px solid #000000; border-bottom: 0px solid #000000; border-left: 0px solid #000000; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 1.2cm; padding-right: 0cm\"><p>" +
|
||||
"├ <a href=\"" + id + "\"><font size=\"3\">" + titre +"</font></p></td>"
|
||||
+ "</tr>\r\n" +
|
||||
"</table>";
|
||||
}
|
||||
|
||||
return "<table width=\"80%\" align=\"center\" cellpadding=\"4\" cellspacing=\"0\" style=\"page-break-after: avoid\">\r\n" +
|
||||
"<col width=\"100%\"/>"
|
||||
+ "<tr valign=\"top\">"
|
||||
+ "<td width=\"15%\" style=\"border-top: 0px solid #000000; border-bottom: 0px solid #000000; border-left: 0px solid #000000; border-right: none; padding-top: 0.1cm; padding-bottom: 0.1cm; padding-left: 1.2cm; padding-right: 0cm\"><p>" +
|
||||
"├ <a href=\"" + id + "\"><font size=\"3\">" + titre +"</font></p></td>"
|
||||
+ "</tr>\r\n" +
|
||||
"</table>";
|
||||
return "";
|
||||
|
||||
// return "<table width=\"80%\" align=\"center\" cellpadding=\"4\" cellspacing=\"0\" style=\"page-break-after: avoid\">\r\n" +
|
||||
// "<col width=\"30%\"/><col width=\"20%\"/><col width=\"20%\"/><col width=\"20%\"/><col width=\"10%\"/>"
|
||||
|
@ -54,6 +54,7 @@ public class commandes {
|
||||
public static boolean fourniCSV = false; // fourni le fichier CSV contenant la liste des étudiants
|
||||
public static boolean badCommand = false ; //erreur dans les commandes
|
||||
public static boolean noNote =false; // pas de note dans les feedbacks
|
||||
public static boolean noDetail = false; // pas de détail dans les feedbacks
|
||||
public static boolean noLogo =false; // pas de logo dans les feedbacks
|
||||
public static boolean newLogo=false; // un nouveau logo dans le feedback
|
||||
public static boolean licence = false; // affiche la licence
|
||||
|
@ -247,8 +247,11 @@ public class feedbacks {
|
||||
|
||||
fichier.append("</div>");
|
||||
|
||||
//ajoute le menu
|
||||
fichier.append(HTML.getHTMLmenu(nodana.retourneFirstEnfantsByName("menu").getNodes()));
|
||||
//ajoute le menu si pas de détails
|
||||
if(!commandes.noDetail) {
|
||||
fichier.append(HTML.getHTMLmenu(nodana.retourneFirstEnfantsByName("menu").getNodes()));
|
||||
}
|
||||
|
||||
|
||||
|
||||
//Les erreurs
|
||||
@ -290,65 +293,68 @@ public class feedbacks {
|
||||
fichier.append(HTML.TableEnteteTableurSynthese());
|
||||
fichier = SyntheseTable(nodana,fichier);
|
||||
|
||||
//Metadonnées
|
||||
if(nodana.retourneFirstEnfantsByName("meta")!=null) if(nodana.retourneFirstEnfantsByName("meta").isClose()) {
|
||||
fichier.append(HTML.Table(nodana.retourneFirstEnfantsByName("meta")));
|
||||
if(!commandes.noDetail) {
|
||||
//Metadonnées
|
||||
if(nodana.retourneFirstEnfantsByName("meta")!=null) if(nodana.retourneFirstEnfantsByName("meta").isClose()) {
|
||||
fichier.append(HTML.Table(nodana.retourneFirstEnfantsByName("meta")));
|
||||
}
|
||||
|
||||
//style de paragraphe
|
||||
if(nodana.retourneFirstEnfantsByName("paragraphs")!=null) if(nodana.retourneFirstEnfantsByName("paragraphs").isClose()) {
|
||||
fichier.append(HTML.Table(nodana.retourneFirstEnfantsByName("paragraphs")));
|
||||
}
|
||||
|
||||
//pages
|
||||
if(nodana.retourneFirstEnfantsByName("pages")!=null) if(nodana.retourneFirstEnfantsByName("pages").isClose()) {
|
||||
fichier.append(HTML.Table(nodana.retourneFirstEnfantsByName("pages")));
|
||||
}
|
||||
|
||||
//sequences
|
||||
if(nodana.retourneFirstEnfantsByName("sequences")!=null) if(nodana.retourneFirstEnfantsByName("sequences").isClose()) {
|
||||
fichier.append(HTML.Table(nodana.retourneFirstEnfantsByName("sequences")));
|
||||
}
|
||||
|
||||
//numerotationchapitre
|
||||
if(nodana.retourneFirstEnfantsByName("numerotationchapitre")!=null) if(nodana.retourneFirstEnfantsByName("numerotationchapitre").isClose()) {
|
||||
fichier.append(HTML.Table(nodana.retourneFirstEnfantsByName("numerotationchapitre")));
|
||||
}
|
||||
|
||||
//frames
|
||||
if(nodana.retourneFirstEnfantsByName("frames")!=null) if(nodana.retourneFirstEnfantsByName("frames").isClose()) {
|
||||
fichier.append(HTML.Table(nodana.retourneFirstEnfantsByName("frames")));
|
||||
}
|
||||
|
||||
//section
|
||||
if(nodana.retourneFirstEnfantsByName("sections")!=null) if(nodana.retourneFirstEnfantsByName("sections").isClose()) {
|
||||
fichier.append(HTML.Table(nodana.retourneFirstEnfantsByName("sections")));
|
||||
}
|
||||
|
||||
//tableau
|
||||
if(nodana.retourneFirstEnfantsByName("tableaux")!=null) if(nodana.retourneFirstEnfantsByName("tableaux").isClose()) {
|
||||
fichier.append(HTML.Table(nodana.retourneFirstEnfantsByName("tableaux")));
|
||||
}
|
||||
|
||||
//bibliographies
|
||||
if(nodana.retourneFirstEnfantsByName("bibliographies")!=null) if(nodana.retourneFirstEnfantsByName("bibliographies").isClose()) {
|
||||
fichier.append(HTML.Table(nodana.retourneFirstEnfantsByName("bibliographies")));
|
||||
}
|
||||
|
||||
//tablematieres
|
||||
if(nodana.retourneFirstEnfantsByName("tablematieres")!=null) if(nodana.retourneFirstEnfantsByName("tablematieres").isClose()) {
|
||||
fichier.append(HTML.Table(nodana.retourneFirstEnfantsByName("tablematieres")));
|
||||
}
|
||||
|
||||
//tableillustrations
|
||||
if(nodana.retourneFirstEnfantsByName("tableillustrations")!=null) if(nodana.retourneFirstEnfantsByName("tableillustrations").isClose()) {
|
||||
fichier.append(HTML.Table(nodana.retourneFirstEnfantsByName("tableillustrations")));
|
||||
}
|
||||
|
||||
//structurepage
|
||||
if(nodana.retourneFirstEnfantsByName("structurepage")!=null) if(nodana.retourneFirstEnfantsByName("structurepage").isClose()) {
|
||||
fichier.append(HTML.Table(nodana.retourneFirstEnfantsByName("structurepage")));
|
||||
}
|
||||
}
|
||||
|
||||
//style de paragraphe
|
||||
if(nodana.retourneFirstEnfantsByName("paragraphs")!=null) if(nodana.retourneFirstEnfantsByName("paragraphs").isClose()) {
|
||||
fichier.append(HTML.Table(nodana.retourneFirstEnfantsByName("paragraphs")));
|
||||
}
|
||||
|
||||
//pages
|
||||
if(nodana.retourneFirstEnfantsByName("pages")!=null) if(nodana.retourneFirstEnfantsByName("pages").isClose()) {
|
||||
fichier.append(HTML.Table(nodana.retourneFirstEnfantsByName("pages")));
|
||||
}
|
||||
|
||||
//sequences
|
||||
if(nodana.retourneFirstEnfantsByName("sequences")!=null) if(nodana.retourneFirstEnfantsByName("sequences").isClose()) {
|
||||
fichier.append(HTML.Table(nodana.retourneFirstEnfantsByName("sequences")));
|
||||
}
|
||||
|
||||
//numerotationchapitre
|
||||
if(nodana.retourneFirstEnfantsByName("numerotationchapitre")!=null) if(nodana.retourneFirstEnfantsByName("numerotationchapitre").isClose()) {
|
||||
fichier.append(HTML.Table(nodana.retourneFirstEnfantsByName("numerotationchapitre")));
|
||||
}
|
||||
|
||||
//frames
|
||||
if(nodana.retourneFirstEnfantsByName("frames")!=null) if(nodana.retourneFirstEnfantsByName("frames").isClose()) {
|
||||
fichier.append(HTML.Table(nodana.retourneFirstEnfantsByName("frames")));
|
||||
}
|
||||
|
||||
//section
|
||||
if(nodana.retourneFirstEnfantsByName("sections")!=null) if(nodana.retourneFirstEnfantsByName("sections").isClose()) {
|
||||
fichier.append(HTML.Table(nodana.retourneFirstEnfantsByName("sections")));
|
||||
}
|
||||
|
||||
//tableau
|
||||
if(nodana.retourneFirstEnfantsByName("tableaux")!=null) if(nodana.retourneFirstEnfantsByName("tableaux").isClose()) {
|
||||
fichier.append(HTML.Table(nodana.retourneFirstEnfantsByName("tableaux")));
|
||||
}
|
||||
|
||||
//bibliographies
|
||||
if(nodana.retourneFirstEnfantsByName("bibliographies")!=null) if(nodana.retourneFirstEnfantsByName("bibliographies").isClose()) {
|
||||
fichier.append(HTML.Table(nodana.retourneFirstEnfantsByName("bibliographies")));
|
||||
}
|
||||
|
||||
//tablematieres
|
||||
if(nodana.retourneFirstEnfantsByName("tablematieres")!=null) if(nodana.retourneFirstEnfantsByName("tablematieres").isClose()) {
|
||||
fichier.append(HTML.Table(nodana.retourneFirstEnfantsByName("tablematieres")));
|
||||
}
|
||||
|
||||
//tableillustrations
|
||||
if(nodana.retourneFirstEnfantsByName("tableillustrations")!=null) if(nodana.retourneFirstEnfantsByName("tableillustrations").isClose()) {
|
||||
fichier.append(HTML.Table(nodana.retourneFirstEnfantsByName("tableillustrations")));
|
||||
}
|
||||
|
||||
//structurepage
|
||||
if(nodana.retourneFirstEnfantsByName("structurepage")!=null) if(nodana.retourneFirstEnfantsByName("structurepage").isClose()) {
|
||||
fichier.append(HTML.Table(nodana.retourneFirstEnfantsByName("structurepage")));
|
||||
}
|
||||
|
||||
fichier.append("<p><br><br></p>");
|
||||
}
|
||||
|
@ -71,6 +71,7 @@ public class evaluate extends JFrame {
|
||||
private JCheckBox chckbxNoLogo;
|
||||
private JCheckBox chckbxVerif;
|
||||
private JCheckBox chckbxNewLogo;
|
||||
private JCheckBox chckbxNoDetail;
|
||||
private afficheText txtpnmessages;
|
||||
|
||||
|
||||
@ -198,6 +199,7 @@ public class evaluate extends JFrame {
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
chckbxNoNote.setToolTipText("Cochez si vous voulez pas faire apparaître les notes dans les feedbacks");
|
||||
chckbxNoNote.setFont(new Font("Tahoma", Font.PLAIN, 12));
|
||||
panelWest.add(chckbxNoNote, "cell 0 2,grow");
|
||||
@ -212,6 +214,21 @@ public class evaluate extends JFrame {
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
chckbxNoDetail = new JCheckBox("Pas de détails dans les feedbacks");
|
||||
chckbxNoDetail.addChangeListener(new ChangeListener() {
|
||||
public void stateChanged(ChangeEvent e) {
|
||||
if(chckbxNoDetail.isSelected()) {
|
||||
commandes.noDetail=true;
|
||||
}else {
|
||||
commandes.noDetail=false;
|
||||
}
|
||||
}
|
||||
});
|
||||
chckbxNoDetail.setToolTipText("Cochez si vous voulez que la table synthèse dans les feedbacks");
|
||||
chckbxNoDetail.setFont(new Font("Tahoma", Font.PLAIN, 12));
|
||||
panelWest.add(chckbxNoDetail, "cell 0 2");
|
||||
chckbxVerif.setToolTipText("Cochez si vous voulez vérifier les échanges de fichiers entre les étudiants.");
|
||||
chckbxVerif.setFont(new Font("Tahoma", Font.PLAIN, 12));
|
||||
panelWest.add(chckbxVerif, "cell 0 2,grow");
|
||||
@ -459,6 +476,7 @@ public class evaluate extends JFrame {
|
||||
chckbxNewLogo.setEnabled(false);
|
||||
chckbxNoLogo.setEnabled(false);
|
||||
chckbxVerif.setEnabled(false);
|
||||
chckbxNoDetail.setEnabled(false);
|
||||
}else {
|
||||
chckbxfichiersEtudiants.setEnabled(true);
|
||||
chckbxZipfeedback.setEnabled(true);
|
||||
@ -468,6 +486,7 @@ public class evaluate extends JFrame {
|
||||
chckbxNewLogo.setEnabled(true);
|
||||
chckbxNoLogo.setEnabled(true);
|
||||
chckbxVerif.setEnabled(true);
|
||||
chckbxNoDetail.setEnabled(true);
|
||||
|
||||
txtpnmessages.afficheChargementFichierAnalyse();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user