Version 16.132.9

This commit is contained in:
Antonio Cañas Vargas 2017-01-31 21:40:40 +01:00
parent b519a97703
commit 2323a314c5
3 changed files with 10 additions and 3 deletions

View File

@ -191,13 +191,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.132.8 (2017-01-31)"
#define Log_PLATFORM_VERSION "SWAD 16.132.9 (2017-01-31)"
#define CSS_FILE "swad16.132.4.css"
#define JS_FILE "swad16.123.js"
// 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 16.132.9: Jan 31, 2017 Help on degrees stats. (211890 lines)
Version 16.132.8: Jan 31, 2017 Help on remove all students in a course. (211884 lines)
Version 16.132.7: Jan 31, 2017 Changes in layout of removal of all students in a course. (211880 lines)
Version 16.132.6: Jan 31, 2017 Help on administration of students. (211895 lines)

View File

@ -241,6 +241,8 @@ const char *Hlp_STATS_Figures_theme = WIKI "STATS.Figur
const char *Hlp_STATS_Figures_columns = WIKI "STATS.Figures#columns";
const char *Hlp_STATS_Figures_privacy = WIKI "STATS.Figures#privacy";
const char *Hlp_STATS_Degrees = WIKI "STATS.Degrees";
const char *Hlp_STATS_Report = WIKI "STATS.Report";
const char *Hlp_STATS_Frequent = WIKI "STATS.Frequent";

View File

@ -1991,6 +1991,7 @@ static void Pho_GetMaxStdsPerDegree (void)
static void Pho_ShowOrPrintClassPhotoDegrees (Pho_AvgPhotoSeeOrPrint_t SeeOrPrint)
{
extern const char *Hlp_STATS_Degrees;
extern const char *Txt_Degrees;
extern const char *Txt_No_users_found[Rol_NUM_ROLES];
char Query[512];
@ -2012,7 +2013,8 @@ static void Pho_ShowOrPrintClassPhotoDegrees (Pho_AvgPhotoSeeOrPrint_t SeeOrPrin
Lay_StartRoundFrame (NULL,Txt_Degrees,
SeeOrPrint == Pho_DEGREES_SEE ? Pho_PutIconToPrintDegreeStats :
NULL,
NULL);
SeeOrPrint == Pho_DEGREES_SEE ? Hlp_STATS_Degrees :
NULL);
if (NumRows) // Degrees with students found
{
@ -2081,6 +2083,7 @@ static void Pho_ShowOrPrintClassPhotoDegrees (Pho_AvgPhotoSeeOrPrint_t SeeOrPrin
static void Pho_ShowOrPrintListDegrees (Pho_AvgPhotoSeeOrPrint_t SeeOrPrint)
{
extern const char *Hlp_STATS_Degrees;
extern const char *Txt_Degrees;
extern const char *Txt_No_INDEX;
extern const char *Txt_Degree;
@ -2105,7 +2108,8 @@ static void Pho_ShowOrPrintListDegrees (Pho_AvgPhotoSeeOrPrint_t SeeOrPrint)
Lay_StartRoundFrame (NULL,Txt_Degrees,
SeeOrPrint == Pho_DEGREES_SEE ? Pho_PutIconToPrintDegreeStats :
NULL,
NULL);
SeeOrPrint == Pho_DEGREES_SEE ? Hlp_STATS_Degrees :
NULL);
if (NumRows) // Degrees with students found
{