Version19.134.2

This commit is contained in:
Antonio Cañas Vargas 2020-02-26 19:59:56 +01:00
parent 6b437f020d
commit e0e6ff7328
2 changed files with 12 additions and 13 deletions

View File

@ -497,7 +497,7 @@ enscript -2 --landscape --color --file-align=2 --highlight --line-numbers -o - *
En OpenSWAD:
ps2pdf source.ps destination.pdf
*/
#define Log_PLATFORM_VERSION "SWAD 19.134.1 (2020-02-26)"
#define Log_PLATFORM_VERSION "SWAD 19.134.2 (2020-02-26)"
#define CSS_FILE "swad19.133.1.css"
#define JS_FILE "swad19.91.1.js"
/*
@ -523,6 +523,7 @@ Param
// TODO: Miguel Damas: por defecto, marcar "Permitir que los profesores..." en los test (que ya esté marcado en lugar de desmarcado)
// TODO: Si el alumno ha marcado "Permitir que los profesores...", entonces pedir confirmación al pulsar el botón azul, para evitar que se envíe por error antes de tiempo
Version 19.134.2: Feb 26, 2020 Fixed bug in syllabus editor. (282021 lines)
Version 19.134.1: Feb 26, 2020 Order course program items by indexes. (282022 lines)
Version 19.134: Feb 26, 2020 Move up and down a course program item. Not finished. (281991 lines)
5 changes necessary in database:

View File

@ -601,7 +601,7 @@ static void Syl_ShowRowSyllabus (unsigned NumItem,
else
{
Frm_StartForm (Gbl.Crs.Info.Type == Inf_LECTURES ? ActDelItmSylLec :
ActDelItmSylPra);
ActDelItmSylPra);
Syl_PutParamNumItem ();
Ico_PutIconRemove ();
Frm_EndForm ();
@ -614,7 +614,7 @@ static void Syl_ShowRowSyllabus (unsigned NumItem,
if (Subtree.MovAllowed)
{
Lay_PutContextualLinkOnlyIcon (Gbl.Crs.Info.Type == Inf_LECTURES ? ActUp_IteSylLec :
ActUp_IteSylPra,
ActUp_IteSylPra,
NULL,Syl_PutParamNumItem,
"arrow-up.svg",
Str_BuildStringStr (Syl_LstItemsSyllabus.Lst[NumItem].HasChildren ? Txt_Move_up_X_and_its_subsections :
@ -632,7 +632,7 @@ static void Syl_ShowRowSyllabus (unsigned NumItem,
if (Subtree.MovAllowed)
{
Lay_PutContextualLinkOnlyIcon (Gbl.Crs.Info.Type == Inf_LECTURES ? ActDwnIteSylLec :
ActDwnIteSylPra,
ActDwnIteSylPra,
NULL,Syl_PutParamNumItem,
"arrow-down.svg",
Str_BuildStringStr (Syl_LstItemsSyllabus.Lst[NumItem].HasChildren ? Txt_Move_down_X_and_its_subsections :
@ -823,18 +823,16 @@ static void Syl_PutFormItemSyllabus (bool NewItem,unsigned NumItem,int Level,int
HTM_TD_Begin ("colspan=\"%d\" class=\"LM COLOR%u\"",
Syl_LstItemsSyllabus.NumLevels - Level + 1,Gbl.RowEvenOdd);
Frm_StartForm (NewItem ? (Gbl.Crs.Info.Type == Inf_LECTURES ? ActInsIteSylLec :
ActInsIteSylPra) :
ActInsIteSylPra) :
(Gbl.Crs.Info.Type == Inf_LECTURES ? ActModIteSylLec :
ActModIteSylPra));
ActModIteSylPra));
Gbl.Syllabus.ParamNumItem = NumItem;
Syl_PutParamNumItem ();
HTM_INPUT_TEXT ("Txt",Syl_MAX_CHARS_TEXT_ITEM,Text,false,
"size=\"60\" placeholder=\"%s\"",
Txt_Enter_a_new_item_here);
if (NewItem)
HTM_Txt (" autofocus=\"autofocus\"");
HTM_TxtF (" onchange=\"document.getElementById('%s').submit();return false;\" />",
Gbl.Form.Id);
HTM_INPUT_TEXT ("Txt",Syl_MAX_CHARS_TEXT_ITEM,Text,true,
"size=\"60\" placeholder=\"%s\"%s",
Txt_Enter_a_new_item_here,
NewItem ? " autofocus=\"autofocus\"" :
"");
Frm_EndForm ();
HTM_TD_End ();
}