Version19.125.2

This commit is contained in:
Antonio Cañas Vargas 2020-02-17 12:33:21 +01:00
parent fcca2648bd
commit 2a461286e1
3 changed files with 17 additions and 17 deletions

View File

@ -1282,7 +1282,6 @@ CREATE TABLE IF NOT EXISTS tst_config (
Max INT NOT NULL, Max INT NOT NULL,
MinTimeNxtTstPerQst INT NOT NULL DEFAULT 0, MinTimeNxtTstPerQst INT NOT NULL DEFAULT 0,
Visibility INT NOT NULL DEFAULT 0x1f, Visibility INT NOT NULL DEFAULT 0x1f,
Feedback ENUM('nothing','total_result','each_result','each_good_bad','full_feedback') NOT NULL,
UNIQUE INDEX(CrsCod)); UNIQUE INDEX(CrsCod));
-- --
-- Table tst_exam_questions: stores the questions and answers in test exams made by users -- Table tst_exam_questions: stores the questions and answers in test exams made by users

View File

@ -497,7 +497,7 @@ enscript -2 --landscape --color --file-align=2 --highlight --line-numbers -o - *
En OpenSWAD: En OpenSWAD:
ps2pdf source.ps destination.pdf ps2pdf source.ps destination.pdf
*/ */
#define Log_PLATFORM_VERSION "SWAD 19.125.1 (2020-02-17)" #define Log_PLATFORM_VERSION "SWAD 19.125.2 (2020-02-17)"
#define CSS_FILE "swad19.118.css" #define CSS_FILE "swad19.118.css"
#define JS_FILE "swad19.91.1.js" #define JS_FILE "swad19.91.1.js"
/* /*
@ -505,10 +505,13 @@ ps2pdf source.ps destination.pdf
// TODO: Impedir la creación y edición de proyectos si no son editables. // TODO: Impedir la creación y edición de proyectos si no son editables.
// TODO: No se puede entrar con DNI '1' suponiendo que no tenga password ¿por qué? // TODO: No se puede entrar con DNI '1' suponiendo que no tenga password ¿por qué?
// TODO: En la lista de conectados central, poner el logo de la institución a la que pertenece el usuario // TODO: En la lista de conectados central, poner el logo de la institución a la que pertenece el usuario
// TODO: Remove Feedback field from tst_config database table
// TODO: Add visibility to API function getTestConfig // TODO: Add visibility to API function getTestConfig
// TODO: Add visibility to games // TODO: Add visibility to games
Version 19.125.2: Feb 17, 2020 Removed Feedback field from tst_config database table. (278850 lines)
1 change necessary in database:
ALTER TABLE tst_config DROP COLUMN Feedback;
Version 19.125.1: Feb 17, 2020 Code refactoring in test. (278851 lines) Version 19.125.1: Feb 17, 2020 Code refactoring in test. (278851 lines)
Version 19.125: Feb 17, 2020 Removed feedback from test config form. (278823 lines) Version 19.125: Feb 17, 2020 Removed feedback from test config form. (278823 lines)
Version 19.124.1: Feb 17, 2020 Fixed bug reported by Javier Fernández Baldomero. Version 19.124.1: Feb 17, 2020 Fixed bug reported by Javier Fernández Baldomero.

View File

@ -2704,19 +2704,18 @@ mysql> DESCRIBE tst_answers;
/***** Table tst_config *****/ /***** Table tst_config *****/
/* /*
mysql> DESCRIBE tst_config; mysql> DESCRIBE tst_config;
+---------------------+------------------------------------------------------------------------------+------+-----+---------+-------+ +---------------------+-------------------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra | | Field | Type | Null | Key | Default | Extra |
+---------------------+------------------------------------------------------------------------------+------+-----+---------+-------+ +---------------------+-------------------------+------+-----+---------+-------+
| CrsCod | int(11) | NO | PRI | -1 | | | CrsCod | int(11) | NO | PRI | -1 | |
| Pluggable | enum('unknown','N','Y') | NO | | unknown | | | Pluggable | enum('unknown','N','Y') | NO | | unknown | |
| Min | int(11) | NO | | NULL | | | Min | int(11) | NO | | NULL | |
| Def | int(11) | NO | | NULL | | | Def | int(11) | NO | | NULL | |
| Max | int(11) | NO | | NULL | | | Max | int(11) | NO | | NULL | |
| MinTimeNxtTstPerQst | int(11) | NO | | 0 | | | MinTimeNxtTstPerQst | int(11) | NO | | 0 | |
| Visibility | int(11) | NO | | 31 | | | Visibility | int(11) | NO | | 31 | |
| Feedback | enum('nothing','total_result','each_result','each_good_bad','full_feedback') | NO | | NULL | | +---------------------+-------------------------+------+-----+---------+-------+
+---------------------+------------------------------------------------------------------------------+------+-----+---------+-------+ 7 rows in set (0.00 sec)
8 rows in set (0.00 sec)
*/ */
DB_CreateTable ("CREATE TABLE IF NOT EXISTS tst_config (" DB_CreateTable ("CREATE TABLE IF NOT EXISTS tst_config ("
"CrsCod INT NOT NULL DEFAULT -1," "CrsCod INT NOT NULL DEFAULT -1,"
@ -2726,7 +2725,6 @@ mysql> DESCRIBE tst_config;
"Max INT NOT NULL," "Max INT NOT NULL,"
"MinTimeNxtTstPerQst INT NOT NULL DEFAULT 0," "MinTimeNxtTstPerQst INT NOT NULL DEFAULT 0,"
"Visibility INT NOT NULL DEFAULT 0x1f," "Visibility INT NOT NULL DEFAULT 0x1f,"
"Feedback ENUM('nothing','total_result','each_result','each_good_bad','full_feedback') NOT NULL,"
"UNIQUE INDEX(CrsCod))"); "UNIQUE INDEX(CrsCod))");
/***** Table tst_exam_questions *****/ /***** Table tst_exam_questions *****/