Version19.90.5

This commit is contained in:
Antonio Cañas Vargas 2019-12-13 18:22:59 +01:00
parent e6c027fa62
commit a7e16480de
6 changed files with 13 additions and 12 deletions

View File

@ -448,8 +448,8 @@ static void Att_ShowOneAttEvent (struct AttendanceEvent *Att,bool ShowOnlyThisAt
HTM_TD_Begin ("class=\"LT COLOR%u\"",Gbl.RowEvenOdd);
HTM_ARTICLE_Begin (Anchor);
Att_PutLinkAttEvent (Att,Txt_View_event,Att->Title,
Att->Hidden ? "BT_LINK ASG_TITLE_LIGHT" :
"BT_LINK ASG_TITLE");
Att->Hidden ? "BT_LINK LT ASG_TITLE_LIGHT" :
"BT_LINK LT ASG_TITLE");
HTM_ARTICLE_End ();
HTM_TD_End ();

View File

@ -490,13 +490,14 @@ enscript -2 --landscape --color --file-align=2 --highlight --line-numbers -o - *
En OpenSWAD:
ps2pdf source.ps destination.pdf
*/
#define Log_PLATFORM_VERSION "SWAD 19.90.4 (2019-12-13)"
#define Log_PLATFORM_VERSION "SWAD 19.90.5 (2019-12-13)"
#define CSS_FILE "swad19.90.1.css"
#define JS_FILE "swad19.90.js"
/*
// TODO: Hacer un nuevo rol en los TFG: tutor externo (profesor de áreas no vinculadas con el centro, profesionales de empresas, etc.)
// TODO: Impedir la creación y edición de proyectos si no son editables.
Version 19.90.5: Dec 13, 2019 Fixed issues in layout of links (buttons). (248432 lines)
Version 19.90.4: Dec 13, 2019 Fixed issues in layout of statistics. (248431 lines)
Version 19.90.3: Dec 13, 2019 Changes in match layout. (248430 lines)
Version 19.90.2: Dec 13, 2019 Code refactoring in matches. (248427 lines)

View File

@ -505,8 +505,8 @@ static void Gam_ShowOneGame (struct Game *Game,bool ShowOnlyThisGame)
Frm_StartForm (ActSeeGam);
Gam_PutParams ();
HTM_BUTTON_SUBMIT_Begin (Txt_View_game,
Game->Hidden ? "BT_LINK ASG_TITLE_LIGHT":
"BT_LINK ASG_TITLE",
Game->Hidden ? "BT_LINK LT ASG_TITLE_LIGHT":
"BT_LINK LT ASG_TITLE",
NULL);
HTM_Txt (Game->Title);
HTM_BUTTON_End ();
@ -533,8 +533,8 @@ static void Gam_ShowOneGame (struct Game *Game,bool ShowOnlyThisGame)
Frm_StartForm (ActSeeGam);
Gam_PutParams ();
HTM_BUTTON_SUBMIT_Begin (Txt_Matches,
Game->Hidden ? "BT_LINK ASG_TITLE_LIGHT" :
"BT_LINK ASG_TITLE",
Game->Hidden ? "BT_LINK LT ASG_TITLE_LIGHT" :
"BT_LINK LT ASG_TITLE",
NULL);
if (ShowOnlyThisGame)
HTM_TxtF ("%s: ",Txt_Matches);

View File

@ -620,7 +620,7 @@ static void Mch_ListOneOrMoreMatchesTitleGrps (const struct Match *Match)
Mch_PutParamsPlay ();
HTM_BUTTON_SUBMIT_Begin (Gbl.Usrs.Me.Role.Logged == Rol_STD ? Txt_Play :
Txt_Resume,
"BT_LINK ASG_TITLE",NULL);
"BT_LINK LT ASG_TITLE",NULL);
HTM_Txt (Match->Title);
HTM_BUTTON_End ();
Frm_EndForm ();

View File

@ -1146,8 +1146,8 @@ static void Prj_ShowOneProject (unsigned NumIndex,struct Project *Prj,
"DATE_BLUE";
ClassTitle = (Prj->Hidden == Prj_HIDDEN) ? "ASG_TITLE_LIGHT" :
"ASG_TITLE";
ClassLink = (Prj->Hidden == Prj_HIDDEN) ? "BT_LINK ASG_TITLE_LIGHT" :
"BT_LINK ASG_TITLE";
ClassLink = (Prj->Hidden == Prj_HIDDEN) ? "BT_LINK LT ASG_TITLE_LIGHT" :
"BT_LINK LT ASG_TITLE";
ClassData = (Prj->Hidden == Prj_HIDDEN) ? "DAT_LIGHT" :
"DAT";

View File

@ -516,8 +516,8 @@ static void Svy_ShowOneSurvey (long SvyCod,bool ShowOnlyThisSvyComplete)
Grp_PutParamWhichGrps ();
Pag_PutHiddenParamPagNum (Pag_SURVEYS,Gbl.Svys.CurrentPage);
HTM_BUTTON_SUBMIT_Begin (Txt_View_survey,
Svy.Status.Visible ? "BT_LINK ASG_TITLE" :
"BT_LINK ASG_TITLE_LIGHT",
Svy.Status.Visible ? "BT_LINK LT ASG_TITLE" :
"BT_LINK LT ASG_TITLE_LIGHT",
NULL);
HTM_Txt (Svy.Title);
HTM_BUTTON_End ();