Version 22.107.21:May 09, 2023 Changes in edition of degrees.

This commit is contained in:
acanas 2023-05-09 09:02:34 +02:00
parent 553445fcae
commit be158b5a56
4 changed files with 102 additions and 113 deletions

View File

@ -629,10 +629,11 @@ TODO: Emilce Barrera Mesa: Podr
TODO: Emilce Barrera Mesa: Mis estudiantes presentan muchas dificultades a la hora de poner la foto porque la plataforma es muy exigente respecto al fondo de la imagen. TODO: Emilce Barrera Mesa: Mis estudiantes presentan muchas dificultades a la hora de poner la foto porque la plataforma es muy exigente respecto al fondo de la imagen.
*/ */
#define Log_PLATFORM_VERSION "SWAD 22.107.20 (2023-05-09)" #define Log_PLATFORM_VERSION "SWAD 22.107.21 (2023-05-09)"
#define CSS_FILE "swad22.107.17.css" #define CSS_FILE "swad22.107.17.css"
#define JS_FILE "swad22.49.js" #define JS_FILE "swad22.49.js"
/* /*
Version 22.107.21:May 09, 2023 Changes in edition of degrees. (337829 lines)
Version 22.107.20:May 09, 2023 Changes in edition of countries. (337842 lines) Version 22.107.20:May 09, 2023 Changes in edition of countries. (337842 lines)
Version 22.107.19:May 09, 2023 Changes in edition of institutions. (337858 lines) Version 22.107.19:May 09, 2023 Changes in edition of institutions. (337858 lines)
Version 22.107.18:May 09, 2023 Changes in edition of centers. (337871 lines) Version 22.107.18:May 09, 2023 Changes in edition of centers. (337871 lines)

View File

@ -513,113 +513,124 @@ static bool Deg_CheckIfICanEditADegree (struct Deg_Degree *Deg)
static void Deg_PutFormToCreateDegree (const struct DegTyp_DegTypes *DegTypes) static void Deg_PutFormToCreateDegree (const struct DegTyp_DegTypes *DegTypes)
{ {
extern const char *Txt_Create_degree; extern const char *Txt_Actions[ActLst_NUM_ACTIONS];
extern const char *Txt_Create;
Act_Action_t NextAction = ActUnk;
unsigned NumDegTyp; unsigned NumDegTyp;
struct DegTyp_DegreeType *DegTypInLst; struct DegTyp_DegreeType *DegTypInLst;
/***** Begin form *****/ /***** Set action depending on role *****/
if (Gbl.Usrs.Me.Role.Logged >= Rol_CTR_ADM) if (Gbl.Usrs.Me.Role.Logged >= Rol_CTR_ADM)
Frm_BeginForm (ActNewDeg); NextAction = ActNewDeg;
else if (Gbl.Usrs.Me.Role.Max >= Rol_GST) else if (Gbl.Usrs.Me.Role.Max >= Rol_GST)
Frm_BeginForm (ActReqDeg); NextAction = ActReqDeg;
else else
Err_NoPermissionExit (); Err_NoPermissionExit ();
/***** Begin box and table *****/ /***** Begin fieldset *****/
Box_BoxTableBegin (NULL,NULL, HTM_FIELDSET_Begin (NULL);
NULL,NULL, HTM_LEGEND (Txt_Actions[NextAction]);
NULL,Box_NOT_CLOSABLE,2);
/***** Write heading *****/ /***** Begin form *****/
Deg_PutHeadDegreesForEdition (); Frm_BeginForm (NextAction);
HTM_TR_Begin (NULL); /***** Begin table *****/
HTM_TABLE_BeginWidePadding (2);
/***** Column to remove degree, disabled here *****/ /***** Write heading *****/
HTM_TD_Begin ("class=\"BM\""); Deg_PutHeadDegreesForEdition ();
HTM_TD_End ();
/***** Degree code *****/ HTM_TR_Begin (NULL);
HTM_TD_Begin ("class=\"CODE\"");
HTM_TD_End ();
/***** Degree logo *****/ /***** Column to remove degree, disabled here *****/
HTM_TD_Begin ("title=\"%s\" class=\"HIE_LOGO\"",Deg_EditingDeg->FullName); HTM_TD_Begin ("class=\"BM\"");
Lgo_DrawLogo (HieLvl_DEG,-1L,"",20,NULL,true); HTM_TD_End ();
HTM_TD_End ();
/***** Degree short name *****/ /***** Degree code *****/
HTM_TD_Begin ("class=\"LM\""); HTM_TD_Begin ("class=\"CODE\"");
HTM_INPUT_TEXT ("ShortName",Cns_HIERARCHY_MAX_CHARS_SHRT_NAME,Deg_EditingDeg->ShrtName, HTM_TD_End ();
HTM_DONT_SUBMIT_ON_CHANGE,
"class=\"INPUT_SHORT_NAME INPUT_%s\""
" required=\"required\"",
The_GetSuffix ());
HTM_TD_End ();
/***** Degree full name *****/ /***** Degree logo *****/
HTM_TD_Begin ("class=\"LM\""); HTM_TD_Begin ("title=\"%s\" class=\"HIE_LOGO\"",Deg_EditingDeg->FullName);
HTM_INPUT_TEXT ("FullName",Cns_HIERARCHY_MAX_CHARS_FULL_NAME,Deg_EditingDeg->FullName, Lgo_DrawLogo (HieLvl_DEG,-1L,"",20,NULL,true);
HTM_DONT_SUBMIT_ON_CHANGE, HTM_TD_End ();
"class=\"INPUT_FULL_NAME INPUT_%s\""
" required=\"required\"",
The_GetSuffix ());
HTM_TD_End ();
/***** Degree type *****/ /***** Degree short name *****/
HTM_TD_Begin ("class=\"LM\""); HTM_TD_Begin ("class=\"LM\"");
HTM_SELECT_Begin (HTM_DONT_SUBMIT_ON_CHANGE,NULL, HTM_INPUT_TEXT ("ShortName",Cns_HIERARCHY_MAX_CHARS_SHRT_NAME,Deg_EditingDeg->ShrtName,
"name=\"OthDegTypCod\"" HTM_DONT_SUBMIT_ON_CHANGE,
" class=\"HIE_SEL_NARROW INPUT_%s\"", "class=\"INPUT_SHORT_NAME INPUT_%s\""
The_GetSuffix ()); " required=\"required\"",
for (NumDegTyp = 0; The_GetSuffix ());
NumDegTyp < DegTypes->Num; HTM_TD_End ();
NumDegTyp++)
{
DegTypInLst = &DegTypes->Lst[NumDegTyp];
HTM_OPTION (HTM_Type_LONG,&DegTypInLst->DegTypCod,
DegTypInLst->DegTypCod == Deg_EditingDeg->DegTypCod, // Selected?
HTM_OPTION_ENABLED,
"%s",DegTypInLst->DegTypName);
}
HTM_SELECT_End ();
HTM_TD_End ();
/***** Degree WWW *****/ /***** Degree full name *****/
HTM_TD_Begin ("class=\"LM\""); HTM_TD_Begin ("class=\"LM\"");
HTM_INPUT_URL ("WWW",Deg_EditingDeg->WWW,HTM_DONT_SUBMIT_ON_CHANGE, HTM_INPUT_TEXT ("FullName",Cns_HIERARCHY_MAX_CHARS_FULL_NAME,Deg_EditingDeg->FullName,
"class=\"INPUT_WWW_NARROW INPUT_%s\"" HTM_DONT_SUBMIT_ON_CHANGE,
" required=\"required\"", "class=\"INPUT_FULL_NAME INPUT_%s\""
The_GetSuffix ()); " required=\"required\"",
HTM_TD_End (); The_GetSuffix ());
HTM_TD_End ();
/***** Number of courses in this degree *****/ /***** Degree type *****/
HTM_TD_Begin ("class=\"RM DAT_%s\"",The_GetSuffix ()); HTM_TD_Begin ("class=\"LM\"");
HTM_Unsigned (0); HTM_SELECT_Begin (HTM_DONT_SUBMIT_ON_CHANGE,NULL,
HTM_TD_End (); "name=\"OthDegTypCod\""
" class=\"HIE_SEL_NARROW INPUT_%s\"",
The_GetSuffix ());
for (NumDegTyp = 0;
NumDegTyp < DegTypes->Num;
NumDegTyp++)
{
DegTypInLst = &DegTypes->Lst[NumDegTyp];
HTM_OPTION (HTM_Type_LONG,&DegTypInLst->DegTypCod,
DegTypInLst->DegTypCod == Deg_EditingDeg->DegTypCod, // Selected?
HTM_OPTION_ENABLED,
"%s",DegTypInLst->DegTypName);
}
HTM_SELECT_End ();
HTM_TD_End ();
/***** Number of users in courses of this degree *****/ /***** Degree WWW *****/
HTM_TD_Begin ("class=\"RM DAT_%s\"",The_GetSuffix ()); HTM_TD_Begin ("class=\"LM\"");
HTM_Unsigned (0); HTM_INPUT_URL ("WWW",Deg_EditingDeg->WWW,HTM_DONT_SUBMIT_ON_CHANGE,
HTM_TD_End (); "class=\"INPUT_WWW_NARROW INPUT_%s\""
" required=\"required\"",
The_GetSuffix ());
HTM_TD_End ();
/***** Degree requester *****/ /***** Number of courses in this degree *****/
HTM_TD_Begin ("class=\"LT DAT_%s INPUT_REQUESTER\"", HTM_TD_Begin ("class=\"RM DAT_%s\"",The_GetSuffix ());
The_GetSuffix ()); HTM_Unsigned (0);
Msg_WriteMsgAuthor (&Gbl.Usrs.Me.UsrDat,true); HTM_TD_End ();
HTM_TD_End ();
/***** Degree status *****/ /***** Number of users in courses of this degree *****/
HTM_TD_Begin ("class=\"LM DAT_%s\"",The_GetSuffix ()); HTM_TD_Begin ("class=\"RM DAT_%s\"",The_GetSuffix ());
HTM_TD_End (); HTM_Unsigned (0);
HTM_TD_End ();
HTM_TR_End (); /***** Degree requester *****/
HTM_TD_Begin ("class=\"LT DAT_%s INPUT_REQUESTER\"",
The_GetSuffix ());
Msg_WriteMsgAuthor (&Gbl.Usrs.Me.UsrDat,true);
HTM_TD_End ();
/***** End table, send button and end box *****/ /***** Degree status *****/
Box_BoxTableWithButtonEnd (Btn_CREATE_BUTTON,Txt_Create_degree); HTM_TD_Begin ("class=\"LM DAT_%s\"",The_GetSuffix ());
HTM_TD_End ();
/***** End form *****/ HTM_TR_End ();
Frm_EndForm ();
/***** End table and send button *****/
HTM_TABLE_End ();
Btn_PutButton (Btn_CREATE_BUTTON,Txt_Create);
/***** End form *****/
Frm_EndForm ();
/***** End fieldset *****/
HTM_FIELDSET_End ();
} }
/*****************************************************************************/ /*****************************************************************************/

View File

@ -6641,29 +6641,6 @@ const char *Txt_Create_course =
"Create course"; // Çeviri lazim! "Create course"; // Çeviri lazim!
#endif #endif
const char *Txt_Create_degree =
#if L==1 // ca
"Crear titulaci&oacute;";
#elif L==2 // de
"Studiengang eingeben";
#elif L==3 // en
"Create degree";
#elif L==4 // es
"Crear titulaci&oacute;n";
#elif L==5 // fr
"Cr&eacute;er &eacute;tude";
#elif L==6 // gn
"Crear titulaci&oacute;n"; // Okoteve traducción
#elif L==7 // it
"Crea laurea";
#elif L==8 // pl
"Utw&oacute;rz stopnia";
#elif L==9 // pt
"Criar grau";
#elif L==10 // tr
"Create degree"; // Çeviri lazim!
#endif
const char *Txt_Create_department = const char *Txt_Create_department =
#if L==1 // ca #if L==1 // ca
"Crear departament"; "Crear departament";

View File

@ -4457,23 +4457,23 @@ const char *Txt_Actions[ActLst_NUM_ACTIONS] =
, ,
[ActNewDeg] = [ActNewDeg] =
#if L==1 // ca #if L==1 // ca
"Create degree" // Necessita traducció "Crear titulaci&oacute;"
#elif L==2 // de #elif L==2 // de
"Create degree" // Need Übersetzung "Studiengang eingeben"
#elif L==3 // en #elif L==3 // en
"Create degree" "Create degree"
#elif L==4 // es #elif L==4 // es
"Crear titulaci&oacute;n" "Crear titulaci&oacute;n"
#elif L==5 // fr #elif L==5 // fr
"Create degree" // Besoin de traduction "Cr&eacute;er &eacute;tude"
#elif L==6 // gn #elif L==6 // gn
"Crear titulaci&oacute;n" // Okoteve traducción "Crear titulaci&oacute;n" // Okoteve traducción
#elif L==7 // it #elif L==7 // it
"Create degree" // Bisogno di traduzione "Crea laurea"
#elif L==8 // pl #elif L==8 // pl
"Create degree" // Potrzebujesz tlumaczenie "Utw&oacute;rz stopnia"
#elif L==9 // pt #elif L==9 // pt
"Create degree" // Precisa de traduçăo "Criar grau"
#elif L==10 // tr #elif L==10 // tr
"Create degree" // Çeviri lazim! "Create degree" // Çeviri lazim!
#endif #endif