From 6652de1dde03ffbfe17204d96599749e0dcf5441 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Ca=C3=B1as=20Vargas?= Date: Sun, 13 Nov 2016 11:29:24 +0100 Subject: [PATCH] Version 16.54.1 --- swad_account.c | 4 +++- swad_changelog.h | 3 ++- swad_help.c | 7 +++++++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/swad_account.c b/swad_account.c index 02a5adc81..f51c0df84 100644 --- a/swad_account.c +++ b/swad_account.c @@ -408,6 +408,7 @@ void Acc_ShowFormGoToRequestNewAccount (void) void Acc_ShowFormChangeMyAccount (void) { + extern const char *Hlp_PROFILE_Account; extern const char *Txt_Before_going_to_any_other_option_you_must_fill_your_nickname; extern const char *Txt_Please_fill_in_your_email_address; extern const char *Txt_Please_fill_in_your_ID; @@ -449,7 +450,8 @@ void Acc_ShowFormChangeMyAccount (void) fprintf (Gbl.F.Out,""); /***** Start table *****/ - Lay_StartRoundFrameTable (NULL,2,Txt_User_account); + Lay_StartRoundFrame (NULL,Txt_User_account,NULL,Hlp_PROFILE_Account); + fprintf (Gbl.F.Out,""); /***** Nickname *****/ if (IMustFillNickname) diff --git a/swad_changelog.h b/swad_changelog.h index beb64c63d..23d4687b4 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -156,13 +156,14 @@ /****************************** Public constants *****************************/ /*****************************************************************************/ -#define Log_PLATFORM_VERSION "SWAD 16.54 (2016-11-13)" +#define Log_PLATFORM_VERSION "SWAD 16.54.1 (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. Nov 13, 2016 Contextual help on user's account. (? lines) Version 16.54: Nov 13, 2016 Contextual help on user's preferences. (206722 lines) Version 16.53.1: Nov 13, 2016 Contextual help on user's photo. (206686 lines) Version 16.53: Nov 13, 2016 Contextual help on surveys. (206681 lines) diff --git a/swad_help.c b/swad_help.c index aa0c9c9c2..88a42ec8e 100644 --- a/swad_help.c +++ b/swad_help.c @@ -37,6 +37,8 @@ /****************************** Public constants *****************************/ /*****************************************************************************/ +/***** STATS tab *****/ + const char *Hlp_STATS_Surveys = "https://github.com/acanas/swad-core/wiki/STATS.Surveys"; const char *Hlp_STATS_Surveys_new_survey = @@ -46,6 +48,11 @@ const char *Hlp_STATS_Surveys_edit_survey = const char *Hlp_STATS_Surveys_questions = "https://github.com/acanas/swad-core/wiki/STATS.Surveys#questions"; +/***** PROFILE tab *****/ + +const char *Hlp_PROFILE_Account = + "https://github.com/acanas/swad-core/wiki/PROFILE.Account"; + const char *Hlp_PROFILE_Photo = "https://github.com/acanas/swad-core/wiki/PROFILE.Photo";