";
echo "Importation des MCC d'un semestre
";
- echo "
(Fichier .xlsx suivant le modèle : modèle de fichier ) ";
+ echo "
(Fichier .xlsx suivant le modèle : modèle de fichier ) ";
/**********************/
diff --git a/page/settings.php b/page/settings.php
index 03e823b..2da73bc 100755
--- a/page/settings.php
+++ b/page/settings.php
@@ -40,24 +40,37 @@ require_once __ROOT__.'/manager/security.php';
-/***************/
-/*** PROFILE ***/
-/***************/
+/**************/
+/*** PROFIL ***/
+/**************/
if( connected() ){ // si l'utilisateur est connecté
$infos = userRepo::info($_SESSION['identifiant']);
$droits = explode(',', $infos['droits']);
+
echo "
";
- echo '';
- echo 'Nom : '.ucfirst($infos['nom']).' ';
- echo 'Prénom : '.ucfirst($infos['prenom']).' ';
- echo 'Statut : ';
+
+ echo '
';
+ echo 'Identifiant '.$infos['identifiant'] .' ';
+ echo 'Prénom ' .ucfirst($infos['prenom']).' ';
+ echo 'Nom ' .strtoupper($infos['nom']).' ';
+ echo 'Statut ';
+ $count = 0;
foreach ($droits as $droit) {
- echo "".$droit.' ';
- echo '   ';
+ if( $count > 0 ) echo ', ';
+
+ switch($droit){
+ case 'admin' : echo 'administrateur'; break;
+ case 'master' : echo 'référent'; break;
+ case 'teacher': echo 'enseignant'; break;
+ case 'student': echo 'étudiant'; break;
+ default: echo 'inconnu'; break;
+ }
+ $count++;
}
- echo ' ';
- echo 'Mail : '.$infos['mail'];
- echo '';
+ echo ' ';
+ echo 'Mail '.$infos['mail'].' ';
+ echo '
';
+
echo ' ';
}
@@ -105,7 +118,10 @@ if( permission('admin') ){
// si la formation optionnelle n'est pas définie ou incohérente, on le fait (première valeur trouvée)
if( $formationOpt == null || !in_array($formationOpt, $verificationUIDFormations) )
- $formationOpt = $verificationUIDFormations[0];
+ if( count($verificationUIDFormations) == 0 ) // si aucune formation trouvée
+ $formationOpt = 0;
+ else
+ $formationOpt = $verificationUIDFormations[0];
/**************************/
diff --git a/src/files/admin2_export_jury.xlsx b/src/files/admin2_export_jury.xlsx
deleted file mode 100644
index bf128fa..0000000
Binary files a/src/files/admin2_export_jury.xlsx and /dev/null differ
diff --git a/src/files/admin2_export_liste_etudiants.xlsx b/src/files/admin2_export_liste_etudiants.xlsx
deleted file mode 100644
index be888e5..0000000
Binary files a/src/files/admin2_export_liste_etudiants.xlsx and /dev/null differ
diff --git a/src/files/admin2_import_jury.xlsx b/src/files/admin2_import_jury.xlsx
deleted file mode 100644
index 885c866..0000000
Binary files a/src/files/admin2_import_jury.xlsx and /dev/null differ
diff --git a/src/files/admin2_import_mcc.xlsx b/src/files/admin2_import_mcc.xlsx
deleted file mode 100755
index 7c391af..0000000
Binary files a/src/files/admin2_import_mcc.xlsx and /dev/null differ
diff --git a/src/files/admin2_import_notes.xlsx b/src/files/admin2_import_notes.xlsx
deleted file mode 100644
index f44f64a..0000000
Binary files a/src/files/admin2_import_notes.xlsx and /dev/null differ
diff --git a/src/files/admin2_import_inscrits.xlsx b/src/files/lbh1609a_import_notes.xlsx
similarity index 100%
rename from src/files/admin2_import_inscrits.xlsx
rename to src/files/lbh1609a_import_notes.xlsx
diff --git a/src/header/login.svg b/src/header/login.svg
new file mode 100755
index 0000000..cc86b7d
--- /dev/null
+++ b/src/header/login.svg
@@ -0,0 +1,53 @@
+
+
image/svg+xml
\ No newline at end of file
diff --git a/src/svg_v2.php b/src/svg_v2.php
index 27d7ba2..ab87925 100755
--- a/src/svg_v2.php
+++ b/src/svg_v2.php
@@ -75,10 +75,22 @@ function displayParcours($parcours, $selected){
// couleur du texte en fonction de la note
if( !is_bool($parcours[$i]['moyenne']) ){
+ $themeColor = null;
$val = 20 * $parcours[$i]['moyenne']['moyenne']/$parcours[$i]['moyenne']['base'];
- if( $val <= 8 ) $themeColor = '#f55b55';
- elseif( $val < 10 ) $themeColor = '#f59555';
- else $themeColor = '#2dcc70';
+
+
+ if( $parcours[$i]['compensation'] ) // on a le semestre, avec aucun UE en dessous de 8 (ORANGE)
+ $themeColor = '#f59555';
+
+ if( !$parcours[$i]['compensable'] ) // non compensable (au moins un UE en dessous de 8), on a pas le semestre (ROUGE)
+ $themeColor = '#f55b55';
+
+ // si rien de spécial, on définit avec les valeurs par défaut
+ if( $themeColor == null ){
+ if( $val < 10 ) $themeColor = '#f55b55'; // si en-dessous de 8, on a pas le semestre (ROUGE)
+ else $themeColor = '#2dcc70'; // si sup/egal à 10, on a le semestre (VERT)
+ }
+
}else // si pas de note, on met la couleur par défaut
$themeColor = $normColor;
@@ -98,7 +110,7 @@ function displayParcours($parcours, $selected){
// couleur du texte en fonction de la note
if( !is_bool($UE['moyenne']) ){
$val = 20 * $UE['moyenne']['moyenne']/$UE['moyenne']['base'];
- if( $val <= 8 ) $themeColor = '#f55b55';
+ if( $val < 8 ) $themeColor = '#f55b55';
elseif( $val < 10 ) $themeColor = '#f59555';
else $themeColor = '#2dcc70';
}else // si pas de note, on met la couleur par défaut
diff --git a/src/userlistSample.json b/src/userlistSample.json
deleted file mode 100755
index 44e85fd..0000000
--- a/src/userlistSample.json
+++ /dev/null
@@ -1,802 +0,0 @@
-[
- {
- "identifiant": "ydw1981a",
- "prenom": "Glenda",
- "nom": "WILKINSON",
- "mail": "glenda.wilkinson@etu.iut-tlse3.fr",
- "mdp": "c95fca15-628e-4977-8a92-6dc1be76d15a",
- "droits": "student"
- },
- {
- "identifiant": "ihf1991a",
- "prenom": "Robinson",
- "nom": "MCGEE",
- "mail": "robinson.mcgee@etu.iut-tlse3.fr",
- "mdp": "4350c63d-3b73-4c79-b56f-5cba092a37a6",
- "droits": "student"
- },
- {
- "identifiant": "mma1990a",
- "prenom": "Williamson",
- "nom": "HATFIELD",
- "mail": "williamson.hatfield@etu.iut-tlse3.fr",
- "mdp": "60872c3f-6511-4dbc-9bbf-17cf7be9f517",
- "droits": "student"
- },
- {
- "identifiant": "lme1952a",
- "prenom": "Hollie",
- "nom": "GILLIAM",
- "mail": "hollie.gilliam@etu.iut-tlse3.fr",
- "mdp": "195d3eb8-0bd1-4996-85ee-f83c46288028",
- "droits": "student"
- },
- {
- "identifiant": "imf1922a",
- "prenom": "Hawkins",
- "nom": "PATTERSON",
- "mail": "hawkins.patterson@etu.iut-tlse3.fr",
- "mdp": "7352c517-b8a1-4949-93e5-45ce6a70cca4",
- "droits": "student"
- },
- {
- "identifiant": "gyy1983a",
- "prenom": "Merrill",
- "nom": "WALTER",
- "mail": "merrill.walter@etu.iut-tlse3.fr",
- "mdp": "f47bd592-cfe8-4c62-b029-a258f8738b90",
- "droits": "student"
- },
- {
- "identifiant": "otm1902a",
- "prenom": "Woods",
- "nom": "DEJESUS",
- "mail": "woods.dejesus@etu.iut-tlse3.fr",
- "mdp": "e7799a36-d363-43fb-a72d-b218fb65d277",
- "droits": "student"
- },
- {
- "identifiant": "tnx1949a",
- "prenom": "Dejesus",
- "nom": "WALTON",
- "mail": "dejesus.walton@etu.iut-tlse3.fr",
- "mdp": "ea7fb3b1-cd41-4945-8984-b2a43cd782f2",
- "droits": "student"
- },
- {
- "identifiant": "sjl1937a",
- "prenom": "English",
- "nom": "POPE",
- "mail": "english.pope@etu.iut-tlse3.fr",
- "mdp": "007a511b-058f-4921-aa0b-04eb6d4d5a5f",
- "droits": "student"
- },
- {
- "identifiant": "anj1991a",
- "prenom": "Katie",
- "nom": "GUTIERREZ",
- "mail": "katie.gutierrez@etu.iut-tlse3.fr",
- "mdp": "c6a4e96b-3ba8-4a9a-bff6-955b6e14d689",
- "droits": "student"
- },
- {
- "identifiant": "xdh1989a",
- "prenom": "Rasmussen",
- "nom": "PAGE",
- "mail": "rasmussen.page@etu.iut-tlse3.fr",
- "mdp": "f04c06bd-6c24-44b8-9c16-80514f0df1ad",
- "droits": "student"
- },
- {
- "identifiant": "agl1956a",
- "prenom": "Cruz",
- "nom": "HOWE",
- "mail": "cruz.howe@etu.iut-tlse3.fr",
- "mdp": "4028d5c1-6cfa-4224-82c9-588906a2d136",
- "droits": "student"
- },
- {
- "identifiant": "mhu1946a",
- "prenom": "Edna",
- "nom": "GREEN",
- "mail": "edna.green@etu.iut-tlse3.fr",
- "mdp": "10aea3aa-4ec2-4b2b-9c92-f671d3d38f7f",
- "droits": "student"
- },
- {
- "identifiant": "cvv1936a",
- "prenom": "Kayla",
- "nom": "CANTRELL",
- "mail": "kayla.cantrell@etu.iut-tlse3.fr",
- "mdp": "948a9aa9-f1d5-41d9-9697-045a82bf7a3e",
- "droits": "student"
- },
- {
- "identifiant": "mzh1955a",
- "prenom": "Leblanc",
- "nom": "WHEELER",
- "mail": "leblanc.wheeler@etu.iut-tlse3.fr",
- "mdp": "57757114-b1c4-4b66-9d5d-0c0ab076ec3d",
- "droits": "student"
- },
- {
- "identifiant": "pdi1904a",
- "prenom": "Brady",
- "nom": "ASHLEY",
- "mail": "brady.ashley@etu.iut-tlse3.fr",
- "mdp": "62313578-4af5-453f-bb14-970c0dcd8842",
- "droits": "student"
- },
- {
- "identifiant": "cuk1947a",
- "prenom": "Baxter",
- "nom": "HERRERA",
- "mail": "baxter.herrera@etu.iut-tlse3.fr",
- "mdp": "77db6fc0-b39a-4ee5-b0b7-be23e7dd28f6",
- "droits": "student"
- },
- {
- "identifiant": "non1968a",
- "prenom": "Foster",
- "nom": "TILLMAN",
- "mail": "foster.tillman@etu.iut-tlse3.fr",
- "mdp": "8c44e474-49a5-4135-b19a-865f449a768b",
- "droits": "student"
- },
- {
- "identifiant": "hmn1970a",
- "prenom": "Levy",
- "nom": "ARMSTRONG",
- "mail": "levy.armstrong@etu.iut-tlse3.fr",
- "mdp": "ed432400-b0f9-42fb-aabb-d24a10147a94",
- "droits": "student"
- },
- {
- "identifiant": "hth1975a",
- "prenom": "Pruitt",
- "nom": "FERGUSON",
- "mail": "pruitt.ferguson@etu.iut-tlse3.fr",
- "mdp": "eaf1645b-5eb3-40ed-9c7f-1d41cda82386",
- "droits": "student"
- },
- {
- "identifiant": "liw1940a",
- "prenom": "Middleton",
- "nom": "WATERS",
- "mail": "middleton.waters@etu.iut-tlse3.fr",
- "mdp": "0f6f7e0a-9ecf-4ee8-b8b0-95dcbe57e94e",
- "droits": "student"
- },
- {
- "identifiant": "dtg1946a",
- "prenom": "Ruiz",
- "nom": "WILKERSON",
- "mail": "ruiz.wilkerson@etu.iut-tlse3.fr",
- "mdp": "afc6fc1d-8695-4b5f-8f34-2ea17fdf85ae",
- "droits": "student"
- },
- {
- "identifiant": "oxz1985a",
- "prenom": "Paul",
- "nom": "GROSS",
- "mail": "paul.gross@etu.iut-tlse3.fr",
- "mdp": "c56b772c-a472-469a-8aec-fc26773826f2",
- "droits": "student"
- },
- {
- "identifiant": "ono1984a",
- "prenom": "Kitty",
- "nom": "SANFORD",
- "mail": "kitty.sanford@etu.iut-tlse3.fr",
- "mdp": "925f58ce-794b-4318-aa1f-51a03ca2bc4f",
- "droits": "student"
- },
- {
- "identifiant": "auy1966a",
- "prenom": "Bobbi",
- "nom": "PRATT",
- "mail": "bobbi.pratt@etu.iut-tlse3.fr",
- "mdp": "55b7b267-e7bc-4742-a0c2-71e910913c84",
- "droits": "student"
- },
- {
- "identifiant": "dui1946a",
- "prenom": "Burns",
- "nom": "COMPTON",
- "mail": "burns.compton@etu.iut-tlse3.fr",
- "mdp": "ccba19e5-a67e-458a-bcdb-d5565b3952a2",
- "droits": "student"
- },
- {
- "identifiant": "cyw1979a",
- "prenom": "Zamora",
- "nom": "RIDDLE",
- "mail": "zamora.riddle@etu.iut-tlse3.fr",
- "mdp": "40160f4f-5fea-4648-b2d0-239db6d927b7",
- "droits": "student"
- },
- {
- "identifiant": "pfv1965a",
- "prenom": "Francine",
- "nom": "COMBS",
- "mail": "francine.combs@etu.iut-tlse3.fr",
- "mdp": "235ef6a4-02e2-4d50-b519-93b14fb1306a",
- "droits": "student"
- },
- {
- "identifiant": "oqz1937a",
- "prenom": "Morse",
- "nom": "MICHAEL",
- "mail": "morse.michael@etu.iut-tlse3.fr",
- "mdp": "8ec716fd-2479-4d1a-b436-c29ded017ad1",
- "droits": "student"
- },
- {
- "identifiant": "aft1950a",
- "prenom": "Rachel",
- "nom": "DAVENPORT",
- "mail": "rachel.davenport@etu.iut-tlse3.fr",
- "mdp": "8f0bf05c-acf6-4992-82c9-47aaa79c279b",
- "droits": "student"
- },
- {
- "identifiant": "bae1943a",
- "prenom": "Shaw",
- "nom": "GOFF",
- "mail": "shaw.goff@etu.iut-tlse3.fr",
- "mdp": "a3c8e161-da01-4eb2-b4bb-75bd6632d8a8",
- "droits": "student"
- },
- {
- "identifiant": "kul1903a",
- "prenom": "Magdalena",
- "nom": "SIMON",
- "mail": "magdalena.simon@etu.iut-tlse3.fr",
- "mdp": "d47aa9ea-2458-4954-9b3d-38a92fc95352",
- "droits": "student"
- },
- {
- "identifiant": "rmj1965a",
- "prenom": "Bridges",
- "nom": "ROSALES",
- "mail": "bridges.rosales@etu.iut-tlse3.fr",
- "mdp": "fc5c6d48-2296-48fd-b3f0-49f22c2af78e",
- "droits": "student"
- },
- {
- "identifiant": "yyt1926a",
- "prenom": "Bryant",
- "nom": "CHANEY",
- "mail": "bryant.chaney@etu.iut-tlse3.fr",
- "mdp": "a0a8c49b-13b5-42fd-b643-44e2aaf8cd65",
- "droits": "student"
- },
- {
- "identifiant": "ktz1997a",
- "prenom": "Mcgowan",
- "nom": "COHEN",
- "mail": "mcgowan.cohen@etu.iut-tlse3.fr",
- "mdp": "20ed35e7-a5b8-4ebd-8a7e-506f99ae20ac",
- "droits": "student"
- },
- {
- "identifiant": "hku1995a",
- "prenom": "Roslyn",
- "nom": "MURPHY",
- "mail": "roslyn.murphy@etu.iut-tlse3.fr",
- "mdp": "ff26b118-0c7e-428c-9a63-c31891366a1a",
- "droits": "student"
- },
- {
- "identifiant": "zgy1948a",
- "prenom": "Emily",
- "nom": "ALVARADO",
- "mail": "emily.alvarado@etu.iut-tlse3.fr",
- "mdp": "dc42abea-f17a-4172-bebe-33d25d0ebe8e",
- "droits": "student"
- },
- {
- "identifiant": "vau1957a",
- "prenom": "Kathy",
- "nom": "STOUT",
- "mail": "kathy.stout@etu.iut-tlse3.fr",
- "mdp": "75eb8158-e324-4f05-9176-db7c2cdb6cb0",
- "droits": "student"
- },
- {
- "identifiant": "hsx1927a",
- "prenom": "Irene",
- "nom": "MONROE",
- "mail": "irene.monroe@etu.iut-tlse3.fr",
- "mdp": "25db4cbf-0afc-4343-9909-4ffd96443b7a",
- "droits": "student"
- },
- {
- "identifiant": "eca1977a",
- "prenom": "Hope",
- "nom": "WILSON",
- "mail": "hope.wilson@etu.iut-tlse3.fr",
- "mdp": "f7623f39-c177-46f5-ad02-9a52e14ded1c",
- "droits": "student"
- },
- {
- "identifiant": "wpa1966a",
- "prenom": "Collier",
- "nom": "ENGLISH",
- "mail": "collier.english@etu.iut-tlse3.fr",
- "mdp": "e6e23a50-17d4-42ca-804c-d6331143d441",
- "droits": "student"
- },
- {
- "identifiant": "qoe1974a",
- "prenom": "Raquel",
- "nom": "CUNNINGHAM",
- "mail": "raquel.cunningham@etu.iut-tlse3.fr",
- "mdp": "bd420e39-5b69-4950-9638-eff22f293a00",
- "droits": "student"
- },
- {
- "identifiant": "tkz1955a",
- "prenom": "Nora",
- "nom": "BREWER",
- "mail": "nora.brewer@etu.iut-tlse3.fr",
- "mdp": "f19df613-1e90-432a-86fe-da18f629eaf2",
- "droits": "student"
- },
- {
- "identifiant": "wnx1995a",
- "prenom": "Lorraine",
- "nom": "PADILLA",
- "mail": "lorraine.padilla@etu.iut-tlse3.fr",
- "mdp": "c28316db-3b09-4749-8e4b-6127a4501fa8",
- "droits": "student"
- },
- {
- "identifiant": "sft1994a",
- "prenom": "Norris",
- "nom": "BROCK",
- "mail": "norris.brock@etu.iut-tlse3.fr",
- "mdp": "25f8ea48-770b-4f83-97d8-62dc9d85bf03",
- "droits": "student"
- },
- {
- "identifiant": "vgb1979a",
- "prenom": "Baird",
- "nom": "FORD",
- "mail": "baird.ford@etu.iut-tlse3.fr",
- "mdp": "4824985e-f5a3-4713-8c58-4c2256dd3e62",
- "droits": "student"
- },
- {
- "identifiant": "wbt1993a",
- "prenom": "Goodman",
- "nom": "PAUL",
- "mail": "goodman.paul@etu.iut-tlse3.fr",
- "mdp": "e005d13a-4bbe-4d23-9078-dcba9c59d9b6",
- "droits": "student"
- },
- {
- "identifiant": "xtb1903a",
- "prenom": "Kelly",
- "nom": "FLYNN",
- "mail": "kelly.flynn@etu.iut-tlse3.fr",
- "mdp": "22094e3b-af6d-4da3-bcde-b2c2c8ac5049",
- "droits": "student"
- },
- {
- "identifiant": "msj1985a",
- "prenom": "Ball",
- "nom": "AVILA",
- "mail": "ball.avila@etu.iut-tlse3.fr",
- "mdp": "b3106552-2158-4bc2-9fe8-84ea110e6d8d",
- "droits": "student"
- },
- {
- "identifiant": "wvn1982a",
- "prenom": "Sears",
- "nom": "WELCH",
- "mail": "sears.welch@etu.iut-tlse3.fr",
- "mdp": "8ce7381c-082f-4a2b-8d6d-0627977f14e6",
- "droits": "student"
- },
- {
- "identifiant": "psg1965a",
- "prenom": "Knapp",
- "nom": "STEPHENS",
- "mail": "knapp.stephens@etu.iut-tlse3.fr",
- "mdp": "f0123274-da67-47ec-8d2d-9a386f8f4303",
- "droits": "student"
- },
- {
- "identifiant": "hpa1908a",
- "prenom": "Jacklyn",
- "nom": "BYRD",
- "mail": "jacklyn.byrd@etu.iut-tlse3.fr",
- "mdp": "7f13f262-2785-4888-a1b2-2995254103c5",
- "droits": "student"
- },
- {
- "identifiant": "maq1980a",
- "prenom": "Cook",
- "nom": "DUNN",
- "mail": "cook.dunn@etu.iut-tlse3.fr",
- "mdp": "7d379650-7511-4c4c-896b-328c3d4549d8",
- "droits": "student"
- },
- {
- "identifiant": "agq1929a",
- "prenom": "Althea",
- "nom": "POOLE",
- "mail": "althea.poole@etu.iut-tlse3.fr",
- "mdp": "3713d843-72a0-482a-aaab-bd2764eb4df4",
- "droits": "student"
- },
- {
- "identifiant": "gwe1975a",
- "prenom": "Helen",
- "nom": "HICKS",
- "mail": "helen.hicks@etu.iut-tlse3.fr",
- "mdp": "d17c1b03-487a-4078-8670-16c89b97af7b",
- "droits": "student"
- },
- {
- "identifiant": "gdb1939a",
- "prenom": "Kate",
- "nom": "NOEL",
- "mail": "kate.noel@etu.iut-tlse3.fr",
- "mdp": "18f9fd7c-0192-4e65-a1d8-4dca7edac32e",
- "droits": "student"
- },
- {
- "identifiant": "jrc1974a",
- "prenom": "Pierce",
- "nom": "CHURCH",
- "mail": "pierce.church@etu.iut-tlse3.fr",
- "mdp": "82a37551-a563-4981-85ea-15fe50832fb1",
- "droits": "student"
- },
- {
- "identifiant": "jfa1965a",
- "prenom": "Lolita",
- "nom": "FARRELL",
- "mail": "lolita.farrell@etu.iut-tlse3.fr",
- "mdp": "bf1b2d0e-02a2-4c78-bf1b-2c7c36964d19",
- "droits": "student"
- },
- {
- "identifiant": "buz1982a",
- "prenom": "Kemp",
- "nom": "JACOBS",
- "mail": "kemp.jacobs@etu.iut-tlse3.fr",
- "mdp": "a7a14ee0-ae59-4442-a231-e7663575123c",
- "droits": "student"
- },
- {
- "identifiant": "mhr1952a",
- "prenom": "Socorro",
- "nom": "BLAIR",
- "mail": "socorro.blair@etu.iut-tlse3.fr",
- "mdp": "c4b4de9e-ce49-46d3-bd55-4d3be9447598",
- "droits": "student"
- },
- {
- "identifiant": "pos1958a",
- "prenom": "Juliana",
- "nom": "FULLER",
- "mail": "juliana.fuller@etu.iut-tlse3.fr",
- "mdp": "4b66d175-d740-41c5-a5d1-663a0840c728",
- "droits": "student"
- },
- {
- "identifiant": "xdi1926a",
- "prenom": "Ferrell",
- "nom": "SALAS",
- "mail": "ferrell.salas@etu.iut-tlse3.fr",
- "mdp": "61d323c5-e517-44fd-b9fa-fd145e2b2d62",
- "droits": "student"
- },
- {
- "identifiant": "awl1901a",
- "prenom": "Clare",
- "nom": "ROLLINS",
- "mail": "clare.rollins@etu.iut-tlse3.fr",
- "mdp": "be1afdea-248c-4b5b-b55d-6ba6bff09439",
- "droits": "student"
- },
- {
- "identifiant": "uix1942a",
- "prenom": "Kristen",
- "nom": "GIBSON",
- "mail": "kristen.gibson@etu.iut-tlse3.fr",
- "mdp": "2ed013f8-b881-4c76-a6e9-70f2716ddb42",
- "droits": "student"
- },
- {
- "identifiant": "ngz1932a",
- "prenom": "Faye",
- "nom": "PAYNE",
- "mail": "faye.payne@etu.iut-tlse3.fr",
- "mdp": "a78506a7-0b4e-4542-92ea-0585539eed14",
- "droits": "student"
- },
- {
- "identifiant": "kpf1942a",
- "prenom": "Strickland",
- "nom": "ROACH",
- "mail": "strickland.roach@etu.iut-tlse3.fr",
- "mdp": "d687a554-7e2e-4bd9-9858-12e4661a2959",
- "droits": "student"
- },
- {
- "identifiant": "aiv1989a",
- "prenom": "Concetta",
- "nom": "ROBLES",
- "mail": "concetta.robles@etu.iut-tlse3.fr",
- "mdp": "c45dda76-735b-4e05-b99d-10194403d323",
- "droits": "student"
- },
- {
- "identifiant": "sjw1936a",
- "prenom": "Cross",
- "nom": "MEYERS",
- "mail": "cross.meyers@etu.iut-tlse3.fr",
- "mdp": "f21bf5f1-918f-4b56-b9a0-861a4067505a",
- "droits": "student"
- },
- {
- "identifiant": "fei1944a",
- "prenom": "Esperanza",
- "nom": "TERRELL",
- "mail": "esperanza.terrell@etu.iut-tlse3.fr",
- "mdp": "8e011d85-ca8c-43bd-8706-21c099243a0c",
- "droits": "student"
- },
- {
- "identifiant": "zge1937a",
- "prenom": "Ella",
- "nom": "GARZA",
- "mail": "ella.garza@etu.iut-tlse3.fr",
- "mdp": "e68937a7-b587-453d-9aa9-bc7cc9aafb6f",
- "droits": "student"
- },
- {
- "identifiant": "rpl1936a",
- "prenom": "Tamera",
- "nom": "MOSES",
- "mail": "tamera.moses@etu.iut-tlse3.fr",
- "mdp": "92ba2ace-8d63-4cae-bcf1-f8c36d4a6368",
- "droits": "student"
- },
- {
- "identifiant": "hrv1902a",
- "prenom": "Irwin",
- "nom": "HOUSTON",
- "mail": "irwin.houston@etu.iut-tlse3.fr",
- "mdp": "4352ca7f-0391-43bf-8f2b-8df1337c46e8",
- "droits": "student"
- },
- {
- "identifiant": "djo1928a",
- "prenom": "Vaughn",
- "nom": "DURHAM",
- "mail": "vaughn.durham@etu.iut-tlse3.fr",
- "mdp": "bfe74f7f-936c-4e09-b348-d03f6cf8131b",
- "droits": "student"
- },
- {
- "identifiant": "scm1996a",
- "prenom": "Dotson",
- "nom": "SANDOVAL",
- "mail": "dotson.sandoval@etu.iut-tlse3.fr",
- "mdp": "5c5d2861-e968-4fdd-a975-20210f1d06a4",
- "droits": "student"
- },
- {
- "identifiant": "ylq1926a",
- "prenom": "Stein",
- "nom": "SILVA",
- "mail": "stein.silva@etu.iut-tlse3.fr",
- "mdp": "23dc5c90-4b08-4ea6-bf43-eb60d7ec7414",
- "droits": "student"
- },
- {
- "identifiant": "eme1913a",
- "prenom": "Booth",
- "nom": "HENRY",
- "mail": "booth.henry@etu.iut-tlse3.fr",
- "mdp": "1391a307-4181-46f3-8f52-424255ed3d84",
- "droits": "student"
- },
- {
- "identifiant": "otv1930a",
- "prenom": "Odonnell",
- "nom": "BEASLEY",
- "mail": "odonnell.beasley@etu.iut-tlse3.fr",
- "mdp": "8e079e14-d637-482c-9937-38d4d67c337d",
- "droits": "student"
- },
- {
- "identifiant": "cda1951a",
- "prenom": "Mcpherson",
- "nom": "ANTHONY",
- "mail": "mcpherson.anthony@etu.iut-tlse3.fr",
- "mdp": "27f6c12c-8aba-40a1-b918-5e1802dd0e57",
- "droits": "student"
- },
- {
- "identifiant": "eee1933a",
- "prenom": "Stacey",
- "nom": "LITTLE",
- "mail": "stacey.little@etu.iut-tlse3.fr",
- "mdp": "9c6fdab4-5cc4-4e8b-a28f-860c4a3c0a54",
- "droits": "student"
- },
- {
- "identifiant": "kfx1995a",
- "prenom": "Mitzi",
- "nom": "SCHROEDER",
- "mail": "mitzi.schroeder@etu.iut-tlse3.fr",
- "mdp": "2d6e7b0a-3c90-485e-a603-0b1a8748ce03",
- "droits": "student"
- },
- {
- "identifiant": "jgd1966a",
- "prenom": "Janelle",
- "nom": "BURKS",
- "mail": "janelle.burks@etu.iut-tlse3.fr",
- "mdp": "cbbf96b9-25fc-458c-b3ac-ff74fcf15afb",
- "droits": "student"
- },
- {
- "identifiant": "rwg1909a",
- "prenom": "Kelly",
- "nom": "WALLACE",
- "mail": "kelly.wallace@etu.iut-tlse3.fr",
- "mdp": "7ca32e62-b150-4135-a7d8-5eb72b9a2e8b",
- "droits": "student"
- },
- {
- "identifiant": "ngw1997a",
- "prenom": "Booker",
- "nom": "LOPEZ",
- "mail": "booker.lopez@etu.iut-tlse3.fr",
- "mdp": "866900e1-90eb-4a3b-9c48-6ef948483d52",
- "droits": "student"
- },
- {
- "identifiant": "obg1973a",
- "prenom": "Lynch",
- "nom": "CHANDLER",
- "mail": "lynch.chandler@etu.iut-tlse3.fr",
- "mdp": "9eb70aff-5b1b-4363-85cc-ecfa505dbd55",
- "droits": "student"
- },
- {
- "identifiant": "hzg1935a",
- "prenom": "Clarice",
- "nom": "ORTEGA",
- "mail": "clarice.ortega@etu.iut-tlse3.fr",
- "mdp": "ed5dbd13-a27b-4419-8045-4378c56df2bd",
- "droits": "student"
- },
- {
- "identifiant": "iyh1918a",
- "prenom": "Tucker",
- "nom": "TRAN",
- "mail": "tucker.tran@etu.iut-tlse3.fr",
- "mdp": "a8cdb727-0da8-4137-9c36-aaba530dc798",
- "droits": "student"
- },
- {
- "identifiant": "tdc1978a",
- "prenom": "Bird",
- "nom": "TRAVIS",
- "mail": "bird.travis@etu.iut-tlse3.fr",
- "mdp": "c8850d9a-a8cd-46ba-9771-2aeac5abe8c5",
- "droits": "student"
- },
- {
- "identifiant": "swd1951a",
- "prenom": "Jenny",
- "nom": "GRAHAM",
- "mail": "jenny.graham@etu.iut-tlse3.fr",
- "mdp": "167b942a-5d6c-40d7-b787-190aa19ebf71",
- "droits": "student"
- },
- {
- "identifiant": "vdj1905a",
- "prenom": "Dean",
- "nom": "ESPINOZA",
- "mail": "dean.espinoza@etu.iut-tlse3.fr",
- "mdp": "97b5fb5d-81c7-4d98-9a50-4bb356c53329",
- "droits": "student"
- },
- {
- "identifiant": "bit1985a",
- "prenom": "Rosalind",
- "nom": "FISHER",
- "mail": "rosalind.fisher@etu.iut-tlse3.fr",
- "mdp": "a457fdbc-a30c-4d38-8c2b-5595bd56eda2",
- "droits": "student"
- },
- {
- "identifiant": "iah1936a",
- "prenom": "Franklin",
- "nom": "SLATER",
- "mail": "franklin.slater@etu.iut-tlse3.fr",
- "mdp": "981c0270-fcfd-4e6f-9445-82ef2a703651",
- "droits": "student"
- },
- {
- "identifiant": "ypt1989a",
- "prenom": "Simon",
- "nom": "MORALES",
- "mail": "simon.morales@etu.iut-tlse3.fr",
- "mdp": "426aa049-96d7-4c24-9ef6-6021f373e47f",
- "droits": "student"
- },
- {
- "identifiant": "ljc1902a",
- "prenom": "Lisa",
- "nom": "CLEMENTS",
- "mail": "lisa.clements@etu.iut-tlse3.fr",
- "mdp": "815f43eb-9e1d-4392-ab3f-23be4cd15a7f",
- "droits": "student"
- },
- {
- "identifiant": "hcc1997a",
- "prenom": "Madeline",
- "nom": "MARKS",
- "mail": "madeline.marks@etu.iut-tlse3.fr",
- "mdp": "5d4e3567-32f7-4c94-b807-a02627d434c1",
- "droits": "student"
- },
- {
- "identifiant": "bky1924a",
- "prenom": "Gena",
- "nom": "ENGLAND",
- "mail": "gena.england@etu.iut-tlse3.fr",
- "mdp": "85a84b58-2809-41ec-9feb-975fe1c8d158",
- "droits": "student"
- },
- {
- "identifiant": "vul1953a",
- "prenom": "Robyn",
- "nom": "BATES",
- "mail": "robyn.bates@etu.iut-tlse3.fr",
- "mdp": "8817dcef-cd68-45b7-843e-394dd93d8c73",
- "droits": "student"
- },
- {
- "identifiant": "ssr1906a",
- "prenom": "Howell",
- "nom": "FAULKNER",
- "mail": "howell.faulkner@etu.iut-tlse3.fr",
- "mdp": "be683631-8f66-484f-b324-9a1494a35d5e",
- "droits": "student"
- },
- {
- "identifiant": "yjh1944a",
- "prenom": "Thompson",
- "nom": "SOLIS",
- "mail": "thompson.solis@etu.iut-tlse3.fr",
- "mdp": "9774f86d-42a7-4617-9227-ccd3f6d33f01",
- "droits": "student"
- },
- {
- "identifiant": "ste1994a",
- "prenom": "Allison",
- "nom": "CALLAHAN",
- "mail": "allison.callahan@etu.iut-tlse3.fr",
- "mdp": "836461f5-f10d-47ff-9158-bb0b143a62f3",
- "droits": "student"
- },
- {
- "identifiant": "ypo1964a",
- "prenom": "Marylou",
- "nom": "HOPKINS",
- "mail": "marylou.hopkins@etu.iut-tlse3.fr",
- "mdp": "932b8588-b836-4872-bc7f-778194e7b859",
- "droits": "student"
- }
-]
\ No newline at end of file
diff --git a/test.php b/test.php
index 35f1640..2455ce3 100755
--- a/test.php
+++ b/test.php
@@ -46,6 +46,15 @@ require_once __ROOT__.'/manager/security.php';
debug();
+// var_dump(DataBase::getInstance()->getSemestreInfoFromTime( strtotime('2017-01-31') ));
+
+
+// $ts = time();
+// $date1 = date('Y-m-d', $ts);
+// $date2 = date('Y-m-d', strtotime($date1.' - 1 year'));
+// var_dump( $date1 );
+// var_dump( $date2 );
+
/* [1] On récupère le semestre d'un étudiant
=====================================================*/
diff --git a/xdoc/Cahier Des Charges Fonctionnel.pdf b/xdoc/Cahier Des Charges Fonctionnel.pdf
deleted file mode 100755
index 63a182c..0000000
Binary files a/xdoc/Cahier Des Charges Fonctionnel.pdf and /dev/null differ
diff --git a/xdoc/Flat-Design-UI-Components-Responsive-web-template.jpg b/xdoc/Flat-Design-UI-Components-Responsive-web-template.jpg
deleted file mode 100755
index aa50794..0000000
Binary files a/xdoc/Flat-Design-UI-Components-Responsive-web-template.jpg and /dev/null differ
diff --git a/xdoc/MCD.png b/xdoc/MCD.png
index ce7c5c1..4a4fd30 100755
Binary files a/xdoc/MCD.png and b/xdoc/MCD.png differ
diff --git a/xdoc/MCD2.png b/xdoc/MCD2.png
deleted file mode 100755
index 7e2b5c2..0000000
Binary files a/xdoc/MCD2.png and /dev/null differ
diff --git a/xdoc/empty.sql b/xdoc/empty.sql
index 10579e3..60f6908 100755
--- a/xdoc/empty.sql
+++ b/xdoc/empty.sql
@@ -2,10 +2,10 @@
-- version 4.0.10deb1
-- http://www.phpmyadmin.net
--
--- Host: localhost
--- Generation Time: Nov 22, 2015 at 04:33 PM
--- Server version: 5.5.46-0ubuntu0.14.04.2
--- PHP Version: 5.5.9-1ubuntu4.14
+-- Client: localhost
+-- Généré le: Ven 08 Janvier 2016 à 10:51
+-- Version du serveur: 5.5.46-0ubuntu0.14.04.2
+-- Version de PHP: 5.5.9-1ubuntu4.14
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
@@ -17,13 +17,13 @@ SET time_zone = "+00:00";
/*!40101 SET NAMES utf8 */;
--
--- Database: `sid2`
+-- Base de données: `sid2`
--
-- --------------------------------------------------------
--
--- Table structure for table `appartenance`
+-- Structure de la table `appartenance`
--
CREATE TABLE IF NOT EXISTS `appartenance` (
@@ -31,6 +31,7 @@ CREATE TABLE IF NOT EXISTS `appartenance` (
`id_etudiant` varchar(50) NOT NULL,
`id_groupe` int(11) NOT NULL,
`id_semestre` int(11) NOT NULL,
+ `mention` varchar(3) DEFAULT NULL,
PRIMARY KEY (`id_appartenance`),
KEY `id_etudiant` (`id_etudiant`),
KEY `id_groupe` (`id_groupe`),
@@ -39,10 +40,10 @@ CREATE TABLE IF NOT EXISTS `appartenance` (
KEY `id_etudiant_2` (`id_etudiant`),
KEY `id_groupe_2` (`id_groupe`),
KEY `id_semestre_2` (`id_semestre`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=104 ;
+) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5651 ;
--
--- RELATIONS FOR TABLE `appartenance`:
+-- RELATIONS POUR LA TABLE `appartenance`:
-- `id_etudiant`
-- `utilisateur` -> `identifiant`
-- `id_groupe`
@@ -51,117 +52,10 @@ CREATE TABLE IF NOT EXISTS `appartenance` (
-- `semestre` -> `id_semestre`
--
---
--- Dumping data for table `appartenance`
---
-
-INSERT INTO `appartenance` (`id_appartenance`, `id_etudiant`, `id_groupe`, `id_semestre`) VALUES
-(1, 'mrd1609a', 2, 2),
-(2, 'ihf1991a', 8, 4),
-(3, 'mma1990a', 13, 1),
-(4, 'lme1952a', 15, 3),
-(5, 'imf1922a', 21, 1),
-(6, 'gyy1983a', 4, 4),
-(7, 'otm1902a', 14, 2),
-(8, 'tnx1949a', 12, 4),
-(9, 'sjl1937a', 4, 4),
-(10, 'anj1991a', 16, 4),
-(11, 'xdh1989a', 20, 4),
-(12, 'agl1956a', 3, 3),
-(13, 'mhu1946a', 21, 1),
-(14, 'cvv1936a', 14, 2),
-(15, 'mzh1955a', 6, 2),
-(16, 'pdi1904a', 19, 3),
-(17, 'cuk1947a', 10, 2),
-(18, 'non1968a', 22, 2),
-(19, 'hmn1970a', 1, 1),
-(20, 'hth1975a', 5, 1),
-(21, 'liw1940a', 6, 2),
-(22, 'dtg1946a', 18, 2),
-(23, 'oxz1985a', 7, 3),
-(24, 'ono1984a', 14, 2),
-(25, 'auy1966a', 15, 3),
-(26, 'dui1946a', 1, 1),
-(27, 'cyw1979a', 24, 4),
-(28, 'pfv1965a', 3, 3),
-(29, 'oqz1937a', 24, 4),
-(30, 'aft1950a', 7, 3),
-(31, 'bae1943a', 8, 4),
-(32, 'kul1903a', 9, 1),
-(33, 'rmj1965a', 11, 3),
-(34, 'yyt1926a', 17, 1),
-(35, 'ktz1997a', 6, 2),
-(36, 'hku1995a', 17, 1),
-(37, 'zgy1948a', 10, 2),
-(38, 'vau1957a', 23, 3),
-(39, 'hsx1927a', 19, 3),
-(40, 'eca1977a', 3, 3),
-(41, 'wpa1966a', 20, 4),
-(42, 'qoe1974a', 20, 4),
-(43, 'tkz1955a', 11, 3),
-(44, 'wnx1995a', 16, 4),
-(45, 'sft1994a', 2, 2),
-(46, 'vgb1979a', 11, 3),
-(47, 'wbt1993a', 19, 3),
-(48, 'xtb1903a', 11, 3),
-(49, 'msj1985a', 13, 1),
-(50, 'wvn1982a', 9, 1),
-(51, 'psg1965a', 4, 4),
-(52, 'hpa1908a', 5, 1),
-(53, 'maq1980a', 19, 3),
-(54, 'agq1929a', 13, 1),
-(55, 'gwe1975a', 18, 2),
-(56, 'gdb1939a', 7, 3),
-(57, 'jrc1974a', 10, 2),
-(58, 'jfa1965a', 1, 1),
-(59, 'buz1982a', 24, 4),
-(60, 'mhr1952a', 7, 3),
-(61, 'pos1958a', 11, 3),
-(62, 'xdi1926a', 3, 3),
-(63, 'awl1901a', 17, 1),
-(64, 'uix1942a', 7, 3),
-(65, 'ngz1932a', 19, 3),
-(66, 'kpf1942a', 15, 3),
-(67, 'aiv1989a', 21, 1),
-(68, 'sjw1936a', 19, 3),
-(69, 'fei1944a', 23, 3),
-(70, 'zge1937a', 21, 1),
-(71, 'rpl1936a', 19, 3),
-(72, 'hrv1902a', 22, 2),
-(73, 'djo1928a', 9, 1),
-(74, 'scm1996a', 5, 1),
-(75, 'ylq1926a', 18, 2),
-(76, 'eme1913a', 23, 3),
-(77, 'otv1930a', 1, 1),
-(78, 'cda1951a', 5, 1),
-(79, 'eee1933a', 17, 1),
-(80, 'kfx1995a', 18, 2),
-(81, 'jgd1966a', 3, 3),
-(82, 'rwg1909a', 14, 2),
-(83, 'ngw1997a', 17, 1),
-(84, 'obg1973a', 2, 2),
-(85, 'hzg1935a', 12, 4),
-(86, 'iyh1918a', 3, 3),
-(87, 'tdc1978a', 13, 1),
-(88, 'swd1951a', 2, 2),
-(89, 'vdj1905a', 22, 2),
-(90, 'bit1985a', 19, 3),
-(91, 'iah1936a', 1, 1),
-(92, 'ypt1989a', 7, 3),
-(93, 'ljc1902a', 17, 1),
-(94, 'hcc1997a', 7, 3),
-(95, 'bky1924a', 22, 2),
-(96, 'vul1953a', 5, 1),
-(97, 'ssr1906a', 9, 1),
-(98, 'yjh1944a', 11, 3),
-(99, 'ste1994a', 10, 2),
-(100, 'ypo1964a', 7, 3),
-(103, 'mrd1609a', 1, 1);
-
-- --------------------------------------------------------
--
--- Table structure for table `controle`
+-- Structure de la table `controle`
--
CREATE TABLE IF NOT EXISTS `controle` (
@@ -171,13 +65,13 @@ CREATE TABLE IF NOT EXISTS `controle` (
`libelle` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`base` int(11) NOT NULL,
`coefficient` float NOT NULL,
- `date_publication` date NOT NULL,
+ `publication` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id_controle`),
KEY `id_mcc_module` (`id_mcc_module`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=64 ;
+) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1309 ;
--
--- RELATIONS FOR TABLE `controle`:
+-- RELATIONS POUR LA TABLE `controle`:
-- `id_mcc_module`
-- `mcc_module` -> `id_mcc_module`
--
@@ -185,23 +79,27 @@ CREATE TABLE IF NOT EXISTS `controle` (
-- --------------------------------------------------------
--
--- Table structure for table `enseignement`
+-- Structure de la table `enseignement`
--
CREATE TABLE IF NOT EXISTS `enseignement` (
`id_enseignement` int(11) NOT NULL AUTO_INCREMENT,
`id_enseignant` varchar(50) NOT NULL,
`id_mcc_module` int(11) NOT NULL,
+ `id_groupe` int(11) NOT NULL,
`correcteur` tinyint(4) NOT NULL,
PRIMARY KEY (`id_enseignement`),
KEY `id_enseignant` (`id_enseignant`),
- KEY `id_mcc_module` (`id_mcc_module`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
+ KEY `id_mcc_module` (`id_mcc_module`),
+ KEY `id_groupe` (`id_groupe`)
+) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=229 ;
--
--- RELATIONS FOR TABLE `enseignement`:
+-- RELATIONS POUR LA TABLE `enseignement`:
-- `id_enseignant`
-- `utilisateur` -> `identifiant`
+-- `id_groupe`
+-- `groupe` -> `id_groupe`
-- `id_mcc_module`
-- `mcc_module` -> `id_mcc_module`
--
@@ -209,39 +107,31 @@ CREATE TABLE IF NOT EXISTS `enseignement` (
-- --------------------------------------------------------
--
--- Table structure for table `formation`
+-- Structure de la table `formation`
--
CREATE TABLE IF NOT EXISTS `formation` (
`id_formation` int(11) NOT NULL AUTO_INCREMENT,
`code` varchar(10) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`nom` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
- `nb_semestres` int(11) NOT NULL,
+ `nb_semestres` int(11) NOT NULL DEFAULT '2',
PRIMARY KEY (`id_formation`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=15 ;
-
---
--- Dumping data for table `formation`
---
-
-INSERT INTO `formation` (`id_formation`, `code`, `nom`, `nb_semestres`) VALUES
-(1, 'ITINN1', 'DUT 1A INFORMATIQUE', 2),
-(2, 'ITINN2', 'DUT 2A INFORMATIQUE', 2);
+) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=106 ;
-- --------------------------------------------------------
--
--- Table structure for table `groupe`
+-- Structure de la table `groupe`
--
CREATE TABLE IF NOT EXISTS `groupe` (
`id_groupe` int(11) NOT NULL AUTO_INCREMENT,
`nom` varchar(10) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id_groupe`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=25 ;
+) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=165 ;
--
--- Dumping data for table `groupe`
+-- Contenu de la table `groupe`
--
INSERT INTO `groupe` (`id_groupe`, `nom`) VALUES
@@ -268,12 +158,143 @@ INSERT INTO `groupe` (`id_groupe`, `nom`) VALUES
(21, 'S1F'),
(22, 'S2F'),
(23, 'S3F'),
-(24, 'S4F');
+(24, 'S4F'),
+(34, 'INGBD1 S1'),
+(35, 'INSIQ1 S1'),
+(36, 'ITINAS S1'),
+(37, 'ITINN1 S1'),
+(38, 'ITINN2 S1'),
+(39, 'ITINS1 S1'),
+(40, 'ITINT2 S1'),
+(41, 'ITINT3 S1'),
+(42, 'S1M'),
+(43, 'S2M'),
+(44, 'S3M'),
+(45, 'S4M'),
+(46, 'S5M'),
+(47, 'S6M'),
+(48, 'S7M'),
+(49, 'S8M'),
+(50, 'S9M'),
+(51, 'S10M'),
+(52, 'S1G'),
+(53, 'S1H'),
+(54, 'S1I'),
+(55, 'S1J'),
+(56, 'S1K'),
+(57, 'S1L'),
+(58, 'S2G'),
+(59, 'S2H'),
+(60, 'S2I'),
+(61, 'S2J'),
+(62, 'S2K'),
+(63, 'S2L'),
+(64, 'S3G'),
+(65, 'S3H'),
+(66, 'S3I'),
+(67, 'S3J'),
+(68, 'S3K'),
+(69, 'S3L'),
+(70, 'S4G'),
+(71, 'S4H'),
+(72, 'S4I'),
+(73, 'S4J'),
+(74, 'S4K'),
+(75, 'S4L'),
+(76, 'S5A'),
+(77, 'S5B'),
+(78, 'S5C'),
+(79, 'S5D'),
+(80, 'S5E'),
+(81, 'S5F'),
+(82, 'S5G'),
+(83, 'S5H'),
+(84, 'S5I'),
+(85, 'S5J'),
+(86, 'S5K'),
+(87, 'S5L'),
+(88, 'S6A'),
+(89, 'S6B'),
+(90, 'S6C'),
+(91, 'S6D'),
+(92, 'S6E'),
+(93, 'S6F'),
+(94, 'S6G'),
+(95, 'S6H'),
+(96, 'S6I'),
+(97, 'S6J'),
+(98, 'S6K'),
+(99, 'S6L'),
+(100, 'S7A'),
+(101, 'S7B'),
+(102, 'S7C'),
+(103, 'S7D'),
+(104, 'S7E'),
+(105, 'S7F'),
+(106, 'S7G'),
+(107, 'S7H'),
+(108, 'S7I'),
+(109, 'S7J'),
+(110, 'S7K'),
+(111, 'S7L'),
+(112, 'S8A'),
+(113, 'S8B'),
+(114, 'S8C'),
+(115, 'S8D'),
+(116, 'S8E'),
+(117, 'S8F'),
+(118, 'S8G'),
+(119, 'S8H'),
+(120, 'S8I'),
+(121, 'S8J'),
+(122, 'S8K'),
+(123, 'S8L'),
+(124, 'S9A'),
+(125, 'S9B'),
+(126, 'S9C'),
+(127, 'S9D'),
+(128, 'S9E'),
+(129, 'S9F'),
+(130, 'S9G'),
+(131, 'S9H'),
+(132, 'S9I'),
+(133, 'S9J'),
+(134, 'S9K'),
+(135, 'S9L'),
+(136, 'S10A'),
+(137, 'S10B'),
+(138, 'S10C'),
+(139, 'S10D'),
+(140, 'S10E'),
+(141, 'S10F'),
+(142, 'S10G'),
+(143, 'S10H'),
+(144, 'S10I'),
+(145, 'S10J'),
+(146, 'S10K'),
+(147, 'S10L'),
+(148, 'INGBD1 S2'),
+(149, 'INSIQ1 S2'),
+(150, 'ITINAS S2'),
+(151, 'ITINN1 S2'),
+(152, 'ITINN2 S2'),
+(153, 'ITINS1 S2'),
+(154, 'ITINT2 S2'),
+(155, 'ITINT3 S2'),
+(156, 'ITINN1 S0'),
+(157, 'INGBD1 S10'),
+(158, 'INSIQ1 S10'),
+(159, 'ITINAS S10'),
+(160, 'ITINN1 S10'),
+(161, 'ITINN2 S10'),
+(162, 'ITINS1 S10'),
+(163, 'ITINT2 S10'),
+(164, 'ITINT3 S10');
-- --------------------------------------------------------
--
--- Table structure for table `mcc_module`
+-- Structure de la table `mcc_module`
--
CREATE TABLE IF NOT EXISTS `mcc_module` (
@@ -284,10 +305,10 @@ CREATE TABLE IF NOT EXISTS `mcc_module` (
PRIMARY KEY (`id_mcc_module`),
KEY `id_mcc_ue` (`id_mcc_ue`),
KEY `id_module` (`id_module`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=40 ;
+) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=599 ;
--
--- RELATIONS FOR TABLE `mcc_module`:
+-- RELATIONS POUR LA TABLE `mcc_module`:
-- `id_mcc_ue`
-- `mcc_ue` -> `id_mcc_ue`
-- `id_module`
@@ -297,7 +318,7 @@ CREATE TABLE IF NOT EXISTS `mcc_module` (
-- --------------------------------------------------------
--
--- Table structure for table `mcc_ue`
+-- Structure de la table `mcc_ue`
--
CREATE TABLE IF NOT EXISTS `mcc_ue` (
@@ -308,10 +329,10 @@ CREATE TABLE IF NOT EXISTS `mcc_ue` (
PRIMARY KEY (`id_mcc_ue`),
KEY `id_semestre` (`id_semestre`),
KEY `id_ue` (`id_ue`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;
+) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=93 ;
--
--- RELATIONS FOR TABLE `mcc_ue`:
+-- RELATIONS POUR LA TABLE `mcc_ue`:
-- `id_semestre`
-- `semestre` -> `id_semestre`
-- `id_ue`
@@ -321,7 +342,7 @@ CREATE TABLE IF NOT EXISTS `mcc_ue` (
-- --------------------------------------------------------
--
--- Table structure for table `module`
+-- Structure de la table `module`
--
CREATE TABLE IF NOT EXISTS `module` (
@@ -329,12 +350,12 @@ CREATE TABLE IF NOT EXISTS `module` (
`nom` varchar(10) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`libelle` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id_module`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=14 ;
+) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=222 ;
-- --------------------------------------------------------
--
--- Table structure for table `note`
+-- Structure de la table `note`
--
CREATE TABLE IF NOT EXISTS `note` (
@@ -345,10 +366,10 @@ CREATE TABLE IF NOT EXISTS `note` (
PRIMARY KEY (`id_note`),
KEY `id_appartenance` (`id_appartenance`),
KEY `id_controle` (`id_controle`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
+) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=493 ;
--
--- RELATIONS FOR TABLE `note`:
+-- RELATIONS POUR LA TABLE `note`:
-- `id_appartenance`
-- `appartenance` -> `id_appartenance`
-- `id_controle`
@@ -358,7 +379,7 @@ CREATE TABLE IF NOT EXISTS `note` (
-- --------------------------------------------------------
--
--- Table structure for table `semestre`
+-- Structure de la table `semestre`
--
CREATE TABLE IF NOT EXISTS `semestre` (
@@ -368,35 +389,41 @@ CREATE TABLE IF NOT EXISTS `semestre` (
`rang` tinyint(4) NOT NULL,
`annee` year(4) NOT NULL,
PRIMARY KEY (`id_semestre`),
- UNIQUE KEY `rang` (`rang`,`annee`),
KEY `id_formation` (`id_formation`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=16 ;
+) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=249 ;
--
--- RELATIONS FOR TABLE `semestre`:
+-- RELATIONS POUR LA TABLE `semestre`:
-- `id_formation`
-- `formation` -> `id_formation`
--
+-- --------------------------------------------------------
+
--
--- Dumping data for table `semestre`
+-- Structure de la table `semestrepair`
--
-INSERT INTO `semestre` (`id_semestre`, `id_formation`, `nom`, `rang`, `annee`) VALUES
-(1, 1, 'S1', 1, 2015),
-(2, 1, 'S2', 2, 2015),
-(3, 2, 'S3', 3, 2015),
-(4, 2, 'S4', 4, 2015),
-(5, 1, 'S1', 1, 2016),
-(6, 1, 'S2', 2, 2016),
-(7, 2, 'S3', 3, 2016),
-(8, 2, 'S4', 4, 2016),
-(15, 1, 'S1', 1, 2017);
+CREATE TABLE IF NOT EXISTS `semestrepair` (
+ `annee` varchar(4) NOT NULL,
+ `debut` date NOT NULL,
+ `milieu` date NOT NULL,
+ `fin` date NOT NULL,
+ UNIQUE KEY `annee` (`annee`)
+) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+
+--
+-- Contenu de la table `semestrepair`
+--
+
+INSERT INTO `semestrepair` (`annee`, `debut`, `milieu`, `fin`) VALUES
+('2015', '2015-09-01', '2016-01-31', '2016-07-01'),
+('2016', '2016-09-01', '2017-01-31', '2017-07-01');
-- --------------------------------------------------------
--
--- Table structure for table `ue`
+-- Structure de la table `ue`
--
CREATE TABLE IF NOT EXISTS `ue` (
@@ -404,12 +431,12 @@ CREATE TABLE IF NOT EXISTS `ue` (
`nom` varchar(10) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`libelle` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id_ue`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
+) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=35 ;
-- --------------------------------------------------------
--
--- Table structure for table `utilisateur`
+-- Structure de la table `utilisateur`
--
CREATE TABLE IF NOT EXISTS `utilisateur` (
@@ -419,127 +446,27 @@ CREATE TABLE IF NOT EXISTS `utilisateur` (
`sexe` tinyint(1) NOT NULL DEFAULT '1',
`mail` varchar(50) NOT NULL,
`mdp` varchar(40) NOT NULL,
- `droits` varchar(44) NOT NULL DEFAULT '[]',
+ `droits` varchar(44) NOT NULL DEFAULT 'student',
PRIMARY KEY (`identifiant`),
UNIQUE KEY `identifiant` (`identifiant`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
--- Dumping data for table `utilisateur`
+-- Contenu de la table `utilisateur`
--
INSERT INTO `utilisateur` (`identifiant`, `prenom`, `nom`, `sexe`, `mail`, `mdp`, `droits`) VALUES
-('admin', 'monsieur', 'administrateur', 1, 'admin@iut-tlse3.fr', 'lkjdsqlkjdlqksjdlqksjdqlksdjlqksjdqj', 'admin,teacher'),
+('admin', 'monsieur', 'administrateur', 1, 'admin@iut-tlse3.fr', 'lkjdsqlkjdlqksjdlqksjdqlksdjlqksjdqj', 'teacher,admin'),
('admin2', 'madame', 'administratrice', 0, 'mme.admin@iut-tlse3.fr', 'lkjdsqlkjdlqksjdlqksjdqlksdjlqksjdqj', 'admin'),
-('aft1950a', 'Rachel', 'DAVENPORT', 0, 'rachel.davenport@etu.iut-tlse3.fr', '68724b2da1b628fd37116d3abae9c4233aa9fa56', 'student'),
-('agl1956a', 'Cruz', 'HOWE', 1, 'cruz.howe@etu.iut-tlse3.fr', 'c3f22ac779a9e0e276acdc9933cdcdb2f054e317', 'student'),
-('agq1929a', 'Althea', 'POOLE', 1, 'althea.poole@etu.iut-tlse3.fr', 'f20feea8f16e481683d420f8c97c4366d4941f4c', 'student'),
-('aiv1989a', 'Concetta', 'ROBLES', 1, 'concetta.robles@etu.iut-tlse3.fr', 'e3e642e4b47a582f3a4b3e20c4d9bf612add1824', 'student'),
-('anj1991a', 'Katie', 'GUTIERREZ', 1, 'katie.gutierrez@etu.iut-tlse3.fr', '0e2a184f4a27976f6648dbad6f33ffaba193c190', 'student'),
-('auy1966a', 'Bobbi', 'PRATT', 1, 'bobbi.pratt@etu.iut-tlse3.fr', 'bd01c0a7d116ac61a12cddf768de4384cb2ed382', 'student'),
-('awl1901a', 'Clare', 'ROLLINS', 1, 'clare.rollins@etu.iut-tlse3.fr', '0294ff411362354abbad41829c27b5d42cbc4388', 'student'),
-('bae1943a', 'Shaw', 'GOFF', 1, 'shaw.goff@etu.iut-tlse3.fr', '99636e590508ed14336cf5847dcd24302bd86908', 'student'),
-('bit1985a', 'Rosalind', 'FISHER', 1, 'rosalind.fisher@etu.iut-tlse3.fr', 'bbba4cd89896d2d6bf5c8d33ce3b4af025d6165d', 'student'),
-('bky1924a', 'Gena', 'ENGLAND', 1, 'gena.england@etu.iut-tlse3.fr', '89805c2213710c0f7c03954d1fb171b3aba3c107', 'student'),
-('buz1982a', 'Kemp', 'JACOBS', 1, 'kemp.jacobs@etu.iut-tlse3.fr', 'eda25de06910b9bbeeebcd81421093f1163d5a2c', 'student'),
-('cda1951a', 'Mcpherson', 'ANTHONY', 1, 'mcpherson.anthony@etu.iut-tlse3.fr', '928e8e07046c74f035b0bd0f84a6463133890006', 'student'),
-('cuk1947a', 'Baxter', 'HERRERA', 1, 'baxter.herrera@etu.iut-tlse3.fr', '1e0927db69476aa8dad0e2f0b360aa142800b66c', 'student'),
-('cvv1936a', 'Kayla', 'CANTRELL', 1, 'kayla.cantrell@etu.iut-tlse3.fr', '7c9976507ec461d729f8e48ccdf5b8e8418ae6fa', 'student'),
-('cyw1979a', 'Zamora', 'RIDDLE', 0, 'zamora.riddle@etu.iut-tlse3.fr', '747582c758969846527f612f05ac525a82f2d67f', 'student'),
-('djo1928a', 'Vaughn', 'DURHAM', 1, 'vaughn.durham@etu.iut-tlse3.fr', 'cd6d4eb78a2f2b4228913d8ca89ab95fba17a953', 'student'),
-('dtg1946a', 'Ruiz', 'WILKERSON', 1, 'ruiz.wilkerson@etu.iut-tlse3.fr', '61fa79da89021355623584247fc5597b4a811c4a', 'student'),
-('dui1946a', 'Burns', 'COMPTON', 1, 'burns.compton@etu.iut-tlse3.fr', '7efa228dda0181027eff80368fe5426321ffa40e', 'student'),
-('eca1977a', 'Hope', 'WILSON', 1, 'hope.wilson@etu.iut-tlse3.fr', 'aa9f150450bed0a9c47d6d1b412e9af032da8fa9', 'student'),
-('eee1933a', 'Stacey', 'LITTLE', 0, 'stacey.little@etu.iut-tlse3.fr', '31b9ae5ec7027c386807ca2e8212dcc26c3b087e', 'student'),
-('eme1913a', 'Booth', 'HENRY', 1, 'booth.henry@etu.iut-tlse3.fr', '86fb4f37792e36d800265554310d21e59d624d4d', 'student'),
-('fei1944a', 'Esperanza', 'TERRELL', 1, 'esperanza.terrell@etu.iut-tlse3.fr', '9800cde34ddf1e24c2b1e31f84d72f2f9de753c8', 'student'),
-('gdb1939a', 'Kate', 'NOEL', 1, 'kate.noel@etu.iut-tlse3.fr', '918bcf2e3ffccb2bd18290a67bcbada6921c8ba3', 'student'),
-('gwe1975a', 'Helen', 'HICKS', 1, 'helen.hicks@etu.iut-tlse3.fr', 'd5578ae52d8b9429a411fe6824f79aa2e4ba4295', 'student'),
-('gyy1983a', 'Merrill', 'WALTER', 1, 'merrill.walter@etu.iut-tlse3.fr', '2d6450fb04820591c34d6e470d8d16cc129ed634', 'student'),
-('hcc1997a', 'Madeline', 'MARKS', 1, 'madeline.marks@etu.iut-tlse3.fr', '193e0b1555ac578b13b6f02b4b2c6b8c0576a2cd', 'student'),
-('hku1995a', 'Roslyn', 'MURPHY', 1, 'roslyn.murphy@etu.iut-tlse3.fr', 'a2c17932dcc6a628601a86bd02e5e6110b774205', 'student'),
-('hmn1970a', 'Levy', 'ARMSTRONG', 1, 'levy.armstrong@etu.iut-tlse3.fr', '85eed5e07ad380224e3dff9c68631436fc5e0580', 'student'),
-('hpa1908a', 'Jacklyn', 'BYRD', 1, 'jacklyn.byrd@etu.iut-tlse3.fr', '50c850d3d6c6e8b5277f58f59c206d7ed685b8f9', 'student'),
-('hrv1902a', 'Irwin', 'HOUSTON', 1, 'irwin.houston@etu.iut-tlse3.fr', '99ab47f6cce9313bb631d892d3a192420df1ba43', 'student'),
-('hsx1927a', 'Irene', 'MONROE', 1, 'irene.monroe@etu.iut-tlse3.fr', '7fa7e7fcbb03c0be72583f2d1bfc41720f2274f1', 'student'),
-('hth1975a', 'Pruitt', 'FERGUSON', 1, 'pruitt.ferguson@etu.iut-tlse3.fr', '562802653c96a2e3d2523fb6f38df8c42a6c70a2', 'student'),
-('hzg1935a', 'Clarice', 'ORTEGA', 1, 'clarice.ortega@etu.iut-tlse3.fr', '8c50183063238ec8218d0959c71f3315715102be', 'student'),
-('iah1936a', 'Franklin', 'SLATER', 1, 'franklin.slater@etu.iut-tlse3.fr', 'c4b7e3ae38056aa7b5a492b5ae4d6822bbc4f04b', 'student'),
-('ihf1991a', 'Robinson', 'MCGEE', 1, 'robinson.mcgee@etu.iut-tlse3.fr', '4aeeee2100e584893c71d32ebcb5b4837f3e2e1a', 'student'),
-('imf1922a', 'Hawkins', 'PATTERSON', 1, 'hawkins.patterson@etu.iut-tlse3.fr', '05ef138dfd9464af5ca7ddb1e6fc5d38a5d256dc', 'student'),
-('iyh1918a', 'Tucker', 'TRAN', 1, 'tucker.tran@etu.iut-tlse3.fr', '70e3a6e9f775731a6dc43044576feb6acf4739bd', 'student'),
-('jfa1965a', 'Lolita', 'FARRELL', 1, 'lolita.farrell@etu.iut-tlse3.fr', '1a5d44889500c4f04f076836691d9ccea4c56cff', 'student'),
-('jgd1966a', 'Janelle', 'BURKS', 1, 'janelle.burks@etu.iut-tlse3.fr', '83cbc892278c1d7aab3214383b272a2677a39f01', 'student'),
-('jrc1974a', 'Pierce', 'CHURCH', 1, 'pierce.church@etu.iut-tlse3.fr', '0bf72260769a364574bebe43a0e2d40f0b42918a', 'student'),
-('kfx1995a', 'Mitzi', 'SCHROEDER', 1, 'mitzi.schroeder@etu.iut-tlse3.fr', 'ea085dda880c523b14c1d9c24bfe8479901d90bf', 'student'),
-('kpf1942a', 'Strickland', 'ROACH', 1, 'strickland.roach@etu.iut-tlse3.fr', '49ae8a41825e039415fc5403721a08bf849675dd', 'student'),
-('ktz1997a', 'Mcgowan', 'COHEN', 1, 'mcgowan.cohen@etu.iut-tlse3.fr', '77f2eb9b0cd9702671799b4016e115fe185b44da', 'student'),
-('kul1903a', 'Magdalena', 'SIMON', 1, 'magdalena.simon@etu.iut-tlse3.fr', 'a364c06c6bc0883322fe0b8fecf70379187e85de', 'student'),
-('lbh1609a', 'Hervé', 'LEBLANC', 1, 'herve.leblanc@iut-tlse3.fr', 'lqkjsdlkjsdlkjqsdlkjqsdlkjqsdkjqsldjqsj', 'teacher'),
-('liw1940a', 'Middleton', 'WATERS', 1, 'middleton.waters@etu.iut-tlse3.fr', '406a96ab06f805166e3ef4809e5b8aefd3fa422a', 'student'),
-('ljc1902a', 'Lisa', 'CLEMENTS', 1, 'lisa.clements@etu.iut-tlse3.fr', '8b554a1fdc6fa3c07988a523bf411c90c1b647f7', 'student'),
-('lme1952a', 'Hollie', 'GILLIAM', 1, 'hollie.gilliam@etu.iut-tlse3.fr', '3f7b0669e6d2a9df317c89d9947b8b2c724278f5', 'student'),
-('maq1980a', 'Cook', 'DUNN', 1, 'cook.dunn@etu.iut-tlse3.fr', '9a35d39268d9ba001290d4ad62de2e8d3da645dc', 'student'),
-('mhr1952a', 'Socorro', 'BLAIR', 1, 'socorro.blair@etu.iut-tlse3.fr', '007a09dbff0959962f7aca117f55e125d77658c4', 'student'),
-('mhu1946a', 'Edna', 'GREEN', 1, 'edna.green@etu.iut-tlse3.fr', 'a2be4db796235e6ee539d8a96a692fc1936957db', 'student'),
-('mma1990a', 'Williamson', 'HATFIELD', 1, 'williamson.hatfield@etu.iut-tlse3.fr', 'b00d282627610321925b6573ecf55242491e4382', 'student'),
-('mrd1609a', 'Adrien', 'MARQUES', 1, 'adrien.marques@etu.iut-tlse3.de', '34ad81180ba7cfa510101af8abe47a558e46858a', 'student'),
-('msj1985a', 'Ball', 'AVILA', 1, 'ball.avila@etu.iut-tlse3.fr', 'a65d0ad5230a8e62f691ad1f2f95a3c65f1c03dd', 'student'),
-('mzh1955a', 'Leblanc', 'WHEELER', 1, 'leblanc.wheeler@etu.iut-tlse3.fr', 'd5711bb21c243770c254b30fc2fb429b06bbfaf0', 'student'),
-('ngw1997a', 'Booker', 'LOPEZ', 1, 'booker.lopez@etu.iut-tlse3.fr', 'a0feaf0e9ec8f18cfc3cc8eaa0a4af131c5c91d7', 'student'),
-('ngz1932a', 'Faye', 'PAYNE', 1, 'faye.payne@etu.iut-tlse3.fr', '166e4a0172787e784c6835ed07d34a550b61b986', 'student'),
-('non1968a', 'Foster', 'TILLMAN', 1, 'foster.tillman@etu.iut-tlse3.fr', '3a3f8d8ddbf68fa1e366cd87d20357f05fa09f45', 'student'),
-('obg1973a', 'Lynch', 'CHANDLER', 1, 'lynch.chandler@etu.iut-tlse3.fr', 'a10d3ba3eacf95b418fe2c108492ea41ad83fc9e', 'student'),
-('ono1984a', 'Kitty', 'SANFORD', 0, 'kitty.sanford@etu.iut-tlse3.fr', '2100f892c9e0c1a0ce35e444d969b2bdf9de9d6b', 'student'),
-('oqz1937a', 'Morse', 'MICHAEL', 1, 'morse.michael@etu.iut-tlse3.fr', '2edfedd459e1b63bf637184c4ee4a978f0c8e41e', 'student'),
-('otm1902a', 'Woods', 'DEJESUS', 1, 'woods.dejesus@etu.iut-tlse3.fr', '8d3a059e7df1744e6e342dad660adeb3675d42d1', 'student'),
-('otv1930a', 'Odonnell', 'BEASLEY', 0, 'odonnell.beasley@etu.iut-tlse3.fr', 'b55e173984ef282d1bbfb1cf441b1c702533ac87', 'student'),
-('oxz1985a', 'Paul', 'GROSS', 1, 'paul.gross@etu.iut-tlse3.fr', '5ba7159ed8bea08ff0c6b25f47c979f2e3b9e1a5', 'student'),
-('pdi1904a', 'Brady', 'ASHLEY', 1, 'brady.ashley@etu.iut-tlse3.fr', '48c9adaa6687ec1f896675cd7dd262c6b38c2b44', 'student'),
-('pfv1965a', 'Francine', 'COMBS', 0, 'francine.combs@etu.iut-tlse3.fr', 'a6ba94eec7357d691231ce8b7940d86ae2cb94a9', 'student'),
-('pos1958a', 'Juliana', 'FULLER', 0, 'juliana.fuller@etu.iut-tlse3.fr', 'bd4300a1779af89b2c87863384d7ab4c93d922ad', 'student'),
-('psg1965a', 'Knapp', 'STEPHENS', 1, 'knapp.stephens@etu.iut-tlse3.fr', '4e24185809f6d19ab25469582b340d1d98d1478a', 'student'),
-('qoe1974a', 'Raquel', 'CUNNINGHAM', 1, 'raquel.cunningham@etu.iut-tlse3.fr', '5670da6f0a600ea148705e8dfe87921b35bc24dc', 'student'),
-('rmj1965a', 'Bridges', 'ROSALES', 1, 'bridges.rosales@etu.iut-tlse3.fr', 'ffa1cf9f81059b83a1a05fe7408867027decf767', 'student'),
-('rpl1936a', 'Tamera', 'MOSES', 0, 'tamera.moses@etu.iut-tlse3.fr', 'd7f0216bd90b84f878bf562f473875e500d6ae40', 'student'),
-('rwg1909a', 'Kelly', 'WALLACE', 0, 'kelly.wallace@etu.iut-tlse3.fr', '28356092e4722e7d40d761db1b2a3e4178c0e8a1', 'student'),
-('scm1996a', 'Dotson', 'SANDOVAL', 1, 'dotson.sandoval@etu.iut-tlse3.fr', '3d2818a46340435822af94d9736bfad7ad1ecd4b', 'student'),
-('sft1994a', 'Norris', 'BROCK', 1, 'norris.brock@etu.iut-tlse3.fr', 'fcfd756acef2869bb15d72b877ccd9eed675fd26', 'student'),
-('sjl1937a', 'English', 'POPE', 1, 'english.pope@etu.iut-tlse3.fr', 'a5536a593633b1d610e976985d3be1fc27999e4d', 'student'),
-('sjw1936a', 'Cross', 'MEYERS', 1, 'cross.meyers@etu.iut-tlse3.fr', '8571d7564e2a196feb0841fd8474754d0032721c', 'student'),
-('ssr1906a', 'Howell', 'FAULKNER', 1, 'howell.faulkner@etu.iut-tlse3.fr', '073de42d66740dfd2beec792e63806a7147fa087', 'student'),
-('ste1994a', 'Allison', 'CALLAHAN', 0, 'allison.callahan@etu.iut-tlse3.fr', 'a5f1074db3275a128b57d99c8a48a557297084c9', 'student'),
-('swd1951a', 'Jenny', 'GRAHAM', 0, 'jenny.graham@etu.iut-tlse3.fr', 'ae8ffe6506ca1863cee65fc4402bb5dd6e563d4b', 'student'),
-('tdc1978a', 'Bird', 'TRAVIS', 1, 'bird.travis@etu.iut-tlse3.fr', '4a10508dd7f87089a321fc07ff63a8269a427bcb', 'student'),
-('tkz1955a', 'Nora', 'BREWER', 0, 'nora.brewer@etu.iut-tlse3.fr', '6695f488b7caf712423e5f090707058b5af0798d', 'student'),
-('tnx1949a', 'Dejesus', 'WALTON', 1, 'dejesus.walton@etu.iut-tlse3.fr', '830e567e1f570e0b90ae23488e1aaa11142ec4a6', 'student'),
-('uix1942a', 'Kristen', 'GIBSON', 0, 'kristen.gibson@etu.iut-tlse3.fr', '66fa9b0c1e377689bde5992b7ce9f8a88b394693', 'student'),
-('vau1957a', 'Kathy', 'STOUT', 0, 'kathy.stout@etu.iut-tlse3.fr', '7149c984ea57994e5306ce3c4026064a776de1d4', 'student'),
-('vdj1905a', 'Dean', 'ESPINOZA', 1, 'dean.espinoza@etu.iut-tlse3.fr', 'fde91e6c0086ecda41e08a683eb6df56c7739371', 'student'),
-('vgb1979a', 'Baird', 'FORD', 1, 'baird.ford@etu.iut-tlse3.fr', '66eb6f8e8634e210729fcf25dfa32ca17bf401c3', 'student'),
-('vul1953a', 'Robyn', 'BATES', 1, 'robyn.bates@etu.iut-tlse3.fr', '6421ed3a69005e0de9ab025db4617a5a2d125682', 'student'),
-('wbt1993a', 'Goodman', 'PAUL', 1, 'goodman.paul@etu.iut-tlse3.fr', '282c5d93f43a3960e840b410f95b4c598e8a9340', 'student'),
-('wnx1995a', 'Lorraine', 'PADILLA', 1, 'lorraine.padilla@etu.iut-tlse3.fr', '6f38a397c9c7e5b3aceab87e63da5533fa612459', 'student'),
-('wpa1966a', 'Collier', 'ENGLISH', 1, 'collier.english@etu.iut-tlse3.fr', 'fd63ff8eefa080cbecb52b68dc3cf264cf121fe3', 'student'),
-('wvn1982a', 'Sears', 'WELCH', 1, 'sears.welch@etu.iut-tlse3.fr', '39b49c655ec584119306086db59253cf3a171f42', 'student'),
-('xdh1989a', 'Rasmussen', 'PAGE', 1, 'rasmussen.page@etu.iut-tlse3.fr', '51240c864a1efe510e150f5789889dd7b1173e9c', 'student'),
-('xdi1926a', 'Ferrell', 'SALAS', 1, 'ferrell.salas@etu.iut-tlse3.fr', '50a8f5265f56c9a30816379dd91d26870c9b649b', 'student'),
-('xtb1903a', 'Kelly', 'FLYNN', 0, 'kelly.flynn@etu.iut-tlse3.fr', '270b848d2e7ecb404a3816219bcfc32dafed8477', 'student'),
-('ydw1981a', 'Glenda', 'WILKINSON', 0, 'glenda.wilkinson@etu.iut-tlse3.fr', '594ca97b532fa21cc524792f2d00a2720b010191', 'student'),
-('yjh1944a', 'Thompson', 'SOLIS', 1, 'thompson.solis@etu.iut-tlse3.fr', '303925d37b3d505b6162bd0222bd654dc06327a9', 'student'),
-('ylq1926a', 'Stein', 'SILVA', 1, 'stein.silva@etu.iut-tlse3.fr', '9d4517cb3cec7bae1957f4026db777e33ccc097d', 'student'),
-('ypo1964a', 'Marylou', 'HOPKINS', 0, 'marylou.hopkins@etu.iut-tlse3.fr', 'b72c606e9f02d46fbd29da132d96bbdbbffabf35', 'student'),
-('ypt1989a', 'Simon', 'MORALES', 1, 'simon.morales@etu.iut-tlse3.fr', '552b82ca9e6d6b6f661e66d7af0a380e00d52625', 'student'),
-('yyt1926a', 'Bryant', 'CHANEY', 1, 'bryant.chaney@etu.iut-tlse3.fr', '5a962df24a9b04ed8a56c02a68d8dfc5e9435abe', 'student'),
-('zge1937a', 'Ella', 'GARZA', 0, 'ella.garza@etu.iut-tlse3.fr', '927065354ae8e224f43f6eb9578b5c7c9750461b', 'student'),
-('zgy1948a', 'Emily', 'ALVARADO', 0, 'emily.alvarado@etu.iut-tlse3.fr', '34ad81180ba7cfa510101af8abe47a558e46858a', 'student');
+('lbh1609a', 'Hervé', 'LEBLANC', 1, 'herve.leblanc@iut-tlse3.fr', 'lqkjsdlkjsdlkjqsdlkjqsdlkjqsdkjqsldjqsj', 'teacher'),
+('ref', 'mlle', 'référente', 0, 'ref@ref.ref', 'sqldkmsqldksqmlkd', 'master');
--
--- Constraints for dumped tables
+-- Contraintes pour les tables exportées
--
--
--- Constraints for table `appartenance`
+-- Contraintes pour la table `appartenance`
--
ALTER TABLE `appartenance`
ADD CONSTRAINT `appartenance_ibfk_1` FOREIGN KEY (`id_etudiant`) REFERENCES `utilisateur` (`identifiant`),
@@ -547,41 +474,42 @@ ALTER TABLE `appartenance`
ADD CONSTRAINT `appartenance_ibfk_3` FOREIGN KEY (`id_semestre`) REFERENCES `semestre` (`id_semestre`);
--
--- Constraints for table `controle`
+-- Contraintes pour la table `controle`
--
ALTER TABLE `controle`
ADD CONSTRAINT `controle_ibfk_1` FOREIGN KEY (`id_mcc_module`) REFERENCES `mcc_module` (`id_mcc_module`) ON DELETE CASCADE;
--
--- Constraints for table `enseignement`
+-- Contraintes pour la table `enseignement`
--
ALTER TABLE `enseignement`
ADD CONSTRAINT `enseignement_id_enseignant` FOREIGN KEY (`id_enseignant`) REFERENCES `utilisateur` (`identifiant`),
+ ADD CONSTRAINT `enseignement_id_groupe` FOREIGN KEY (`id_groupe`) REFERENCES `groupe` (`id_groupe`),
ADD CONSTRAINT `enseignement_id_mcc_module` FOREIGN KEY (`id_mcc_module`) REFERENCES `mcc_module` (`id_mcc_module`);
--
--- Constraints for table `mcc_module`
+-- Contraintes pour la table `mcc_module`
--
ALTER TABLE `mcc_module`
ADD CONSTRAINT `mcc_module_id_mcc_ue` FOREIGN KEY (`id_mcc_ue`) REFERENCES `mcc_ue` (`id_mcc_ue`) ON DELETE CASCADE,
ADD CONSTRAINT `mcc_module_id_module` FOREIGN KEY (`id_module`) REFERENCES `module` (`id_module`) ON DELETE CASCADE;
--
--- Constraints for table `mcc_ue`
+-- Contraintes pour la table `mcc_ue`
--
ALTER TABLE `mcc_ue`
ADD CONSTRAINT `mcc_ue_id_semestre` FOREIGN KEY (`id_semestre`) REFERENCES `semestre` (`id_semestre`) ON DELETE CASCADE,
ADD CONSTRAINT `mcc_ue_id_ue` FOREIGN KEY (`id_ue`) REFERENCES `ue` (`id_ue`) ON DELETE CASCADE;
--
--- Constraints for table `note`
+-- Contraintes pour la table `note`
--
ALTER TABLE `note`
ADD CONSTRAINT `note_id_appartenance` FOREIGN KEY (`id_appartenance`) REFERENCES `appartenance` (`id_appartenance`) ON DELETE CASCADE,
ADD CONSTRAINT `note_id_controle` FOREIGN KEY (`id_controle`) REFERENCES `controle` (`id_controle`) ON DELETE CASCADE;
--
--- Constraints for table `semestre`
+-- Contraintes pour la table `semestre`
--
ALTER TABLE `semestre`
ADD CONSTRAINT `semestre_id_formation` FOREIGN KEY (`id_formation`) REFERENCES `formation` (`id_formation`);
diff --git a/xdoc/filled.sql b/xdoc/filled.sql
deleted file mode 100755
index e0326d7..0000000
--- a/xdoc/filled.sql
+++ /dev/null
@@ -1,948 +0,0 @@
--- phpMyAdmin SQL Dump
--- version 4.0.10deb1
--- http://www.phpmyadmin.net
---
--- Client: localhost
--- Généré le: Sam 02 Janvier 2016 à 01:13
--- Version du serveur: 5.5.46-0ubuntu0.14.04.2
--- Version de PHP: 5.5.9-1ubuntu4.14
-
-SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
-SET time_zone = "+00:00";
-
-
-/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
-/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
-/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
-/*!40101 SET NAMES utf8 */;
-
---
--- Base de données: `sid2`
---
-
--- --------------------------------------------------------
-
---
--- Structure de la table `appartenance`
---
-
-CREATE TABLE IF NOT EXISTS `appartenance` (
- `id_appartenance` int(11) NOT NULL AUTO_INCREMENT,
- `id_etudiant` varchar(50) NOT NULL,
- `id_groupe` int(11) NOT NULL,
- `id_semestre` int(11) NOT NULL,
- PRIMARY KEY (`id_appartenance`),
- KEY `id_etudiant` (`id_etudiant`),
- KEY `id_groupe` (`id_groupe`),
- KEY `id_semestre` (`id_semestre`),
- KEY `identifiant` (`id_etudiant`),
- KEY `id_etudiant_2` (`id_etudiant`),
- KEY `id_groupe_2` (`id_groupe`),
- KEY `id_semestre_2` (`id_semestre`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=114 ;
-
---
--- RELATIONS POUR LA TABLE `appartenance`:
--- `id_etudiant`
--- `utilisateur` -> `identifiant`
--- `id_groupe`
--- `groupe` -> `id_groupe`
--- `id_semestre`
--- `semestre` -> `id_semestre`
---
-
---
--- Contenu de la table `appartenance`
---
-
-INSERT INTO `appartenance` (`id_appartenance`, `id_etudiant`, `id_groupe`, `id_semestre`) VALUES
-(1, 'mrd1609a', 2, 2),
-(2, 'ihf1991a', 8, 4),
-(3, 'mma1990a', 13, 1),
-(4, 'lme1952a', 15, 3),
-(5, 'imf1922a', 21, 1),
-(6, 'gyy1983a', 4, 4),
-(7, 'otm1902a', 14, 2),
-(8, 'tnx1949a', 12, 4),
-(9, 'sjl1937a', 4, 4),
-(10, 'anj1991a', 16, 4),
-(11, 'xdh1989a', 20, 4),
-(12, 'agl1956a', 3, 3),
-(13, 'mhu1946a', 21, 1),
-(14, 'cvv1936a', 14, 2),
-(15, 'mzh1955a', 6, 2),
-(16, 'pdi1904a', 19, 3),
-(17, 'cuk1947a', 10, 2),
-(18, 'non1968a', 22, 2),
-(19, 'hmn1970a', 1, 1),
-(20, 'hth1975a', 5, 1),
-(21, 'liw1940a', 6, 2),
-(22, 'dtg1946a', 18, 2),
-(23, 'oxz1985a', 7, 3),
-(24, 'ono1984a', 14, 2),
-(25, 'auy1966a', 15, 3),
-(26, 'dui1946a', 55, 1),
-(27, 'cyw1979a', 24, 4),
-(28, 'pfv1965a', 3, 3),
-(29, 'oqz1937a', 24, 4),
-(30, 'aft1950a', 7, 3),
-(31, 'bae1943a', 8, 4),
-(32, 'kul1903a', 9, 1),
-(33, 'rmj1965a', 11, 3),
-(34, 'yyt1926a', 17, 1),
-(35, 'ktz1997a', 6, 2),
-(36, 'hku1995a', 17, 1),
-(37, 'zgy1948a', 10, 2),
-(38, 'vau1957a', 23, 3),
-(39, 'hsx1927a', 19, 3),
-(40, 'eca1977a', 3, 3),
-(41, 'wpa1966a', 20, 4),
-(42, 'qoe1974a', 20, 4),
-(43, 'tkz1955a', 11, 3),
-(44, 'wnx1995a', 16, 4),
-(45, 'sft1994a', 2, 2),
-(46, 'vgb1979a', 11, 3),
-(47, 'wbt1993a', 19, 3),
-(48, 'xtb1903a', 11, 3),
-(49, 'msj1985a', 13, 1),
-(50, 'wvn1982a', 9, 1),
-(51, 'psg1965a', 4, 4),
-(52, 'hpa1908a', 5, 1),
-(53, 'maq1980a', 19, 3),
-(54, 'agq1929a', 13, 1),
-(55, 'gwe1975a', 18, 2),
-(56, 'gdb1939a', 7, 3),
-(57, 'jrc1974a', 10, 2),
-(58, 'jfa1965a', 1, 1),
-(59, 'buz1982a', 24, 4),
-(60, 'mhr1952a', 7, 3),
-(61, 'pos1958a', 11, 3),
-(62, 'xdi1926a', 3, 3),
-(63, 'awl1901a', 17, 1),
-(64, 'uix1942a', 7, 3),
-(65, 'ngz1932a', 19, 3),
-(66, 'kpf1942a', 15, 3),
-(67, 'aiv1989a', 21, 1),
-(68, 'sjw1936a', 19, 3),
-(69, 'fei1944a', 23, 3),
-(70, 'zge1937a', 21, 1),
-(71, 'rpl1936a', 19, 3),
-(72, 'hrv1902a', 22, 2),
-(73, 'djo1928a', 9, 1),
-(74, 'scm1996a', 1, 1),
-(75, 'ylq1926a', 18, 2),
-(76, 'eme1913a', 23, 3),
-(77, 'otv1930a', 1, 1),
-(78, 'cda1951a', 55, 1),
-(79, 'eee1933a', 17, 1),
-(80, 'kfx1995a', 18, 2),
-(81, 'jgd1966a', 3, 3),
-(82, 'rwg1909a', 14, 2),
-(83, 'ngw1997a', 17, 1),
-(84, 'obg1973a', 2, 2),
-(85, 'hzg1935a', 12, 4),
-(86, 'iyh1918a', 3, 3),
-(87, 'tdc1978a', 13, 1),
-(88, 'swd1951a', 2, 2),
-(89, 'vdj1905a', 22, 2),
-(90, 'bit1985a', 19, 3),
-(91, 'iah1936a', 1, 1),
-(92, 'ypt1989a', 7, 3),
-(93, 'ljc1902a', 17, 1),
-(94, 'hcc1997a', 7, 3),
-(95, 'bky1924a', 22, 2),
-(96, 'vul1953a', 5, 1),
-(97, 'ssr1906a', 55, 1),
-(98, 'yjh1944a', 11, 3),
-(99, 'ste1994a', 2, 2),
-(100, 'ypo1964a', 7, 3),
-(103, 'mrd1609a', 9, 1),
-(104, 'scm1996a', 2, 2),
-(105, 'hmn1970a', 2, 2),
-(106, 'hpa1908a', 2, 2),
-(107, 'wvn1982a', 2, 2),
-(108, 'msj1985a', 2, 2),
-(109, 'tdc1978a', 2, 2),
-(110, 'yyt1926a', 2, 2),
-(111, 'ljc1902a', 2, 2),
-(112, 'zge1937a', 2, 2),
-(113, 'ssr1906a', 2, 2);
-
--- --------------------------------------------------------
-
---
--- Structure de la table `controle`
---
-
-CREATE TABLE IF NOT EXISTS `controle` (
- `id_controle` int(11) NOT NULL AUTO_INCREMENT,
- `id_mcc_module` int(11) NOT NULL,
- `nom` varchar(10) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
- `libelle` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
- `base` int(11) NOT NULL,
- `coefficient` float NOT NULL,
- `publication` tinyint(1) NOT NULL DEFAULT '0',
- PRIMARY KEY (`id_controle`),
- KEY `id_mcc_module` (`id_mcc_module`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=259 ;
-
---
--- RELATIONS POUR LA TABLE `controle`:
--- `id_mcc_module`
--- `mcc_module` -> `id_mcc_module`
---
-
---
--- Contenu de la table `controle`
---
-
-INSERT INTO `controle` (`id_controle`, `id_mcc_module`, `nom`, `libelle`, `base`, `coefficient`, `publication`) VALUES
-(169, 105, '4R1101E1', 'Archi n°1', 20, 25, 1),
-(170, 105, '4R1101E2', 'Système', 20, 30, 1),
-(171, 105, '4R1101E3', 'Archi n°2', 20, 25, 1),
-(172, 105, '4R1101E4', 'Admin. Système', 20, 20, 0),
-(173, 106, '4R1102E1', 'Controle TP', 20, 30, 0),
-(174, 106, '4R1102E2', 'Contrôle TP', 20, 30, 0),
-(175, 106, '4R1102E3', 'Algo - Prog', 20, 40, 0),
-(176, 107, '4R1103E1', 'CC TD/TP', 20, 40, 0),
-(177, 107, '4R1103E2', 'Struct. Données & Algo', 20, 60, 0),
-(178, 108, '4R1104E1', 'ACSI', 20, 60, 0),
-(179, 108, '4R1104E2', 'Bases de données', 20, 40, 0),
-(180, 109, '4R1105E1', 'Contrôle TP', 20, 32, 0),
-(181, 109, '4R1105E2', 'Contrôle TP', 20, 68, 0),
-(182, 110, '4R1106E1', 'Oral', 20, 50, 0),
-(183, 110, '4R1106E2', 'Ecrit', 20, 50, 0),
-(184, 111, '4R1201E1', 'Ecrit n°1', 20, 33, 0),
-(185, 111, '4R1201E2', 'Ecrit n°2', 20, 67, 0),
-(186, 112, '4R1202E1', 'Ecrit n°1', 20, 33, 0),
-(187, 112, '4R1202E2', 'Ecrit n°2', 20, 67, 0),
-(188, 113, '4R1203E1', 'Contrôle cont', 20, 25, 0),
-(189, 113, '4R1203E2', 'Environnement eco', 20, 75, 0),
-(190, 114, '4R1204E1', 'Mod Organisation', 20, 65, 0),
-(191, 114, '4R1204E2', 'Diagnostic Strat.', 20, 35, 0),
-(192, 115, '4R1205E1', 'Oral Indiv.', 20, 38, 0),
-(193, 115, '4R1205E2', 'Ecrit CC', 20, 12, 0),
-(194, 115, '4R1205E3', 'Ecrit Indiv.', 20, 50, 0),
-(195, 116, '4R1206E1', 'Anglais informatique : Oral', 20, 50, 0),
-(196, 116, '4R1206E2', 'Anglais informatique : Ecrit', 20, 50, 0),
-(197, 117, '4R1207E1', 'Oral Coll.', 20, 75, 0),
-(198, 117, '4R1207E2', 'Ecrit Ind.', 20, 25, 0),
-(199, 118, '4R1101E1', 'Archi n°1', 20, 25, 1),
-(200, 118, '4R1101E2', 'Système', 20, 30, 0),
-(201, 118, '4R1101E3', 'Archi n°2', 20, 25, 0),
-(202, 118, '4R1101E4', 'Admin. Système', 20, 20, 0),
-(203, 119, '4R1102E1', 'Controle TP', 20, 30, 0),
-(204, 119, '4R1102E2', 'Contrôle TP', 20, 30, 0),
-(205, 119, '4R1102E3', 'Algo - Prog', 20, 40, 0),
-(206, 120, '4R1103E1', 'CC TD/TP', 20, 40, 0),
-(207, 120, '4R1103E2', 'Struct. Données & Algo', 20, 60, 0),
-(208, 121, '4R1104E1', 'ACSI', 20, 60, 0),
-(209, 121, '4R1104E2', 'Bases de données', 20, 40, 0),
-(210, 122, '4R1105E1', 'Contrôle TP', 20, 32, 0),
-(211, 122, '4R1105E2', 'Contrôle TP', 20, 68, 0),
-(212, 123, '4R1106E1', 'Oral', 20, 50, 0),
-(213, 123, '4R1106E2', 'Ecrit', 20, 50, 0),
-(214, 124, '4R1201E1', 'Ecrit n°1', 20, 33, 0),
-(215, 124, '4R1201E2', 'Ecrit n°2', 20, 67, 0),
-(216, 125, '4R1202E1', 'Ecrit n°1', 20, 33, 0),
-(217, 125, '4R1202E2', 'Ecrit n°2', 20, 67, 0),
-(218, 126, '4R1203E1', 'Contrôle cont', 20, 25, 0),
-(219, 126, '4R1203E2', 'Environnement eco', 20, 75, 0),
-(220, 127, '4R1204E1', 'Mod Organisation', 20, 65, 0),
-(221, 127, '4R1204E2', 'Diagnostic Strat.', 20, 35, 0),
-(222, 128, '4R1205E1', 'Oral Indiv.', 20, 38, 0),
-(223, 128, '4R1205E2', 'Ecrit CC', 20, 12, 0),
-(224, 128, '4R1205E3', 'Ecrit Indiv.', 20, 50, 0),
-(225, 129, '4R1206E1', 'Anglais informatique : Oral', 20, 50, 0),
-(226, 129, '4R1206E2', 'Anglais informatique : Ecrit', 20, 50, 0),
-(227, 130, '4R1207E1', 'Oral Coll.', 20, 75, 0),
-(228, 130, '4R1207E2', 'Ecrit Ind.', 20, 25, 0),
-(229, 131, '4R1101E1', 'Archi n°1', 20, 25, 0),
-(230, 131, '4R1101E2', 'Système', 20, 30, 0),
-(231, 131, '4R1101E3', 'Archi n°2', 20, 25, 0),
-(232, 131, '4R1101E4', 'Admin. Système', 20, 20, 0),
-(233, 132, '4R1102E1', 'Controle TP', 20, 30, 0),
-(234, 132, '4R1102E2', 'Contrôle TP', 20, 30, 0),
-(235, 132, '4R1102E3', 'Algo - Prog', 20, 40, 0),
-(236, 133, '4R1103E1', 'CC TD/TP', 20, 40, 0),
-(237, 133, '4R1103E2', 'Struct. Données & Algo', 20, 60, 0),
-(238, 134, '4R1104E1', 'ACSI', 20, 60, 0),
-(239, 134, '4R1104E2', 'Bases de données', 20, 40, 0),
-(240, 135, '4R1105E1', 'Contrôle TP', 20, 32, 0),
-(241, 135, '4R1105E2', 'Contrôle TP', 20, 68, 0),
-(242, 136, '4R1106E1', 'Oral', 20, 50, 0),
-(243, 136, '4R1106E2', 'Ecrit', 20, 50, 0),
-(244, 137, '4R1201E1', 'Ecrit n°1', 20, 33, 0),
-(245, 137, '4R1201E2', 'Ecrit n°2', 20, 67, 0),
-(246, 138, '4R1202E1', 'Ecrit n°1', 20, 33, 0),
-(247, 138, '4R1202E2', 'Ecrit n°2', 20, 67, 0),
-(248, 139, '4R1203E1', 'Contrôle cont', 20, 25, 0),
-(249, 139, '4R1203E2', 'Environnement eco', 20, 75, 0),
-(250, 140, '4R1204E1', 'Mod Organisation', 20, 65, 0),
-(251, 140, '4R1204E2', 'Diagnostic Strat.', 20, 35, 0),
-(252, 141, '4R1205E1', 'Oral Indiv.', 20, 38, 0),
-(253, 141, '4R1205E2', 'Ecrit CC', 20, 12, 0),
-(254, 141, '4R1205E3', 'Ecrit Indiv.', 20, 50, 0),
-(255, 142, '4R1206E1', 'Anglais informatique : Oral', 20, 50, 0),
-(256, 142, '4R1206E2', 'Anglais informatique : Ecrit', 20, 50, 0),
-(257, 143, '4R1207E1', 'Oral Coll.', 20, 75, 0),
-(258, 143, '4R1207E2', 'Ecrit Ind.', 20, 25, 0);
-
--- --------------------------------------------------------
-
---
--- Structure de la table `enseignement`
---
-
-CREATE TABLE IF NOT EXISTS `enseignement` (
- `id_enseignement` int(11) NOT NULL AUTO_INCREMENT,
- `id_enseignant` varchar(50) NOT NULL,
- `id_mcc_module` int(11) NOT NULL,
- `id_groupe` int(11) NOT NULL,
- `correcteur` tinyint(4) NOT NULL,
- PRIMARY KEY (`id_enseignement`),
- KEY `id_enseignant` (`id_enseignant`),
- KEY `id_mcc_module` (`id_mcc_module`),
- KEY `id_groupe` (`id_groupe`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=203 ;
-
---
--- RELATIONS POUR LA TABLE `enseignement`:
--- `id_enseignant`
--- `utilisateur` -> `identifiant`
--- `id_groupe`
--- `groupe` -> `id_groupe`
--- `id_mcc_module`
--- `mcc_module` -> `id_mcc_module`
---
-
---
--- Contenu de la table `enseignement`
---
-
-INSERT INTO `enseignement` (`id_enseignement`, `id_enseignant`, `id_mcc_module`, `id_groupe`, `correcteur`) VALUES
-(192, 'lbh1609a', 105, 17, 1),
-(194, 'lbh1609a', 105, 1, 1),
-(195, 'lbh1609a', 105, 9, 1);
-
--- --------------------------------------------------------
-
---
--- Structure de la table `formation`
---
-
-CREATE TABLE IF NOT EXISTS `formation` (
- `id_formation` int(11) NOT NULL AUTO_INCREMENT,
- `code` varchar(10) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
- `nom` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
- `nb_semestres` int(11) NOT NULL DEFAULT '2',
- PRIMARY KEY (`id_formation`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ;
-
---
--- Contenu de la table `formation`
---
-
-INSERT INTO `formation` (`id_formation`, `code`, `nom`, `nb_semestres`) VALUES
-(1, 'ITINN1', 'DUT 1A INFORMATIQUE', 2),
-(2, 'ITINN2', 'DUT 2A INFORMATIQUE', 2),
-(3, 'INGBD1', 'LP AGBD', 2),
-(4, 'INSIQ1', 'LP DQL', 2),
-(5, 'ITINAS', 'DUT AS INFORMATIQUE', 2),
-(6, 'ITINS1', 'DUT PST 1A INFORMATIQUE', 2),
-(7, 'ITINT2', 'DUT PST INFO/G.INFO 2E AN', 2),
-(8, 'ITINT3', 'DUT PST INFO/G.INFO 3E AN', 2);
-
--- --------------------------------------------------------
-
---
--- Structure de la table `groupe`
---
-
-CREATE TABLE IF NOT EXISTS `groupe` (
- `id_groupe` int(11) NOT NULL AUTO_INCREMENT,
- `nom` varchar(10) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
- PRIMARY KEY (`id_groupe`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=148 ;
-
---
--- Contenu de la table `groupe`
---
-
-INSERT INTO `groupe` (`id_groupe`, `nom`) VALUES
-(1, 'S1A'),
-(2, 'S2A'),
-(3, 'S3A'),
-(4, 'S4A'),
-(5, 'S1B'),
-(6, 'S2B'),
-(7, 'S3B'),
-(8, 'S4B'),
-(9, 'S1C'),
-(10, 'S2C'),
-(11, 'S3C'),
-(12, 'S4C'),
-(13, 'S1D'),
-(14, 'S2D'),
-(15, 'S3D'),
-(16, 'S4D'),
-(17, 'S1E'),
-(18, 'S2E'),
-(19, 'S3E'),
-(20, 'S4E'),
-(21, 'S1F'),
-(22, 'S2F'),
-(23, 'S3F'),
-(24, 'S4F'),
-(34, 'INGBD1 S1'),
-(35, 'INSIQ1 S1'),
-(36, 'ITINAS S1'),
-(37, 'ITINN1 S1'),
-(38, 'ITINN2 S1'),
-(39, 'ITINS1 S1'),
-(40, 'ITINT2 S1'),
-(41, 'ITINT3 S1'),
-(42, 'S1M'),
-(43, 'S2M'),
-(44, 'S3M'),
-(45, 'S4M'),
-(46, 'S5M'),
-(47, 'S6M'),
-(48, 'S7M'),
-(49, 'S8M'),
-(50, 'S9M'),
-(51, 'S10M'),
-(52, 'S1G'),
-(53, 'S1H'),
-(54, 'S1I'),
-(55, 'S1J'),
-(56, 'S1K'),
-(57, 'S1L'),
-(58, 'S2G'),
-(59, 'S2H'),
-(60, 'S2I'),
-(61, 'S2J'),
-(62, 'S2K'),
-(63, 'S2L'),
-(64, 'S3G'),
-(65, 'S3H'),
-(66, 'S3I'),
-(67, 'S3J'),
-(68, 'S3K'),
-(69, 'S3L'),
-(70, 'S4G'),
-(71, 'S4H'),
-(72, 'S4I'),
-(73, 'S4J'),
-(74, 'S4K'),
-(75, 'S4L'),
-(76, 'S5A'),
-(77, 'S5B'),
-(78, 'S5C'),
-(79, 'S5D'),
-(80, 'S5E'),
-(81, 'S5F'),
-(82, 'S5G'),
-(83, 'S5H'),
-(84, 'S5I'),
-(85, 'S5J'),
-(86, 'S5K'),
-(87, 'S5L'),
-(88, 'S6A'),
-(89, 'S6B'),
-(90, 'S6C'),
-(91, 'S6D'),
-(92, 'S6E'),
-(93, 'S6F'),
-(94, 'S6G'),
-(95, 'S6H'),
-(96, 'S6I'),
-(97, 'S6J'),
-(98, 'S6K'),
-(99, 'S6L'),
-(100, 'S7A'),
-(101, 'S7B'),
-(102, 'S7C'),
-(103, 'S7D'),
-(104, 'S7E'),
-(105, 'S7F'),
-(106, 'S7G'),
-(107, 'S7H'),
-(108, 'S7I'),
-(109, 'S7J'),
-(110, 'S7K'),
-(111, 'S7L'),
-(112, 'S8A'),
-(113, 'S8B'),
-(114, 'S8C'),
-(115, 'S8D'),
-(116, 'S8E'),
-(117, 'S8F'),
-(118, 'S8G'),
-(119, 'S8H'),
-(120, 'S8I'),
-(121, 'S8J'),
-(122, 'S8K'),
-(123, 'S8L'),
-(124, 'S9A'),
-(125, 'S9B'),
-(126, 'S9C'),
-(127, 'S9D'),
-(128, 'S9E'),
-(129, 'S9F'),
-(130, 'S9G'),
-(131, 'S9H'),
-(132, 'S9I'),
-(133, 'S9J'),
-(134, 'S9K'),
-(135, 'S9L'),
-(136, 'S10A'),
-(137, 'S10B'),
-(138, 'S10C'),
-(139, 'S10D'),
-(140, 'S10E'),
-(141, 'S10F'),
-(142, 'S10G'),
-(143, 'S10H'),
-(144, 'S10I'),
-(145, 'S10J'),
-(146, 'S10K'),
-(147, 'S10L');
-
--- --------------------------------------------------------
-
---
--- Structure de la table `mcc_module`
---
-
-CREATE TABLE IF NOT EXISTS `mcc_module` (
- `id_mcc_module` int(11) NOT NULL AUTO_INCREMENT,
- `id_mcc_ue` int(11) NOT NULL,
- `id_module` int(11) NOT NULL,
- `coefficient` float NOT NULL,
- PRIMARY KEY (`id_mcc_module`),
- KEY `id_mcc_ue` (`id_mcc_ue`),
- KEY `id_module` (`id_module`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=144 ;
-
---
--- RELATIONS POUR LA TABLE `mcc_module`:
--- `id_mcc_ue`
--- `mcc_ue` -> `id_mcc_ue`
--- `id_module`
--- `module` -> `id_module`
---
-
---
--- Contenu de la table `mcc_module`
---
-
-INSERT INTO `mcc_module` (`id_mcc_module`, `id_mcc_ue`, `id_module`, `coefficient`) VALUES
-(105, 17, 53, 3.5),
-(106, 17, 54, 3.5),
-(107, 17, 55, 2.5),
-(108, 17, 56, 3.5),
-(109, 17, 57, 2.5),
-(110, 17, 58, 1.5),
-(111, 18, 59, 2.5),
-(112, 18, 60, 2),
-(113, 18, 61, 1.5),
-(114, 18, 62, 2.5),
-(115, 18, 63, 2),
-(116, 18, 64, 1.5),
-(117, 18, 65, 1),
-(118, 19, 53, 3.5),
-(119, 19, 54, 3.5),
-(120, 19, 55, 2.5),
-(121, 19, 56, 3.5),
-(122, 19, 57, 2.5),
-(123, 19, 58, 1.5),
-(124, 20, 59, 2.5),
-(125, 20, 60, 2),
-(126, 20, 61, 1.5),
-(127, 20, 62, 2.5),
-(128, 20, 63, 2),
-(129, 20, 64, 1.5),
-(130, 20, 65, 1),
-(131, 21, 53, 3.5),
-(132, 21, 54, 3.5),
-(133, 21, 55, 2.5),
-(134, 21, 56, 3.5),
-(135, 21, 57, 2.5),
-(136, 21, 58, 1.5),
-(137, 22, 59, 2.5),
-(138, 22, 60, 2),
-(139, 22, 61, 1.5),
-(140, 22, 62, 2.5),
-(141, 22, 63, 2),
-(142, 22, 64, 1.5),
-(143, 22, 65, 1);
-
--- --------------------------------------------------------
-
---
--- Structure de la table `mcc_ue`
---
-
-CREATE TABLE IF NOT EXISTS `mcc_ue` (
- `id_mcc_ue` int(11) NOT NULL AUTO_INCREMENT,
- `id_semestre` int(11) NOT NULL,
- `id_ue` int(11) NOT NULL,
- `coefficient` float NOT NULL,
- PRIMARY KEY (`id_mcc_ue`),
- KEY `id_semestre` (`id_semestre`),
- KEY `id_ue` (`id_ue`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=23 ;
-
---
--- RELATIONS POUR LA TABLE `mcc_ue`:
--- `id_semestre`
--- `semestre` -> `id_semestre`
--- `id_ue`
--- `ue` -> `id_ue`
---
-
---
--- Contenu de la table `mcc_ue`
---
-
-INSERT INTO `mcc_ue` (`id_mcc_ue`, `id_semestre`, `id_ue`, `coefficient`) VALUES
-(17, 1, 9, 17),
-(18, 1, 10, 13),
-(19, 2, 9, 17),
-(20, 2, 10, 13),
-(21, 8, 9, 17),
-(22, 8, 10, 13);
-
--- --------------------------------------------------------
-
---
--- Structure de la table `module`
---
-
-CREATE TABLE IF NOT EXISTS `module` (
- `id_module` int(11) NOT NULL AUTO_INCREMENT,
- `nom` varchar(10) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
- `libelle` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
- PRIMARY KEY (`id_module`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=66 ;
-
---
--- Contenu de la table `module`
---
-
-INSERT INTO `module` (`id_module`, `nom`, `libelle`) VALUES
-(53, '4R1101', 'Introduction aux systèmes informatiques'),
-(54, '4R1102', 'Introduction à l''algorithmique et à la programmation'),
-(55, '4R1103', 'Structure de données et algorithmique fondamentaux'),
-(56, '4R1104', 'Introduction aux bases de données'),
-(57, '4R1105', 'Conception de documents et d''interfaces numériques'),
-(58, '4R1106', 'Projet tutoré - découverte'),
-(59, '4R1201', 'Mathématiques discrètes'),
-(60, '4R1202', 'Algèbre linéaire'),
-(61, '4R1203', 'Environnement économique'),
-(62, '4R1204', 'Fonctionnement des organisations'),
-(63, '4R1205', 'Expression-Communication - Fondamentaux de la communication'),
-(64, '4R1206', 'Anglais et informatique'),
-(65, '4R1207', 'PPP - connaître le monde professionnel');
-
--- --------------------------------------------------------
-
---
--- Structure de la table `note`
---
-
-CREATE TABLE IF NOT EXISTS `note` (
- `id_note` int(11) NOT NULL AUTO_INCREMENT,
- `id_appartenance` int(11) NOT NULL,
- `id_controle` int(11) NOT NULL,
- `valeur` float NOT NULL,
- PRIMARY KEY (`id_note`),
- KEY `id_appartenance` (`id_appartenance`),
- KEY `id_controle` (`id_controle`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=133 ;
-
---
--- RELATIONS POUR LA TABLE `note`:
--- `id_appartenance`
--- `appartenance` -> `id_appartenance`
--- `id_controle`
--- `controle` -> `id_controle`
---
-
---
--- Contenu de la table `note`
---
-
-INSERT INTO `note` (`id_note`, `id_appartenance`, `id_controle`, `valeur`) VALUES
-(104, 83, 169, 1),
-(105, 103, 169, 1),
-(106, 103, 170, 2),
-(107, 103, 171, 3),
-(108, 103, 169, 2),
-(109, 83, 169, 20),
-(110, 103, 169, 10),
-(111, 103, 169, 18),
-(112, 97, 169, 0),
-(113, 97, 169, 15),
-(114, 32, 169, 10),
-(115, 32, 169, 8),
-(116, 32, 169, 5),
-(117, 91, 169, 0),
-(118, 103, 170, 5),
-(119, 103, 170, 6.7),
-(120, 103, 170, 6.7),
-(121, 103, 170, 6.7),
-(122, 103, 170, 6.7),
-(123, 103, 170, 6.7),
-(124, 103, 170, 6.7),
-(125, 103, 170, 6.5),
-(126, 103, 170, 8.7),
-(127, 103, 170, 18.4),
-(128, 103, 170, 18.4),
-(129, 103, 170, 13.9),
-(130, 103, 170, 8.34),
-(131, 50, 169, 1),
-(132, 73, 169, 2);
-
--- --------------------------------------------------------
-
---
--- Structure de la table `semestre`
---
-
-CREATE TABLE IF NOT EXISTS `semestre` (
- `id_semestre` int(11) NOT NULL AUTO_INCREMENT,
- `id_formation` int(11) NOT NULL,
- `nom` varchar(10) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
- `rang` tinyint(4) NOT NULL,
- `annee` year(4) NOT NULL,
- PRIMARY KEY (`id_semestre`),
- KEY `id_formation` (`id_formation`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=17 ;
-
---
--- RELATIONS POUR LA TABLE `semestre`:
--- `id_formation`
--- `formation` -> `id_formation`
---
-
---
--- Contenu de la table `semestre`
---
-
-INSERT INTO `semestre` (`id_semestre`, `id_formation`, `nom`, `rang`, `annee`) VALUES
-(1, 1, 'S1', 1, 2015),
-(2, 1, 'S2', 2, 2015),
-(3, 2, 'S3', 3, 2015),
-(4, 2, 'S4', 4, 2015),
-(8, 1, 'S1', 1, 2016),
-(9, 2, 'S1', 1, 2016),
-(16, 2, 'S1', 1, 2015);
-
--- --------------------------------------------------------
-
---
--- Structure de la table `ue`
---
-
-CREATE TABLE IF NOT EXISTS `ue` (
- `id_ue` int(11) NOT NULL AUTO_INCREMENT,
- `nom` varchar(10) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
- `libelle` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
- PRIMARY KEY (`id_ue`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=11 ;
-
---
--- Contenu de la table `ue`
---
-
-INSERT INTO `ue` (`id_ue`, `nom`, `libelle`) VALUES
-(9, '4RUE11', 'UE1 - Bases de l''informatique'),
-(10, '4RUE12', 'UE2 - Bases de culture scientifique, sociale et humaine');
-
--- --------------------------------------------------------
-
---
--- Structure de la table `utilisateur`
---
-
-CREATE TABLE IF NOT EXISTS `utilisateur` (
- `identifiant` varchar(50) NOT NULL,
- `prenom` varchar(50) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
- `nom` varchar(50) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
- `sexe` tinyint(1) NOT NULL DEFAULT '1',
- `mail` varchar(50) NOT NULL,
- `mdp` varchar(40) NOT NULL,
- `droits` varchar(44) NOT NULL DEFAULT 'student',
- PRIMARY KEY (`identifiant`),
- UNIQUE KEY `identifiant` (`identifiant`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-
---
--- Contenu de la table `utilisateur`
---
-
-INSERT INTO `utilisateur` (`identifiant`, `prenom`, `nom`, `sexe`, `mail`, `mdp`, `droits`) VALUES
-('admin', 'monsieur', 'administrateur', 1, 'admin@iut-tlse3.fr', 'lkjdsqlkjdlqksjdlqksjdqlksdjlqksjdqj', 'teacher,admin'),
-('admin2', 'madame', 'administratrice', 0, 'mme.admin@iut-tlse3.fr', 'lkjdsqlkjdlqksjdlqksjdqlksdjlqksjdqj', 'admin'),
-('aft1950a', 'Rachel', 'DAVENPORT', 0, 'rachel.davenport@etu.iut-tlse3.fr', '68724b2da1b628fd37116d3abae9c4233aa9fa56', 'student'),
-('agl1956a', 'Cruz', 'HOWE', 1, 'cruz.howe@etu.iut-tlse3.fr', 'c3f22ac779a9e0e276acdc9933cdcdb2f054e317', 'student'),
-('agq1929a', 'Althea', 'POOLE', 1, 'althea.poole@etu.iut-tlse3.fr', 'f20feea8f16e481683d420f8c97c4366d4941f4c', 'student'),
-('aiv1989a', 'Concetta', 'ROBLES', 1, 'concetta.robles@etu.iut-tlse3.fr', 'e3e642e4b47a582f3a4b3e20c4d9bf612add1824', 'student'),
-('anj1991a', 'Katie', 'GUTIERREZ', 1, 'katie.gutierrez@etu.iut-tlse3.fr', '0e2a184f4a27976f6648dbad6f33ffaba193c190', 'student'),
-('auy1966a', 'Bobbi', 'PRATT', 1, 'bobbi.pratt@etu.iut-tlse3.fr', 'bd01c0a7d116ac61a12cddf768de4384cb2ed382', 'student'),
-('awl1901a', 'Clare', 'ROLLINS', 1, 'clare.rollins@etu.iut-tlse3.fr', '0294ff411362354abbad41829c27b5d42cbc4388', 'student'),
-('bae1943a', 'Shaw', 'GOFF', 1, 'shaw.goff@etu.iut-tlse3.fr', '99636e590508ed14336cf5847dcd24302bd86908', 'student'),
-('bit1985a', 'Rosalind', 'FISHER', 1, 'rosalind.fisher@etu.iut-tlse3.fr', 'bbba4cd89896d2d6bf5c8d33ce3b4af025d6165d', 'student'),
-('bky1924a', 'Gena', 'ENGLAND', 1, 'gena.england@etu.iut-tlse3.fr', '89805c2213710c0f7c03954d1fb171b3aba3c107', 'student'),
-('buz1982a', 'Kemp', 'JACOBS', 1, 'kemp.jacobs@etu.iut-tlse3.fr', 'eda25de06910b9bbeeebcd81421093f1163d5a2c', 'student'),
-('cda1951a', 'Mcpherson', 'ANTHONY', 1, 'mcpherson.anthony@etu.iut-tlse3.fr', '928e8e07046c74f035b0bd0f84a6463133890006', 'student'),
-('cuk1947a', 'Baxter', 'HERRERA', 1, 'baxter.herrera@etu.iut-tlse3.fr', '1e0927db69476aa8dad0e2f0b360aa142800b66c', 'student'),
-('cvv1936a', 'Kayla', 'CANTRELL', 1, 'kayla.cantrell@etu.iut-tlse3.fr', '7c9976507ec461d729f8e48ccdf5b8e8418ae6fa', 'student'),
-('cyw1979a', 'Zamora', 'RIDDLE', 0, 'zamora.riddle@etu.iut-tlse3.fr', '747582c758969846527f612f05ac525a82f2d67f', 'student'),
-('djo1928a', 'Vaughn', 'DURHAM', 1, 'vaughn.durham@etu.iut-tlse3.fr', 'cd6d4eb78a2f2b4228913d8ca89ab95fba17a953', 'student'),
-('dtg1946a', 'Ruiz', 'WILKERSON', 1, 'ruiz.wilkerson@etu.iut-tlse3.fr', '61fa79da89021355623584247fc5597b4a811c4a', 'student'),
-('dui1946a', 'Burns', 'COMPTON', 1, 'burns.compton@etu.iut-tlse3.fr', '7efa228dda0181027eff80368fe5426321ffa40e', 'student'),
-('eca1977a', 'Hope', 'WILSON', 1, 'hope.wilson@etu.iut-tlse3.fr', 'aa9f150450bed0a9c47d6d1b412e9af032da8fa9', 'student'),
-('eee1933a', 'Stacey', 'LITTLE', 0, 'stacey.little@etu.iut-tlse3.fr', '31b9ae5ec7027c386807ca2e8212dcc26c3b087e', 'student'),
-('eme1913a', 'Booth', 'HENRY', 1, 'booth.henry@etu.iut-tlse3.fr', '86fb4f37792e36d800265554310d21e59d624d4d', 'student'),
-('fei1944a', 'Esperanza', 'TERRELL', 1, 'esperanza.terrell@etu.iut-tlse3.fr', '9800cde34ddf1e24c2b1e31f84d72f2f9de753c8', 'student'),
-('gdb1939a', 'Kate', 'NOEL', 1, 'kate.noel@etu.iut-tlse3.fr', '918bcf2e3ffccb2bd18290a67bcbada6921c8ba3', 'student'),
-('gwe1975a', 'Helen', 'HICKS', 1, 'helen.hicks@etu.iut-tlse3.fr', 'd5578ae52d8b9429a411fe6824f79aa2e4ba4295', 'student'),
-('gyy1983a', 'Merrill', 'WALTER', 1, 'merrill.walter@etu.iut-tlse3.fr', '2d6450fb04820591c34d6e470d8d16cc129ed634', 'student'),
-('hcc1997a', 'Madeline', 'MARKS', 1, 'madeline.marks@etu.iut-tlse3.fr', '193e0b1555ac578b13b6f02b4b2c6b8c0576a2cd', 'student'),
-('hku1995a', 'Roslyn', 'MURPHY', 1, 'roslyn.murphy@etu.iut-tlse3.fr', 'a2c17932dcc6a628601a86bd02e5e6110b774205', 'student'),
-('hmn1970a', 'Levy', 'ARMSTRONG', 1, 'levy.armstrong@etu.iut-tlse3.fr', '85eed5e07ad380224e3dff9c68631436fc5e0580', 'student'),
-('hpa1908a', 'Jacklyn', 'BYRD', 1, 'jacklyn.byrd@etu.iut-tlse3.fr', '50c850d3d6c6e8b5277f58f59c206d7ed685b8f9', 'student'),
-('hrv1902a', 'Irwin', 'HOUSTON', 1, 'irwin.houston@etu.iut-tlse3.fr', '99ab47f6cce9313bb631d892d3a192420df1ba43', 'student'),
-('hsx1927a', 'Irene', 'MONROE', 1, 'irene.monroe@etu.iut-tlse3.fr', '7fa7e7fcbb03c0be72583f2d1bfc41720f2274f1', 'student'),
-('hth1975a', 'Pruitt', 'FERGUSON', 1, 'pruitt.ferguson@etu.iut-tlse3.fr', '562802653c96a2e3d2523fb6f38df8c42a6c70a2', 'student'),
-('hzg1935a', 'Clarice', 'ORTEGA', 1, 'clarice.ortega@etu.iut-tlse3.fr', '8c50183063238ec8218d0959c71f3315715102be', 'student'),
-('iah1936a', 'Franklin', 'SLATER', 1, 'franklin.slater@etu.iut-tlse3.fr', 'c4b7e3ae38056aa7b5a492b5ae4d6822bbc4f04b', 'student'),
-('ihf1991a', 'Robinson', 'MCGEE', 1, 'robinson.mcgee@etu.iut-tlse3.fr', '4aeeee2100e584893c71d32ebcb5b4837f3e2e1a', 'student'),
-('imf1922a', 'Hawkins', 'PATTERSON', 1, 'hawkins.patterson@etu.iut-tlse3.fr', '05ef138dfd9464af5ca7ddb1e6fc5d38a5d256dc', 'student'),
-('iyh1918a', 'Tucker', 'TRAN', 1, 'tucker.tran@etu.iut-tlse3.fr', '70e3a6e9f775731a6dc43044576feb6acf4739bd', 'student'),
-('jfa1965a', 'Lolita', 'FARRELL', 1, 'lolita.farrell@etu.iut-tlse3.fr', '1a5d44889500c4f04f076836691d9ccea4c56cff', 'student'),
-('jgd1966a', 'Janelle', 'BURKS', 1, 'janelle.burks@etu.iut-tlse3.fr', '83cbc892278c1d7aab3214383b272a2677a39f01', 'student'),
-('jrc1974a', 'Pierce', 'CHURCH', 1, 'pierce.church@etu.iut-tlse3.fr', '0bf72260769a364574bebe43a0e2d40f0b42918a', 'student'),
-('kfx1995a', 'Mitzi', 'SCHROEDER', 1, 'mitzi.schroeder@etu.iut-tlse3.fr', 'ea085dda880c523b14c1d9c24bfe8479901d90bf', 'student'),
-('kpf1942a', 'Strickland', 'ROACH', 1, 'strickland.roach@etu.iut-tlse3.fr', '49ae8a41825e039415fc5403721a08bf849675dd', 'student'),
-('ktz1997a', 'Mcgowan', 'COHEN', 1, 'mcgowan.cohen@etu.iut-tlse3.fr', '77f2eb9b0cd9702671799b4016e115fe185b44da', 'student'),
-('kul1903a', 'Magdalena', 'SIMON', 1, 'magdalena.simon@etu.iut-tlse3.fr', 'a364c06c6bc0883322fe0b8fecf70379187e85de', 'student'),
-('lbh1609a', 'Hervé', 'LEBLANC', 1, 'herve.leblanc@iut-tlse3.fr', 'lqkjsdlkjsdlkjqsdlkjqsdlkjqsdkjqsldjqsj', 'teacher'),
-('liw1940a', 'Middleton', 'WATERS', 1, 'middleton.waters@etu.iut-tlse3.fr', '406a96ab06f805166e3ef4809e5b8aefd3fa422a', 'student'),
-('ljc1902a', 'Lisa', 'CLEMENTS', 1, 'lisa.clements@etu.iut-tlse3.fr', '8b554a1fdc6fa3c07988a523bf411c90c1b647f7', 'student'),
-('lme1952a', 'Hollie', 'GILLIAM', 1, 'hollie.gilliam@etu.iut-tlse3.fr', '3f7b0669e6d2a9df317c89d9947b8b2c724278f5', 'student'),
-('maq1980a', 'Cook', 'DUNN', 1, 'cook.dunn@etu.iut-tlse3.fr', '9a35d39268d9ba001290d4ad62de2e8d3da645dc', 'student'),
-('mhr1952a', 'Socorro', 'BLAIR', 1, 'socorro.blair@etu.iut-tlse3.fr', '007a09dbff0959962f7aca117f55e125d77658c4', 'student'),
-('mhu1946a', 'Edna', 'GREEN', 1, 'edna.green@etu.iut-tlse3.fr', 'a2be4db796235e6ee539d8a96a692fc1936957db', 'student'),
-('mma1990a', 'Williamson', 'HATFIELD', 1, 'williamson.hatfield@etu.iut-tlse3.fr', 'b00d282627610321925b6573ecf55242491e4382', 'student'),
-('mrd1609a', 'Adrien', 'MARQUES', 1, 'adrien.marques@etu.iut-tlse3.de', '34ad81180ba7cfa510101af8abe47a558e46858a', 'student'),
-('msj1985a', 'Ball', 'AVILA', 1, 'ball.avila@etu.iut-tlse3.fr', 'a65d0ad5230a8e62f691ad1f2f95a3c65f1c03dd', 'student'),
-('mzh1955a', 'Leblanc', 'WHEELER', 1, 'leblanc.wheeler@etu.iut-tlse3.fr', 'd5711bb21c243770c254b30fc2fb429b06bbfaf0', 'student'),
-('ngw1997a', 'Booker', 'LOPEZ', 1, 'booker.lopez@etu.iut-tlse3.fr', 'a0feaf0e9ec8f18cfc3cc8eaa0a4af131c5c91d7', 'student'),
-('ngz1932a', 'Faye', 'PAYNE', 1, 'faye.payne@etu.iut-tlse3.fr', '166e4a0172787e784c6835ed07d34a550b61b986', 'student'),
-('non1968a', 'Foster', 'TILLMAN', 1, 'foster.tillman@etu.iut-tlse3.fr', '3a3f8d8ddbf68fa1e366cd87d20357f05fa09f45', 'student'),
-('obg1973a', 'Lynch', 'CHANDLER', 1, 'lynch.chandler@etu.iut-tlse3.fr', 'a10d3ba3eacf95b418fe2c108492ea41ad83fc9e', 'student'),
-('ono1984a', 'Kitty', 'SANFORD', 0, 'kitty.sanford@etu.iut-tlse3.fr', '2100f892c9e0c1a0ce35e444d969b2bdf9de9d6b', 'student'),
-('oqz1937a', 'Morse', 'MICHAEL', 1, 'morse.michael@etu.iut-tlse3.fr', '2edfedd459e1b63bf637184c4ee4a978f0c8e41e', 'student'),
-('otm1902a', 'Woods', 'DEJESUS', 1, 'woods.dejesus@etu.iut-tlse3.fr', '8d3a059e7df1744e6e342dad660adeb3675d42d1', 'student'),
-('otv1930a', 'Odonnell', 'BEASLEY', 0, 'odonnell.beasley@etu.iut-tlse3.fr', 'b55e173984ef282d1bbfb1cf441b1c702533ac87', 'student'),
-('oxz1985a', 'Paul', 'GROSS', 1, 'paul.gross@etu.iut-tlse3.fr', '5ba7159ed8bea08ff0c6b25f47c979f2e3b9e1a5', 'student'),
-('pdi1904a', 'Brady', 'ASHLEY', 1, 'brady.ashley@etu.iut-tlse3.fr', '48c9adaa6687ec1f896675cd7dd262c6b38c2b44', 'student'),
-('pfv1965a', 'Francine', 'COMBS', 0, 'francine.combs@etu.iut-tlse3.fr', 'a6ba94eec7357d691231ce8b7940d86ae2cb94a9', 'student'),
-('pos1958a', 'Juliana', 'FULLER', 0, 'juliana.fuller@etu.iut-tlse3.fr', 'bd4300a1779af89b2c87863384d7ab4c93d922ad', 'student'),
-('psg1965a', 'Knapp', 'STEPHENS', 1, 'knapp.stephens@etu.iut-tlse3.fr', '4e24185809f6d19ab25469582b340d1d98d1478a', 'student'),
-('qoe1974a', 'Raquel', 'CUNNINGHAM', 1, 'raquel.cunningham@etu.iut-tlse3.fr', '5670da6f0a600ea148705e8dfe87921b35bc24dc', 'student'),
-('ref', 'mlle', 'référente', 0, 'ref@ref.ref', 'sqldkmsqldksqmlkd', 'master'),
-('rmj1965a', 'Bridges', 'ROSALES', 1, 'bridges.rosales@etu.iut-tlse3.fr', 'ffa1cf9f81059b83a1a05fe7408867027decf767', 'student'),
-('rpl1936a', 'Tamera', 'MOSES', 0, 'tamera.moses@etu.iut-tlse3.fr', 'd7f0216bd90b84f878bf562f473875e500d6ae40', 'student'),
-('rwg1909a', 'Kelly', 'WALLACE', 0, 'kelly.wallace@etu.iut-tlse3.fr', '28356092e4722e7d40d761db1b2a3e4178c0e8a1', 'student'),
-('scm1996a', 'Dotson', 'SANDOVAL', 1, 'dotson.sandoval@etu.iut-tlse3.fr', '3d2818a46340435822af94d9736bfad7ad1ecd4b', 'student'),
-('sft1994a', 'Norris', 'BROCK', 1, 'norris.brock@etu.iut-tlse3.fr', 'fcfd756acef2869bb15d72b877ccd9eed675fd26', 'student'),
-('sjl1937a', 'English', 'POPE', 1, 'english.pope@etu.iut-tlse3.fr', 'a5536a593633b1d610e976985d3be1fc27999e4d', 'student'),
-('sjw1936a', 'Cross', 'MEYERS', 1, 'cross.meyers@etu.iut-tlse3.fr', '8571d7564e2a196feb0841fd8474754d0032721c', 'student'),
-('ssr1906a', 'Howell', 'FAULKNER', 1, 'howell.faulkner@etu.iut-tlse3.fr', '073de42d66740dfd2beec792e63806a7147fa087', 'student'),
-('ste1994a', 'Allison', 'CALLAHAN', 0, 'allison.callahan@etu.iut-tlse3.fr', 'a5f1074db3275a128b57d99c8a48a557297084c9', 'student'),
-('swd1951a', 'Jenny', 'GRAHAM', 0, 'jenny.graham@etu.iut-tlse3.fr', 'ae8ffe6506ca1863cee65fc4402bb5dd6e563d4b', 'student'),
-('tdc1978a', 'Bird', 'TRAVIS', 1, 'bird.travis@etu.iut-tlse3.fr', '4a10508dd7f87089a321fc07ff63a8269a427bcb', 'student'),
-('tkz1955a', 'Nora', 'BREWER', 0, 'nora.brewer@etu.iut-tlse3.fr', '6695f488b7caf712423e5f090707058b5af0798d', 'student'),
-('tnx1949a', 'Dejesus', 'WALTON', 1, 'dejesus.walton@etu.iut-tlse3.fr', '830e567e1f570e0b90ae23488e1aaa11142ec4a6', 'student'),
-('uix1942a', 'Kristen', 'GIBSON', 0, 'kristen.gibson@etu.iut-tlse3.fr', '66fa9b0c1e377689bde5992b7ce9f8a88b394693', 'student'),
-('vau1957a', 'Kathy', 'STOUT', 0, 'kathy.stout@etu.iut-tlse3.fr', '7149c984ea57994e5306ce3c4026064a776de1d4', 'student'),
-('vdj1905a', 'Dean', 'ESPINOZA', 1, 'dean.espinoza@etu.iut-tlse3.fr', 'fde91e6c0086ecda41e08a683eb6df56c7739371', 'student'),
-('vgb1979a', 'Baird', 'FORD', 1, 'baird.ford@etu.iut-tlse3.fr', '66eb6f8e8634e210729fcf25dfa32ca17bf401c3', 'student'),
-('vul1953a', 'Robyn', 'BATES', 1, 'robyn.bates@etu.iut-tlse3.fr', '6421ed3a69005e0de9ab025db4617a5a2d125682', 'student'),
-('wbt1993a', 'Goodman', 'PAUL', 1, 'goodman.paul@etu.iut-tlse3.fr', '282c5d93f43a3960e840b410f95b4c598e8a9340', 'student'),
-('wnx1995a', 'Lorraine', 'PADILLA', 1, 'lorraine.padilla@etu.iut-tlse3.fr', '6f38a397c9c7e5b3aceab87e63da5533fa612459', 'student'),
-('wpa1966a', 'Collier', 'ENGLISH', 1, 'collier.english@etu.iut-tlse3.fr', 'fd63ff8eefa080cbecb52b68dc3cf264cf121fe3', 'student'),
-('wvn1982a', 'Sears', 'WELCH', 1, 'sears.welch@etu.iut-tlse3.fr', '39b49c655ec584119306086db59253cf3a171f42', 'student'),
-('xdh1989a', 'Rasmussen', 'PAGE', 1, 'rasmussen.page@etu.iut-tlse3.fr', '51240c864a1efe510e150f5789889dd7b1173e9c', 'student'),
-('xdi1926a', 'Ferrell', 'SALAS', 1, 'ferrell.salas@etu.iut-tlse3.fr', '50a8f5265f56c9a30816379dd91d26870c9b649b', 'student'),
-('xtb1903a', 'Kelly', 'FLYNN', 0, 'kelly.flynn@etu.iut-tlse3.fr', '270b848d2e7ecb404a3816219bcfc32dafed8477', 'student'),
-('ydw1981a', 'Glenda', 'WILKINSON', 0, 'glenda.wilkinson@etu.iut-tlse3.fr', '594ca97b532fa21cc524792f2d00a2720b010191', 'student'),
-('yjh1944a', 'Thompson', 'SOLIS', 1, 'thompson.solis@etu.iut-tlse3.fr', '303925d37b3d505b6162bd0222bd654dc06327a9', 'student'),
-('ylq1926a', 'Stein', 'SILVA', 1, 'stein.silva@etu.iut-tlse3.fr', '9d4517cb3cec7bae1957f4026db777e33ccc097d', 'student'),
-('ypo1964a', 'Marylou', 'HOPKINS', 0, 'marylou.hopkins@etu.iut-tlse3.fr', 'b72c606e9f02d46fbd29da132d96bbdbbffabf35', 'student'),
-('ypt1989a', 'Simon', 'MORALES', 1, 'simon.morales@etu.iut-tlse3.fr', '552b82ca9e6d6b6f661e66d7af0a380e00d52625', 'student'),
-('yyt1926a', 'Bryant', 'CHANEY', 1, 'bryant.chaney@etu.iut-tlse3.fr', '5a962df24a9b04ed8a56c02a68d8dfc5e9435abe', 'student'),
-('zge1937a', 'Ella', 'GARZA', 0, 'ella.garza@etu.iut-tlse3.fr', '927065354ae8e224f43f6eb9578b5c7c9750461b', 'student'),
-('zgy1948a', 'Emily', 'ALVARADO', 0, 'emily.alvarado@etu.iut-tlse3.fr', '34ad81180ba7cfa510101af8abe47a558e46858a', 'student');
-
---
--- Contraintes pour les tables exportées
---
-
---
--- Contraintes pour la table `appartenance`
---
-ALTER TABLE `appartenance`
- ADD CONSTRAINT `appartenance_ibfk_1` FOREIGN KEY (`id_etudiant`) REFERENCES `utilisateur` (`identifiant`),
- ADD CONSTRAINT `appartenance_ibfk_2` FOREIGN KEY (`id_groupe`) REFERENCES `groupe` (`id_groupe`),
- ADD CONSTRAINT `appartenance_ibfk_3` FOREIGN KEY (`id_semestre`) REFERENCES `semestre` (`id_semestre`);
-
---
--- Contraintes pour la table `controle`
---
-ALTER TABLE `controle`
- ADD CONSTRAINT `controle_ibfk_1` FOREIGN KEY (`id_mcc_module`) REFERENCES `mcc_module` (`id_mcc_module`) ON DELETE CASCADE;
-
---
--- Contraintes pour la table `enseignement`
---
-ALTER TABLE `enseignement`
- ADD CONSTRAINT `enseignement_id_enseignant` FOREIGN KEY (`id_enseignant`) REFERENCES `utilisateur` (`identifiant`),
- ADD CONSTRAINT `enseignement_id_groupe` FOREIGN KEY (`id_groupe`) REFERENCES `groupe` (`id_groupe`),
- ADD CONSTRAINT `enseignement_id_mcc_module` FOREIGN KEY (`id_mcc_module`) REFERENCES `mcc_module` (`id_mcc_module`);
-
---
--- Contraintes pour la table `mcc_module`
---
-ALTER TABLE `mcc_module`
- ADD CONSTRAINT `mcc_module_id_mcc_ue` FOREIGN KEY (`id_mcc_ue`) REFERENCES `mcc_ue` (`id_mcc_ue`) ON DELETE CASCADE,
- ADD CONSTRAINT `mcc_module_id_module` FOREIGN KEY (`id_module`) REFERENCES `module` (`id_module`) ON DELETE CASCADE;
-
---
--- Contraintes pour la table `mcc_ue`
---
-ALTER TABLE `mcc_ue`
- ADD CONSTRAINT `mcc_ue_id_semestre` FOREIGN KEY (`id_semestre`) REFERENCES `semestre` (`id_semestre`) ON DELETE CASCADE,
- ADD CONSTRAINT `mcc_ue_id_ue` FOREIGN KEY (`id_ue`) REFERENCES `ue` (`id_ue`) ON DELETE CASCADE;
-
---
--- Contraintes pour la table `note`
---
-ALTER TABLE `note`
- ADD CONSTRAINT `note_id_appartenance` FOREIGN KEY (`id_appartenance`) REFERENCES `appartenance` (`id_appartenance`) ON DELETE CASCADE,
- ADD CONSTRAINT `note_id_controle` FOREIGN KEY (`id_controle`) REFERENCES `controle` (`id_controle`) ON DELETE CASCADE;
-
---
--- Contraintes pour la table `semestre`
---
-ALTER TABLE `semestre`
- ADD CONSTRAINT `semestre_id_formation` FOREIGN KEY (`id_formation`) REFERENCES `formation` (`id_formation`);
-
-/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
-/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
-/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
\ No newline at end of file
diff --git a/xdoc/flat_table_design.jpg b/xdoc/flat_table_design.jpg
deleted file mode 100755
index 99ac4e6..0000000
Binary files a/xdoc/flat_table_design.jpg and /dev/null differ
diff --git a/xdoc/generateur_100_etudiants.php b/xdoc/generateur_100_etudiants.php
deleted file mode 100755
index 0a45c28..0000000
--- a/xdoc/generateur_100_etudiants.php
+++ /dev/null
@@ -1,97 +0,0 @@
-level_1 = 'create';
-
- $request2 = new stdClass();
- $request2->level_1 = 'add';
-
-
- foreach($user as $k=>$v)
- switch($k){
- case 'identifiant': $request1->identifiant = $v; break;
- case 'prenom' : $request1->prenom = $v; break;
- case 'nom' : $request1->nom = $v; break;
- case 'mail' : $request1->mail = $v; break;
- case 'mdp' : $request1->mdp = $v; break;
- case 'droits' : $request1->droits = $v; break;
- }
-
- user_switch_level_1($request1, $answer1);
-
- echo $request1->identifiant;
-
- if( $answer1->request == 'success' ){
-
- /* AJOUT A UN GROUPE */
- $rang = ''.(rand(1,4));
-
- $request2->etudiant = $request1->identifiant; // utilisateur.identifiant
- $request2->groupe ='S'.$rang.chr(rand(65,70)); // groupe entre S1A - S4F
- $request2->semestre = $rang; // semestre.rang
- $request2->annee = '2015'; // semestre.annee
-
- groups_switch_level_1($request2, $answer2);
-
- if( $answer2->request == 'success' )
- echo '['.$request2->groupe.']
';
- else
- echo '[ERROR_2: '.$answer2->request.']
';
-
- }else
- echo ' [ERROR_1: '.$answer1->request.']
';
-
-}
-
-
-
-
-
-// user_switch_level_1($request, $answer);
-
-
-
-// echo var_dump( $answer );
-
-// echo '
It works !';
-
-
-
-
-
-/*** AJOUT D'UN UTILISATEUR À UN GROUPE ***/
-
-//
-
-// $request = new stdClass();
-// $answer = new stdClass();
-
-// $request->level_1 = 'add';
-// $request->utilisateur = 'fvg1856a'; // utilisateur.username
-// $request->groupe = 'A'; // groupe.nom
-
-
-// groups_switch_level_1($request, $answer);
-
-// echo var_dump( $answer );
-
-// echo "
It works !";
-
-
-?>
\ No newline at end of file
diff --git a/xdoc/git.graph b/xdoc/git.graph
new file mode 100644
index 0000000..34b410f
--- /dev/null
+++ b/xdoc/git.graph
@@ -0,0 +1,432 @@
+* 367520c - (HEAD, origin/dev, dev) (il y a 19 minutes) (2016-01-08 10:58:53 +0100)
Nettoyage des sources
+* 7e20d41 - (origin/master, origin/HEAD, master) (il y a 9 heures) (2016-01-08 02:16:27 +0100) [x] Compensations + au moins 1 des UE entre 8 et 10 (strictement pour 10) + moyenne des UE < 10 -> UEs entre 8 et 10 ORANGES + SEMESTRE en ORANGE + moyenne des UE >= 10 -> UEs entre 8 et 10 ORANGES + SEMESTRE en VERT + au moins 1 des UE < 8 + SEMESTRE en ROUGE
+* f991b43 - (il y a 11 heures) (2016-01-07 23:54:43 +0100) [x] Pas de "pointer" sur lien sans destination + lien dossier étudiant pour enseignant + mes groupes + saisie notes + lien dossier étudiant pour étudiant + tous les groupes + mes groupes + lien contrôle étudiant
+* bb6dc71 - (il y a 12 heures) (2016-01-07 23:42:17 +0100) [x] Import de notes pour admin+enseignant (droits cumulés)
+* 702b20a - (il y a 12 heures) (2016-01-07 23:17:23 +0100) [x] Afficher la moyenne du contrôle pour le groupe sur la page de saisie
+* be149f6 - (il y a 12 heures) (2016-01-07 23:04:02 +0100) [x] Bouton différent pour la connexion
+* 4125338 - (il y a 12 heures) (2016-01-07 22:56:54 +0100) [x] Rang pour import d'inscrits limité 'liste déroulante'
+* 99bf544 - (il y a 13 heures) (2016-01-07 22:39:01 +0100) [x] Saisie de note libre (sans pas de .25) [x] Pb saisie_notemultiple renvoie "error"
+* 326738d - (il y a 13 heures) (2016-01-07 22:00:20 +0100) [x] Mise en page de la page PROFIL
+* b588868 - (il y a 13 heures) (2016-01-07 21:51:25 +0100) [x] Modifier l'affichage du profil
+* 5bf45d3 - (il y a 14 heures) (2016-01-07 21:41:45 +0100) Correction selection formation SETTINGS
+* 946d87d - (il y a 14 heures) (2016-01-07 21:39:49 +0100) Correction des managers avec getCurrentYear
+* a572d13 - (il y a 14 heures) (2016-01-07 21:32:00 +0100) Correction settings quand aucune formation + getCurrentYear utilisation de la session
+* b0983bb - (il y a 14 heures) (2016-01-07 21:24:43 +0100) Correction et renforcement de la gestion de l'année+semestre_pair
+* 4eb3c19 - (il y a 14 heures) (2016-01-07 21:15:16 +0100) [x] Gestion semestre_pair par BDD [x] +Ajouter nom du module pour affichage MODULES>TOUS LES MODULES et autres pages équivalentes Pareil pour NOTES > *
+* 98a73d3 - (il y a 16 heures) (2016-01-07 19:18:21 +0100) [x] Publier/Cacher devient Caché/Visible
+* da06864 - (il y a 19 heures) (2016-01-07 16:14:31 +0100) Correction liens vers modeles excel
+* fdf3c22 - (il y a 20 heures) (2016-01-07 15:33:57 +0100) MMM
+* 204db59 - (il y a 20 heures) (2016-01-07 15:10:12 +0100) Retrait images modèles
+* 2b354f3 - (il y a 20 heures) (2016-01-07 15:09:20 +0100) Correction post-entretien1
+* ed7634c - (il y a 23 heures) (2016-01-07 12:25:00 +0100) Merge branch 'master' of https://github.com/xdrm-brackets/SID
+|\
+| * 3de18d8 - (il y a 23 heures) (2016-01-07 12:13:42 +0100) Create README.md
+* | f503c6b - (il y a 23 heures) (2016-01-07 12:23:47 +0100) Creative Commons
+* | 29e1300 - (il y a 2 jours) (2016-01-06 22:26:40 +0100) ..
+* | 9118c3a - (il y a 3 jours) (2016-01-05 23:40:13 +0100) [x] Cacher "importer les notes" au référent (master) [x] Correction erreur chevauchement HTML référent marks@jury
+* | 5b9d528 - (il y a 3 jours) (2016-01-05 23:03:10 +0100) [x] Permettre d'ajouter un même module pour un correcteur mais pour un autre semestre (afficher dans le )
+* | f98d4c6 - (il y a 3 jours) (2016-01-05 21:34:43 +0100) Correction de la redirection de groupe (useless) sur la page des notes
+* | 2acf167 - (il y a 3 jours) (2016-01-05 11:53:54 +0100) Correction code couleur (strict < 8 pour moyenne modules)
+|/
+* cfb354a - (il y a 4 jours) (2016-01-04 23:02:57 +0100) [x] Régler le problème de visualisation d'un semestre d'une autre année dans le parcours
+* 20c49eb - (il y a 4 jours) (2016-01-04 22:51:58 +0100) [x] Lien du vers les UE sur la page (ancre)
+* 22b4898 - (il y a 4 jours) (2016-01-04 22:26:26 +0100) Correction
+* f78ed92 - (il y a 4 jours) (2016-01-04 22:24:31 +0100) [x] Faire apparaître les UE sur le du parcours avec le code couleur uniquement
+* e3f251d - (il y a 4 jours) (2016-01-04 21:15:52 +0100) Correction mineure (prev2 => prev)
+* 9de7312 - (il y a 4 jours) (2016-01-04 18:54:37 +0100) [x] Correction des "Notice: " offset 0 des formations (auto-selection)
+* cc9b94f - (il y a 4 jours) (2016-01-04 18:41:48 +0100) [x] Correction couleur du parcours [x] Lien vers les contrôles depuis le parcours
+* 22693dd - (il y a 4 jours) (2016-01-04 17:48:13 +0100) [x] Rectification des mentions jurys + ADM => Passage semestre (admis) + ADJ => Passage de semestre (admis pas jury) + ATT => Passage de semestre (si rang impair) + NAR/DEM/AJ => Pas pris
+* c816d7a - (il y a 4 jours) (2016-01-04 17:09:07 +0100) + Explicitation
+* a585b3d - (il y a 4 jours) (2016-01-04 17:05:15 +0100) [x] Affichage explicite (code couleur) des semestre / UEs / Modules
+* acc3a00 - (il y a 4 jours) (2016-01-04 15:53:28 +0100) Coloration des moyennes
+* 9271b5f - (il y a 4 jours) (2016-01-04 12:32:20 +0100) [x] Affiches les moyennes + par modules + prendre les max(id_notes) + ignorer là ou aucune note pour avoir un aperçu du niveau + par UE + prendre les max(id_notes) + ignorer là ou aucune note pour avoir un aperçu du niveau - par semestres + prendre les max(id_notes) + ignorer là ou aucune note pour avoir un aperçu du niveau
+* 5b10816 - (il y a 5 jours) (2016-01-03 22:07:50 +0100) [x] Import de notes pour un contrôle (admin)
+* 17dd409 - (il y a 5 jours) (2016-01-03 22:02:46 +0100) [x] Import de notes pour un contrôle + @excelManager + enregistrement + lecture/parsage + intégration
+* 5b6a537 - (il y a 5 jours) (2016-01-03 20:57:59 +0100) Nettoyage index
+* e1a4a75 - (il y a 5 jours) (2016-01-03 12:51:35 +0100) [x] Mettre à jour les pages d'accueil
+* cc5e1f8 - (il y a 5 jours) (2016-01-03 12:26:45 +0100) Mise en valeur du semestre courant student_case@svg
+* c2ef609 - (il y a 5 jours) (2016-01-03 12:12:50 +0100) [x] Afficher les mentions jury dans le dossier étudiant
+* c087f7c - (il y a 5 jours) (2016-01-03 11:58:11 +0100) [x] Corrections delNumeric(*, true);
+* 4c3d629 - (il y a 5 jours) (2016-01-03 11:55:20 +0100) [x] Import appréciations jury + sous-caté sur @career + @excelManager + export (si déjà donné, "ADM/ADJ/...", sinon "[A compléter]") + import pour un semestre + déploiement de l'application de la mention jury
+* be13fec - (il y a 5 jours) (2016-01-03 11:31:26 +0100) excelManager@import_jury
+* d7b4c4c - (il y a 5 jours) (2016-01-03 01:04:28 +0100) Correction erreur delNumeric();
+* 28623c1 - (il y a 5 jours) (2016-01-03 00:59:18 +0100) [x] Ajout de la colonne "mention" à la table "appartenance" dans la BDD qui contiendra la mention jury du semestre
+* 9f1d953 - (il y a 6 jours) (2016-01-02 20:59:31 +0100) delNumeric pour tous les fetch() de 1-deep + début de passage de semestres
+* d8fbc6e - (il y a 6 jours) (2016-01-02 20:15:06 +0100) [x] Export jury + format + excelManager + génération + téléchargement
+* 7863168 - (il y a 6 jours) (2016-01-02 18:43:33 +0100) [x] Export groupes + format + excelManager + génération + téléchargement
+* 9e9356d - (il y a 6 jours) (2016-01-02 17:16:14 +0100) Modifications et rectifications mineures + création page career@jury (export/import) + affinage career@jury
+* e25aa52 - (il y a 6 jours) (2016-01-02 15:55:25 +0100) [x] Clonage d'un MCC + On récupère la dernière année ayant des MCC (au moins un UE) + On clone les semestres + On clone les mcc_ue + On clone les mcc_modules + On duplique les contrôles
+* 5a2d135 - (il y a 6 jours) (2016-01-02 14:27:04 +0100) [x] Cacher le déplacement d'étudiants pour le référent [x] Cacher "publier/cacher" les contrôles pour le référent
+* a4c38bc - (il y a 6 jours) (2016-01-02 14:21:31 +0100) [x] Corrections (étape 1) + connection étudiant, infos ==== RANG+ANNEE+FORMATION => SEMESTRE_ID ==== + groupes étudiant, erreur semestre + groupe étudiant, erreur semestre + notes étudiant + modules étudiant + suppression "extends DBAccess" dans les repos + publication par défaut lors de l'import de contrôles (non visible) + Affichage des groupes pour un contrôle (enseignant) + Affichage des étudiants d'un groupe pour un contrôle (enseignant) + Affichage des groupes pour un contrôle (master/admin) + Affichage des étudiants d'un groupe pour un contrôle (master/admin)
+* 7747395 - (il y a 9 jours) (2015-12-30 17:39:24 +0100) Correction erreur mineure lors de la selection auto de la première "formation" sur la page "admin@tous_les_groupes" alors qu'aucune formation n'existe
+* 850cca7 - (il y a 9 jours) (2015-12-30 17:21:10 +0100) Déploiement du checkParam() (principe de vérification des champs centralisé) terminé (~80)
+* 6f35306 - (il y a 9 jours) (2015-12-30 17:04:02 +0100) Correction de la connection BDD générique
+|\
+| * cdd9407 - (il y a 4 semaines) (2015-12-08 10:57:35 +0100) [AJOUT] Profil
+* | 594615f - (il y a 9 jours) (2015-12-30 17:02:17 +0100) Implémentation des conditions du checkParam(); et déploiement débuté
+|/
+* 61a2daa - (il y a 5 semaines) (2015-12-06 20:16:44 +0100) Correction finale du loader
+* 0f7b4a8 - (il y a 5 semaines) (2015-12-06 20:08:28 +0100) Ajout de l'autoloader (intégration complèteà
+* e079849 - (il y a 5 semaines) (2015-12-06 19:42:02 +0100) Intégration de l'autoloader
+* 7a4c2e7 - (il y a 5 semaines) (2015-12-06 15:05:22 +0100) Déplacement d'étudiants multiple + affichage des noms de groupes par taille puis alpha
+* 4e24047 - (il y a 5 semaines) (2015-12-05 19:45:06 +0100) merge remote
+|\
+| * 3d2eb51 - (il y a 5 semaines) (2015-12-02 22:01:00 +0100) Modification de shortcut-manager (pas besoin de tout retaper dans l'ordre) + correction JS "undefined creerSemestre"
+* | c96b605 - (il y a 5 semaines) (2015-12-05 19:43:44 +0100) Modification de shortcut-manager (pas besoin de tout retaper dans l'ordre) + correction JS "undefined creerSemestre"
+|/
+* b24b818 - (il y a 5 semaines) (2015-12-02 20:12:34 +0100) Ajout des raccourcis clavier et suppression de données inutiles (loader+php vars dans )
+* f6d40ff - (il y a 5 semaines) (2015-12-01 20:00:37 +0100) [x] Les contrôles n’ayant pas encore de note doivent afficher "pas encore de note" [x] Enlever le nom du module à l’affichage de chaque contrôle car il est déjà affiché au dessus. [x] Afficher le poids des modules mais aussi des UEs
+* f62e14c - (il y a 5 semaines) (2015-12-01 19:45:00 +0100) Affichage de l'année courante et màj dynamique
+* 39e06d2 - (il y a 5 semaines) (2015-12-01 19:08:42 +0100) Modification majeure de la BDD
+* 72507bb - (il y a 5 semaines) (2015-12-01 19:07:45 +0100) ] Modifier modèle: note visible par étudiant quand activée (checkbox de l'admin) + modification par l'admin + visibilité au niveau de l'étudiant
+* 1fa1c55 - (il y a 5 semaines) (2015-12-01 19:01:05 +0100) Modification design (bouton del) + Modification du modèle(BDD entre autres) l'admin peut choisir le caractère "publié" d'un contrôle ce qui permet de définir si les étudiants peuvent voir leur note pour ce contrôle (modification implémentée, visu étu à faire)
+* a8369ef - (il y a 5 semaines) (2015-12-01 18:17:55 +0100) Mise à jour de la BDD
+* e89e992 - (il y a 5 semaines) (2015-12-01 18:15:44 +0100) [x] Déployer et remodeler: enseignement de groupe & mcc_module + définir les requêtes à modifier + définir les actions qui auront de conséquences + modifier les requêtes + modifier l'interface + modifier le déploiement
+* 7b98cb3 - (il y a 5 semaines) (2015-12-01 16:46:41 +0100) Correction: plus de duplicata sur la page mes_groupes/tous_les_groupes au niveau de l'affinage de semestres
+* 83fd11c - (il y a 6 semaines) (2015-11-30 21:46:40 +0100) Déploiement de l'intégration/modification des enseignements + déploiement à l'interface de modification des rôles, reste affiche à déployer et modifier. [x] Modifier modèle: prof corrige un GROUPE pour un module + modifier BDD + afficher les groupes pour le changement de rôles + intégrer la modification au changement de rôles
+* 75265c8 - (il y a 6 semaines) (2015-11-30 19:58:06 +0100) Mettre en couleur les notes modifiées
+* 8b6e898 - (il y a 6 semaines) (2015-11-30 19:46:10 +0100) Possibilité de changer l'année pour référent / admin + page pour changer l'année de visualisation + dans toute saisie/modification ajouter une condition (annee courante = année session ?)
+* e248a57 - (il y a 6 semaines) (2015-11-30 19:41:31 +0100) Importation des MCC/inscrits en fonction de getCurrentYear() et non $_SESSION['annee']
+* 5cc28c4 - (il y a 6 semaines) (2015-11-30 19:34:35 +0100) Utilisation de l'id groupe pour l'affichage de notes par groupe
+* 7be48a9 - (il y a 6 semaines) (2015-11-30 19:29:12 +0100) Correction de l'affichage de groupes avec un nom avec des espaces => utiliser des ID à faire
+* d6a7b78 - (il y a 6 semaines) (2015-11-30 19:17:39 +0100) Possibilité pour 'master'/'admin' de changer l'année de visualisation reste à bloquer la modification des années précédentes
+* 8df5020 - (il y a 6 semaines) (2015-11-30 17:32:17 +0100) Fixation du #MENU
+* 4ed2b35 - (il y a 6 semaines) (2015-11-30 17:25:33 +0100) Correction des moyennes par modules, prise en compte des coefficients des contrôles reste à déployer le reste des moyennes à travers le MCC
+* 1b2cba7 - (il y a 6 semaines) (2015-11-30 10:23:34 +0100) Affichage des moyennes des modules
+* 87def55 - (il y a 6 semaines) (2015-11-29 23:29:54 +0100) Première mise en beauté + évènement sur pour le dossier étudiant + déploiement et implémentation complète de toutes les informations qui découlent du parcours semestres>ues>modules>controles(+note)
+* 23877eb - (il y a 6 semaines) (2015-11-29 22:18:50 +0100) Correction du bug de phpexcel@import_mcc importe maintenant les UE/modules fusionnés
+* 07550c0 - (il y a 6 semaines) (2015-11-29 18:26:46 +0100) Première mise en page et ébauche du dossier étudiant ainsi qu'une correction d'affinage due au dernier debug
+* 4a79df4 - (il y a 6 semaines) (2015-11-29 18:07:16 +0100) Correction de la correction de la correction (qui s'est mal corrigée)
+* f868895 - (il y a 6 semaines) (2015-11-29 18:01:20 +0100) Conflits de correction d'affinage
+|\
+| * 12c384f - (il y a 6 semaines) (2015-11-29 17:46:50 +0100) Affinage pour les pages import/export corrigé mais fonction générique à développer
+* | 057f5d3 - (il y a 6 semaines) (2015-11-29 17:59:31 +0100) Affinage pour les pages import/export corrigé mais fonction générique à développer
+|/
+* 275d884 - (il y a 6 semaines) (2015-11-29 17:00:02 +0100) Correction du pb de droit illisible (virgule permanente)
+* 2cdd1e0 - (il y a 6 semaines) (2015-11-29 16:49:59 +0100) Générateur de svg pour le parcours
+* 0652a00 - (il y a 6 semaines) (2015-11-29 12:44:03 +0100) Rectification des liens de modèles de documents
+* d475071 - (il y a 6 semaines) (2015-11-29 12:41:36 +0100) Merge branch 'dev' of https://github.com/xdrm-brackets/SID into dev
+|\
+| * 8892c35 - (il y a 6 semaines) (2015-11-29 11:10:14 +0100) phpExcel ajout -> import_Jury
+* | d2824c2 - (il y a 6 semaines) (2015-11-29 12:41:22 +0100) Rectification droits 'admin' pour saisie notes
+|/
+* 4117da2 - (il y a 6 semaines) (2015-11-27 08:50:04 +0100) Merge commit
+|\
+| * 62fc7f3 - (il y a 6 semaines) (2015-11-27 08:45:59 +0100) Correction bug delNumeric pour controleUID
+* | 6c3f2cd - (il y a 6 semaines) (2015-11-27 08:48:13 +0100) Correction erreur php DataBase@delNumeric sur controleUID
+|/
+* d578048 - (il y a 6 semaines) (2015-11-27 08:17:14 +0100) Correction @home erreur de javascript
+* a294043 - (il y a 6 semaines) (2015-11-26 21:58:57 +0100) Correction erreur phpExcel aurel
+* 0ae7099 - (il y a 6 semaines) (2015-11-26 21:54:01 +0100) Correction des droits pour définir l'action des liens vers le dossier étu
+* 552f741 - (il y a 6 semaines) (2015-11-26 21:28:01 +0100) Correction conflit de saisie de notes entre teacher&admin
+* cf8e58b - (il y a 6 semaines) (2015-11-26 20:37:41 +0100) Correction affiche des contrôles teacher/(admin/master)
+* 0172d6b - (il y a 6 semaines) (2015-11-26 19:06:27 +0100) Page admin@touscontroles pour 'admin' et 'master'
+* c89c8dd - (il y a 6 semaines) (2015-11-26 18:17:05 +0100) Affichage de tous les contrôles pour "admin" / "master" reste à empêcher la saisie par master
+* feac2ae - (il y a 6 semaines) (2015-11-26 17:56:56 +0100) Tutoriel terminé pour master
+* af0c886 - (il y a 6 semaines) (2015-11-26 16:43:04 +0100) Merge branch 'dev' of https://github.com/xdrm-brackets/SID into dev
+|\
+| * 26c9a83 - (il y a 6 semaines) (2015-11-26 16:22:44 +0100) phpExcel ajout -> export_notes
+| |\
+| * | 38b7eac - (il y a 6 semaines) (2015-11-26 16:21:17 +0100) phpExcel ajout -> export_notes
+* | | fcb2361 - (il y a 6 semaines) (2015-11-26 16:40:04 +0100) Implémentation et intégration du rôle master
+| |/
+|/|
+* | 6130bb8 - (il y a 6 semaines) (2015-11-26 16:15:51 +0100) Intégration complète du tutoriel et de la redirection associée ainsi que le css
+|/
+* c992157 - (il y a 6 semaines) (2015-11-26 15:01:05 +0100) Page admin@settings/rôles, affinage fonctionnel + affichage de la formation associée à l'enseignement + propose les modules en fonction de l'affinage
+* e43a564 - (il y a 6 semaines) (2015-11-26 14:50:25 +0100) Correction admin@modules/import, de semestre de l'import marchent
+* 40a22a9 - (il y a 6 semaines) (2015-11-26 14:44:04 +0100) Correction chevauchement affinage .partlist
+* c10b29e - (il y a 6 semaines) (2015-11-26 14:39:01 +0100) Correction de l'année d'importation pour modules@import
+* 15959dd - (il y a 6 semaines) (2015-11-26 14:38:38 +0100) Correction de l'affichage des modules possibles pour admin@rôles
+* 5034479 - (il y a 6 semaines) (2015-11-26 14:38:04 +0100) Correction design (nom catégories)
+* ccced89 - (il y a 6 semaines) (2015-11-26 00:26:50 +0100) Correction terminée de compatibilité (webkit) design des
+* 853f2ec - (il y a 6 semaines) (2015-11-26 00:18:50 +0100) Correction de la liste de proposition de changement de groupe (maintenant exhaustive) + correction de relation dans requête d'affichage des manager/repo@membres
+* 917fdec - (il y a 6 semaines) (2015-11-25 18:22:32 +0100) Merge branch 'dev' of https://github.com/xdrm-brackets/SID into dev
+|\
+| * 58255ea - (il y a 6 semaines) (2015-11-25 18:17:34 +0100) Correction et fin de l'implémentation|déploiement|intégration de la liste d'étudiants
+* | 75560f0 - (il y a 6 semaines) (2015-11-25 18:22:05 +0100) Correction et fin de l'implémentation|déploiement|intégration de la liste d'étudiants + Correction d'affinage des pages @groupes et @modules ainsi que l'affinage au niveau jsevent pour l'export (affinage par formation)
+|/
+* 09c2190 - (il y a 6 semaines) (2015-11-25 15:13:27 +0100) Déploiement import inscrits terminé
+* b58aa24 - (il y a 6 semaines) (2015-11-25 00:23:47 +0100) Comment test.php + page/groups.php ajout du champ 'rang' du semestre pour l'import de liste d'élèves
+* e86bd94 - (il y a 6 semaines) (2015-11-25 00:08:37 +0100) Correction de déplacement d'élève non pas avec nom du semestre mais bien avec l'id_semestre
+* b7ca3d0 - (il y a 6 semaines) (2015-11-25 00:04:02 +0100) Intégration d'une liste d'élèves opérationnelle
+* bad5697 - (il y a 6 semaines) (2015-11-24 21:27:53 +0100) Finition et arrangement de phpExcel@import_userlist_group
+* fd595c8 - (il y a 6 semaines) (2015-11-24 21:06:43 +0100) Merge branch 'dev' of https://github.com/xdrm-brackets/SID into dev
+|\
+| * 7b640bc - (il y a 6 semaines) (2015-11-24 19:00:28 +0100) Import user_list -> à affiner..
+* | 8ef0dc5 - (il y a 6 semaines) (2015-11-24 21:06:20 +0100) Test d'import liste élèves
+|/
+* af815d1 - (il y a 6 semaines) (2015-11-24 18:41:03 +0100) Ajout des modèles mcc/inscrits
+* 2085eb4 - (il y a 6 semaines) (2015-11-24 18:35:39 +0100) Création de requête pour effacer bdd + suppression du fichier "inconnu" / "inutile" + application de la police globales aux et
+* 6c1d288 - (il y a 6 semaines) (2015-11-24 10:37:02 +0100) Gestion des rôles implémentée et fonctionnelle
+* 1638e9d - (il y a 6 semaines) (2015-11-24 09:59:17 +0100) API: admin@updateRole opérationnel, reste à déployer jusqu'à l'iface
+* 1963262 - (il y a 7 semaines) (2015-11-23 23:37:23 +0100) Etape 1 : déploiement de l'ajout d'un module en tant que correcteur
+* 57357fd - (il y a 7 semaines) (2015-11-23 21:56:53 +0100) Correction padding on pour webkit
+* f8accc0 - (il y a 7 semaines) (2015-11-23 21:02:27 +0100) Suppression mauvais rep
+* 5aa3aab - (il y a 7 semaines) (2015-11-23 20:56:00 +0100) Interface admin@rôles quasi-temrinale
+* 335bfaa - (il y a 7 semaines) (2015-11-23 16:40:54 +0100) Visualisation modules en tant que correcteur : admin@settings/rôles
+* 17b118f - (il y a 7 semaines) (2015-11-23 16:21:03 +0100) Pour la visu/modification des rôles, on récupère les modules/par ue
+* 551916d - (il y a 7 semaines) (2015-11-22 19:17:04 +0100) Création du loader débutée
+* 77ab852 - (il y a 7 semaines) (2015-11-22 17:26:13 +0100) API silencieux
+* a1641fc - (il y a 7 semaines) (2015-11-22 17:24:10 +0100) Merge travail aurel
+|\
+| * b592e21 - (il y a 7 semaines) (2015-11-22 17:03:44 +0100) phpExcel ajout -> import_notes
+* | 7fdaa31 - (il y a 7 semaines) (2015-11-22 17:23:01 +0100) [OPT] Saisie multiple optimisé
+|/
+* c760d32 - (il y a 7 semaines) (2015-11-22 16:34:07 +0100) Modification empty.sql + import_multiple etape 1
+* 1272d1a - (il y a 7 semaines) (2015-11-22 15:00:18 +0100) Intégration+déploiement de la création de semestre/formation
+* 9a013ef - (il y a 7 semaines) (2015-11-22 12:02:26 +0100) Etape 1 : admin@création_semestre
+* 4744cb8 - (il y a 7 semaines) (2015-11-22 11:27:48 +0100) Correction affinage admin@page/modules.php
+* bb0088e - (il y a 7 semaines) (2015-11-22 11:16:03 +0100) Import MCC fonctionnel et opé
+* 12128eb - (il y a 7 semaines) (2015-11-22 11:15:11 +0100) Merge branch 'dev' of https://github.com/xdrm-brackets/SID into dev
+|\
+| * 5982830 - (il y a 7 semaines) (2015-11-22 08:16:27 +0100) ajout gestionLog.php -> Ecriture des log dans sys.log
+| * 4cb6362 - (il y a 7 semaines) (2015-11-22 08:15:17 +0100) ajout fichier sys.log -> sauvegarde des log
+| * 48399d1 - (il y a 7 semaines) (2015-11-22 07:38:17 +0100) move notifications() -> notifications_switch_lvl1()
+| * 84dc9ea - (il y a 7 semaines) (2015-11-22 07:36:22 +0100) uncomment notifications.php
+* | 15dd58c - (il y a 7 semaines) (2015-11-22 11:14:57 +0100) Import MCC opérationnel et déployé
+* | 5e0b63e - (il y a 7 semaines) (2015-11-22 10:54:05 +0100) Correction modules => prise en compte du nombre de semestres
+|/
+* 31e73e7 - (il y a 7 semaines) (2015-11-21 18:09:40 +0100) Merge branch 'dev' of https://github.com/xdrm-brackets/SID into dev
+|\
+| * 170fe39 - (il y a 7 semaines) (2015-11-21 18:07:08 +0100) No comment..
+| * b757573 - (il y a 7 semaines) (2015-11-21 18:03:32 +0100) Erreur lié au merge
+| * 7492adc - (il y a 7 semaines) (2015-11-21 17:02:36 +0100) Merge branch 'dev' of https://github.com/xdrm-brackets/SID into dev
+| |\
+| * | 5fe89d3 - (il y a 7 semaines) (2015-11-21 17:02:10 +0100) Gestion des notifications
+* | | f9f79e1 - (il y a 7 semaines) (2015-11-21 18:09:03 +0100) Import du MCC en cours (phase de déploiement)
+| |/
+|/|
+* | 6cb50fd - (il y a 7 semaines) (2015-11-21 16:15:15 +0100) Merge branch 'dev' of https://github.com/xdrm-brackets/SID into dev
+|\ \
+| |/
+| * 1de3daa - (il y a 7 semaines) (2015-11-21 14:49:23 +0100) phpExcel ajout -> export_jury
+| * 3d8e42d - (il y a 7 semaines) (2015-11-21 14:36:19 +0100) phpExcel ajout -> import_jury
+* | 8fc2f16 - (il y a 7 semaines) (2015-11-21 16:15:01 +0100) Correction lien retour pour contrôle
+|/
+* 76b4afa - (il y a 7 semaines) (2015-11-21 13:28:13 +0100) Gestion de l'encodage utf-8 de la BDD
+* 7fdb83f - (il y a 7 semaines) (2015-11-21 13:13:40 +0100) Ajout du loader
+* 651e3cf - (il y a 7 semaines) (2015-11-21 13:10:08 +0100) Correction "base" dans la création de contrôle par import de MCC
+* 2eb0449 - (il y a 7 semaines) (2015-11-21 13:01:52 +0100) Merge branch 'dev' of https://github.com/xdrm-brackets/SID into dev
+|\
+| * 739c762 - (il y a 7 semaines) (2015-11-21 12:28:08 +0100) phpExcel mise en forme du code / commentaires
+* | 53f6db1 - (il y a 7 semaines) (2015-11-21 13:01:12 +0100) Interface import/export MCC + création de semestre
+|/
+* facc912 - (il y a 7 semaines) (2015-11-21 11:42:03 +0100) Merge branch 'dev' of https://github.com/xdrm-brackets/SID into dev
+|\
+| * 16838ee - (il y a 7 semaines) (2015-11-21 11:37:29 +0100) néant
+| * 70e0d96 - (il y a 7 semaines) (2015-11-21 11:34:44 +0100) phpExcel export_notes - > sauvegarde du fichier / Ecriture de la boucle à faire
+* | 5b3efd4 - (il y a 7 semaines) (2015-11-21 11:41:32 +0100) Interface graphique étape1 > import/export des MCC
+|/
+* 47754ac - (il y a 7 semaines) (2015-11-20 22:07:02 +0100) Import MCC intégration des contrôles -> tout fonctionnel
+* 6b05ff4 - (il y a 7 semaines) (2015-11-20 21:57:00 +0100) Correction erreurs de syntaxe auré
+* c43e08b - (il y a 7 semaines) (2015-11-20 20:55:12 +0100) phpExcel algo -> export_notes
+* 5b9203d - (il y a 7 semaines) (2015-11-20 17:30:50 +0100) Merge branch 'dev' of https://github.com/xdrm-brackets/SID into dev
+|\
+| * b744270 - (il y a 7 semaines) (2015-11-20 17:17:05 +0100) Modification majeure BDD (voir empty.sql)
+* | c855d0c - (il y a 7 semaines) (2015-11-20 17:29:52 +0100) phpExcel ajout -> import_notes
+|/
+* 16e2d62 - (il y a 7 semaines) (2015-11-20 17:14:36 +0100) Merge branch 'dev' of https://github.com/xdrm-brackets/SID into dev
+|\
+| * 8779716 - (il y a 7 semaines) (2015-11-20 16:48:08 +0100) phpExcel ajout -> import_userlist_group
+* | 3844fc4 - (il y a 7 semaines) (2015-11-20 17:13:47 +0100) Intégration UE et modules fonctionnelle, reste les contrôles ...
+|/
+* 746197e - (il y a 7 semaines) (2015-11-20 13:39:06 +0100) Modification & optimisation format MCC
+* 47bba6c - (il y a 7 semaines) (2015-11-20 13:21:40 +0100) Import de MCC valide renvoie un objet, il reste à déployer les données
+* 6d522a2 - (il y a 7 semaines) (2015-11-20 10:36:10 +0100) Espacements admin@import_export
+* afdb0ff - (il y a 7 semaines) (2015-11-20 10:33:28 +0100) Modifications mineures
+* c663e62 - (il y a 7 semaines) (2015-11-20 10:32:07 +0100) Page de modification des rôles + checkbox hack
+* c7f2a01 - (il y a 7 semaines) (2015-11-20 10:14:22 +0100) Modification interface page/groups@import_export
+* 31b5fd6 - (il y a 7 semaines) (2015-11-20 09:58:40 +0100) admin@role retourne maintenant uniquement les non-élèves
+* dd3d284 - (il y a 7 semaines) (2015-11-20 09:54:15 +0100) Déploiement des données de la liste des admin@rôles afin de modifier les rôles des enseignants (correcteurs, etc)
+* 9b4dc10 - (il y a 7 semaines) (2015-11-19 23:49:51 +0100) Correction du nom de la catégorie import/export de liste d'élèves
+* 6e5e07b - (il y a 7 semaines) (2015-11-19 23:47:58 +0100) Simplification d'affichage de etudiant@mon_groupe en utilisant une requête unique
+* 7228ae4 - (il y a 7 semaines) (2015-11-19 23:32:54 +0100) Prise en compte de la formation pour un étudiant afin de ne pas confondre les semestres (de formations différentes)
+* 38c09f2 - (il y a 7 semaines) (2015-11-19 22:36:43 +0100) Merge branch 'dev' of https://github.com/xdrm-brackets/SID into dev
+|\
+| * 418ce6c - (il y a 7 semaines) (2015-11-19 18:28:40 +0100) Ajout phpExcel
+* | ab99784 - (il y a 7 semaines) (2015-11-19 22:35:29 +0100) Modification (explicité par "v")
+|/
+* f37d073 - (il y a 7 semaines) (2015-11-19 14:42:38 +0100) Création interface graphique importation liste élèves
+* a467ba7 - (il y a 7 semaines) (2015-11-19 14:16:27 +0100) Correction erreur de selection semestreOpt
+* 9b81ac2 - (il y a 7 semaines) (2015-11-19 14:08:40 +0100) Ajout de l'interface exportation groupes@excel
+* 804cfd8 - (il y a 7 semaines) (2015-11-19 11:24:17 +0100) Prise en compte du sexe pour l'image du profil
+* 9613b75 - (il y a 7 semaines) (2015-11-19 08:58:15 +0100) Correction accès => enseignant ne peut pas visualiser les contrôles auquels il n'est pas correcteur
+* 0cc2d1a - (il y a 7 semaines) (2015-11-18 10:25:33 +0100) Modification de la vérification (RegExp) de explodeURL pour prendre en compte les affinages
+* b3f466a - (il y a 7 semaines) (2015-11-18 10:05:15 +0100) Correction de la saisie de notes qui était corrompue à cause de l'unification des strings des requêtes SQL
+* f022265 - (il y a 7 semaines) (2015-11-18 09:48:08 +0100) Màj checkParam pour aurélien
+* ad091e8 - (il y a 7 semaines) (2015-11-18 09:38:02 +0100) Merge branch 'dev' of https://github.com/xdrm-brackets/SID into dev
+|\
+| * 5182803 - (il y a 7 semaines) (2015-11-17 19:02:28 +0100) CheckParam() avec paramètres variables
+| * c0f5dfa - (il y a 7 semaines) (2015-11-17 10:50:11 +0100) Merge branch 'dev' of https://github.com/xdrm-brackets/SID into dev
+| |\
+| * | e32f903 - (il y a 7 semaines) (2015-11-17 10:49:28 +0100) Nouveau modèle MCC prêt à être push
+| * | ff7758b - (il y a 8 semaines) (2015-11-14 14:42:30 +0100) Nouveau modèle MCC
+| * | c0acb83 - (il y a 8 semaines) (2015-11-13 14:55:48 +0100) Ajout du nouveau modele Excel dans le src. Modele non fini.
+* | | a44027b - (il y a 7 semaines) (2015-11-18 09:37:36 +0100) Ajout des input pour ajouter un module à un UE d'un Semestre
+* | | 4151f80 - (il y a 7 semaines) (2015-11-17 21:26:08 +0100) Correction manager/groupRepo unification des String(s) des requêtes SQL
+* | | 6546e34 - (il y a 7 semaines) (2015-11-17 13:00:50 +0100) Suppression (") dans requêtes des repos
+| |/
+|/|
+* | d96ace8 - (il y a 7 semaines) (2015-11-17 09:07:53 +0100) Correction déplacement d'élèves sur admin@tous_les_groupes
+* | df1f23a - (il y a 7 semaines) (2015-11-17 08:55:33 +0100) Correction erreur commit
+* | 26fe68d - (il y a 7 semaines) (2015-11-17 08:46:39 +0100) Suppression des paramètres optionnels (évitent de tout charger + les données affinées) donc maintenant on charge tout, mais une fois
+* | 6efa758 - (il y a 7 semaines) (2015-11-17 08:35:21 +0100) Affinage par formation pour enseignant@mes_groupes + admin@tous_les_groupes + utilisation d'UIDs
+* | f0643a8 - (il y a 8 semaines) (2015-11-16 21:48:11 +0100) Suppression de la possibilité de création de @semestre/@UE à partir des pages : enseignant@contrôles + enseignant@modules
+* | b84a064 - (il y a 8 semaines) (2015-11-16 21:44:53 +0100) Màj BDD ajout de la table FORMATION + refactor de page/career + page/modules en utilisant maintenant les identifiants uniques de BDD (pour formations, semestre, UE) afin de permettre des UEs de même nom (à travers différentes formations)
+* | d6d10b9 - (il y a 8 semaines) (2015-11-16 19:07:39 +0100)