diff --git a/swad_changelog.h b/swad_changelog.h index a090c1c92..c5ccb12ef 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -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) diff --git a/swad_course.c b/swad_course.c index 645164831..453d2605e 100644 --- a/swad_course.c +++ b/swad_course.c @@ -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,"
"); diff --git a/swad_help.c b/swad_help.c index c2d84ff7a..487a1c722 100644 --- a/swad_help.c +++ b/swad_help.c @@ -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";