Version 16.54.16

This commit is contained in:
Antonio Cañas Vargas 2016-11-13 15:06:49 +01:00
parent 92a069f0c0
commit 05e7bd0810
3 changed files with 10 additions and 2 deletions

View File

@ -156,13 +156,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.54.15 (2016-11-13)"
#define Log_PLATFORM_VERSION "SWAD 16.54.16 (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.16: Nov 13, 2016 Contextual help on courses. (206829 lines)
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)

View File

@ -1173,6 +1173,7 @@ void Crs_WriteSelectorMyCourses (void)
static void Crs_ListCourses (void)
{
extern const char *Hlp_DEGREE_Courses;
extern const char *Txt_Courses_of_DEGREE_X;
extern const char *Txt_No_courses;
extern const char *Txt_Create_another_course;
@ -1181,7 +1182,8 @@ static void Crs_ListCourses (void)
/***** Start frame *****/
sprintf (Gbl.Title,Txt_Courses_of_DEGREE_X,Gbl.CurrentDeg.Deg.ShrtName);
Lay_StartRoundFrame (NULL,Gbl.Title,Crs_PutIconsListCourses,NULL);
Lay_StartRoundFrame (NULL,Gbl.Title,
Crs_PutIconsListCourses,Hlp_DEGREE_Courses);
if (Gbl.CurrentDeg.NumCrss) // There are courses in the current degree
{

View File

@ -57,6 +57,11 @@ const char *Hlp_INSTITUTION_Centres =
const char *Hlp_CENTRE_Degrees =
"https://github.com/acanas/swad-core/wiki/CENTRE.Degrees";
/***** DEGREE tab *****/
const char *Hlp_DEGREE_Courses =
"https://github.com/acanas/swad-core/wiki/DEGREE.Courses";
/***** STATS tab *****/
const char *Hlp_STATS_Surveys =