Version 15.3.2

This commit is contained in:
Antonio Cañas Vargas 2015-09-30 20:23:40 +02:00
parent b73f413056
commit 5623ec3808
2 changed files with 10 additions and 9 deletions

View File

@ -98,11 +98,12 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 15.3.1 (2015/09/29)"
#define Log_PLATFORM_VERSION "SWAD 15.3.2 (2015/09/30)"
// Number of lines (includes comments but not blank lines) has been got with the following command:
// nl swad*.c swad*.h css/swad*.css py/swad*.py js/swad*.js soap/swad*.h sql/swad*.sql | tail -1
/*
Version 15.3.2: Sep 30, 2015 Changes in layout of statistical figures. (185156 lines)
Version 15.3.1: Sep 29, 2015 Changes in background and fonts. (185156 lines)
Version 15.3: Sep 28, 2015 All sizes are multiplied by 0.8333 (25% bigger than those previous to version 15.0). (185148 lines)
Version 15.2.2: Sep 27, 2015 Fixed minor problem in CSS. (185172 lines)

View File

@ -3547,17 +3547,18 @@ static void Sta_WriteSelectedRangeOfDates (unsigned NumDays)
void Sta_ReqUseOfPlatform (void)
{
extern const char *The_ClassForm[The_NUM_THEMES];
extern const char *Txt_Scope;
extern const char *Txt_Statistic;
extern const char *Txt_Scope;
extern const char *Txt_STAT_USE_STAT_TYPES[Sta_NUM_FIGURES];
extern const char *Txt_Show_statistic;
Sta_FigureType_t UseStatType;
/***** Start form *****/
fprintf (Gbl.F.Out,"<div class=\"CENTER_MIDDLE\""
" style=\"padding-bottom:12px;\">");
/***** Form to show statistic *****/
Act_FormStart (ActSeeUseGbl);
/***** Start frame *****/
Lay_StartRoundFrame (NULL,Txt_Statistic);
/***** Compute stats for anywhere, degree or course? *****/
fprintf (Gbl.F.Out,"<div class=\"%s CENTER_MIDDLE\">"
"%s: ",
@ -3592,12 +3593,11 @@ void Sta_ReqUseOfPlatform (void)
fprintf (Gbl.F.Out,"</select>"
"</div>");
/***** Submit button *****/
Lay_PutConfirmButton (Txt_Show_statistic);
/***** Send button and end frame *****/
Lay_EndRoundFrameWithButton (Lay_CONFIRM_BUTTON,Txt_Show_statistic);
/***** End form *****/
/***** End of form *****/
Act_FormEnd ();
fprintf (Gbl.F.Out,"</div>");
}
/*****************************************************************************/