From e3b0d6b0213d4a065bb2b8096a3dd22e17181933 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Ca=C3=B1as=20Vargas?= Date: Sun, 13 Nov 2016 16:55:27 +0100 Subject: [PATCH] Version 16.54.21 --- swad_changelog.h | 3 ++- swad_degree.c | 9 ++++++--- swad_help.c | 3 ++- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/swad_changelog.h b/swad_changelog.h index ea896034f..a090c1c92 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -156,13 +156,14 @@ /****************************** Public constants *****************************/ /*****************************************************************************/ -#define Log_PLATFORM_VERSION "SWAD 16.54.20 (2016-11-13)" +#define Log_PLATFORM_VERSION "SWAD 16.54.21 (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.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) Version 16.54.18: Nov 13, 2016 Contextual help on country information. diff --git a/swad_degree.c b/swad_degree.c index dd49437f1..754555c50 100644 --- a/swad_degree.c +++ b/swad_degree.c @@ -291,6 +291,7 @@ void Deg_PrintConfiguration (void) static void Deg_Configuration (bool PrintView) { + extern const char *Hlp_DEGREE_Information; extern const char *The_ClassForm[The_NUM_THEMES]; extern const char *Txt_Centre; extern const char *Txt_Degree; @@ -308,9 +309,11 @@ static void Deg_Configuration (bool PrintView) if (Gbl.CurrentDeg.Deg.DegCod > 0) { /***** Start frame *****/ - Lay_StartRoundFrame (NULL,NULL,PrintView ? NULL : - Deg_PutIconsToPrintAndUpload, - NULL); + Lay_StartRoundFrame (NULL,NULL, + PrintView ? NULL : + Deg_PutIconsToPrintAndUpload, + PrintView ? NULL : + Hlp_DEGREE_Information); /***** Title *****/ fprintf (Gbl.F.Out,"
"); diff --git a/swad_help.c b/swad_help.c index c4efe4e88..c2d84ff7a 100644 --- a/swad_help.c +++ b/swad_help.c @@ -60,7 +60,8 @@ const char *Hlp_CENTRE_Degrees = WIKI "CENTRE.Degrees"; /***** DEGREE tab *****/ -const char *Hlp_DEGREE_Courses = WIKI "DEGREE.Courses"; +const char *Hlp_DEGREE_Information = WIKI "DEGREE.Information"; +const char *Hlp_DEGREE_Courses = WIKI "DEGREE.Courses"; /***** STATS tab *****/