Version19.230.3

This commit is contained in:
acanas 2020-05-15 21:59:27 +02:00
parent f0a74dff92
commit 571dac25f6
4 changed files with 5 additions and 1995 deletions

File diff suppressed because it is too large Load Diff

View File

@ -209,7 +209,7 @@ void HTM_TABLE_BeginWideMarginPadding (unsigned CellPadding)
if (CellPadding)
{
HTM_TxtF ("<table class=\"FRAME_TBL_WIDE_MARGIN CELLS_PAD_%u\">",
CellPadding); // CellPadding must be 0, 1, 2, 5 or 10
CellPadding); // CellPadding must be 0, 1, 2, 5, 10, 20
HTM_TABLE_NestingLevel++;
}

View File

@ -548,10 +548,11 @@ enscript -2 --landscape --color --file-align=2 --highlight --line-numbers -o - *
En OpenSWAD:
ps2pdf source.ps destination.pdf
*/
#define Log_PLATFORM_VERSION "SWAD 19.230.2 (2020-05-15)"
#define Log_PLATFORM_VERSION "SWAD 19.230.3 (2020-05-15)"
#define CSS_FILE "swad19.230.1.css"
#define JS_FILE "swad19.223.js"
#define JS_FILE "swad19.230.3.js"
/*
Version 19.230.3: May 15, 2020 Update maths in exam prints when user answers. (301037 lines)
Version 19.230.2: May 15, 2020 Changes in layout of exam prints.
Changes in edition of sets of questions. (301026 lines)
Version 19.230.1: May 15, 2020 Media in exams are shown occupying 50% instead of 100%. (300985 lines)

View File

@ -683,12 +683,10 @@ static void ExaPrn_WriteQstAndAnsToFill (struct ExaPrn_Print *Print,
/***** Title for this set *****/
HTM_TR_Begin (NULL);
HTM_TD_Begin ("colspan=\"2\" class=\"COLOR%u\"",Gbl.RowEvenOdd);
HTM_TD_Begin ("colspan=\"2\" class=\"COLOR0\"");
ExaSet_WriteSetTitle (&CurrentSet);
HTM_TD_End ();
HTM_TR_End ();
Gbl.RowEvenOdd = 1 - Gbl.RowEvenOdd;
}
/***** Begin row *****/