Version 16.54.15

This commit is contained in:
Antonio Cañas Vargas 2016-11-13 15:04:02 +01:00
parent 5bd11cedc9
commit 92a069f0c0
3 changed files with 10 additions and 2 deletions

View File

@ -156,13 +156,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.54.14 (2016-11-13)"
#define Log_PLATFORM_VERSION "SWAD 16.54.15 (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.15: Nov 13, 2016 Contextual help on degrees. (206823 lines)
Version 16.54.14: Nov 13, 2016 Contextual help on centres. (206817 lines)
Version 16.54.13: Nov 13, 2016 Contextual help on institutions. (206811 lines)
Version 16.54.12: Nov 13, 2016 Contextual help on countries. (206805 lines)

View File

@ -1613,6 +1613,7 @@ static void Deg_CreateDegree (struct Degree *Deg,unsigned Status)
static void Deg_ListDegrees (void)
{
extern const char *Hlp_CENTRE_Degrees;
extern const char *Txt_Degrees_of_CENTRE_X;
extern const char *Txt_No_degrees;
extern const char *Txt_Create_another_degree;
@ -1621,7 +1622,8 @@ static void Deg_ListDegrees (void)
/***** Start frame *****/
sprintf (Gbl.Title,Txt_Degrees_of_CENTRE_X,Gbl.CurrentCtr.Ctr.ShrtName);
Lay_StartRoundFrame (NULL,Gbl.Title,Deg_PutIconsListDegrees,NULL);
Lay_StartRoundFrame (NULL,Gbl.Title,
Deg_PutIconsListDegrees,Hlp_CENTRE_Degrees);
if (Gbl.CurrentCtr.Ctr.Degs.Num) // There are degrees in the current centre
{

View File

@ -52,6 +52,11 @@ const char *Hlp_COUNTRY_Institutions =
const char *Hlp_INSTITUTION_Centres =
"https://github.com/acanas/swad-core/wiki/INSTITUTION.Centres";
/***** CENTRE tab *****/
const char *Hlp_CENTRE_Degrees =
"https://github.com/acanas/swad-core/wiki/CENTRE.Degrees";
/***** STATS tab *****/
const char *Hlp_STATS_Surveys =