Version 16.54.22

This commit is contained in:
Antonio Cañas Vargas 2016-11-13 16:59:04 +01:00
parent e3b0d6b021
commit acf9ec24db
3 changed files with 12 additions and 4 deletions

View File

@ -156,13 +156,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.54.21 (2016-11-13)"
#define Log_PLATFORM_VERSION "SWAD 16.54.22 (2016-11-13)"
#define CSS_FILE "swad16.51.css"
#define JS_FILE "swad16.46.1.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.54.22: Nov 13, 2016 Contextual help on course information. (206832 lines)
Version 16.54.21: Nov 13, 2016 Contextual help on degree information. (206826 lines)
Version 16.54.20: Nov 13, 2016 Contextual help on centre information. (206821 lines)
Version 16.54.19: Nov 13, 2016 Contextual help on institution information. (206816 lines)

View File

@ -152,6 +152,7 @@ void Crs_PrintConfiguration (void)
static void Crs_Configuration (bool PrintView)
{
extern const char *Hlp_COURSE_Information;
extern const char *The_ClassForm[The_NUM_THEMES];
extern const char *Txt_Degree;
extern const char *Txt_Course;
@ -188,9 +189,11 @@ static void Crs_Configuration (bool PrintView)
}
/***** Start frame *****/
Lay_StartRoundFrame (NULL,NULL,PrintView ? NULL :
Crs_PutIconToPrint,
NULL);
Lay_StartRoundFrame (NULL,NULL,
PrintView ? NULL :
Crs_PutIconToPrint,
PrintView ? NULL :
Hlp_COURSE_Information);
/***** Title *****/
fprintf (Gbl.F.Out,"<div class=\"FRAME_TABLE_TITLE CENTER_MIDDLE\">");

View File

@ -63,6 +63,10 @@ const char *Hlp_CENTRE_Degrees = WIKI "CENTRE.Degrees";
const char *Hlp_DEGREE_Information = WIKI "DEGREE.Information";
const char *Hlp_DEGREE_Courses = WIKI "DEGREE.Courses";
/***** COURSE tab *****/
const char *Hlp_COURSE_Information = WIKI "COURSE.Information";
/***** STATS tab *****/
const char *Hlp_STATS_Surveys = WIKI "STATS.Surveys";