Version 16.54.1

This commit is contained in:
Antonio Cañas Vargas 2016-11-13 11:29:24 +01:00
parent cd992925bc
commit 6652de1dde
3 changed files with 12 additions and 2 deletions

View File

@ -408,6 +408,7 @@ void Acc_ShowFormGoToRequestNewAccount (void)
void Acc_ShowFormChangeMyAccount (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_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_email_address;
extern const char *Txt_Please_fill_in_your_ID; extern const char *Txt_Please_fill_in_your_ID;
@ -449,7 +450,8 @@ void Acc_ShowFormChangeMyAccount (void)
fprintf (Gbl.F.Out,"</div>"); fprintf (Gbl.F.Out,"</div>");
/***** Start table *****/ /***** Start table *****/
Lay_StartRoundFrameTable (NULL,2,Txt_User_account); Lay_StartRoundFrame (NULL,Txt_User_account,NULL,Hlp_PROFILE_Account);
fprintf (Gbl.F.Out,"<table class=\"FRAME_TABLE CELLS_PAD_2\">");
/***** Nickname *****/ /***** Nickname *****/
if (IMustFillNickname) if (IMustFillNickname)

View File

@ -156,13 +156,14 @@
/****************************** Public constants *****************************/ /****************************** 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 CSS_FILE "swad16.51.css"
#define JS_FILE "swad16.46.1.js" #define JS_FILE "swad16.46.1.js"
// Number of lines (includes comments but not blank lines) has been got with the following command: // 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 // 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.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.1: Nov 13, 2016 Contextual help on user's photo. (206686 lines)
Version 16.53: Nov 13, 2016 Contextual help on surveys. (206681 lines) Version 16.53: Nov 13, 2016 Contextual help on surveys. (206681 lines)

View File

@ -37,6 +37,8 @@
/****************************** Public constants *****************************/ /****************************** Public constants *****************************/
/*****************************************************************************/ /*****************************************************************************/
/***** STATS tab *****/
const char *Hlp_STATS_Surveys = const char *Hlp_STATS_Surveys =
"https://github.com/acanas/swad-core/wiki/STATS.Surveys"; "https://github.com/acanas/swad-core/wiki/STATS.Surveys";
const char *Hlp_STATS_Surveys_new_survey = const char *Hlp_STATS_Surveys_new_survey =
@ -46,6 +48,11 @@ const char *Hlp_STATS_Surveys_edit_survey =
const char *Hlp_STATS_Surveys_questions = const char *Hlp_STATS_Surveys_questions =
"https://github.com/acanas/swad-core/wiki/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 = const char *Hlp_PROFILE_Photo =
"https://github.com/acanas/swad-core/wiki/PROFILE.Photo"; "https://github.com/acanas/swad-core/wiki/PROFILE.Photo";