From e7c8cac631d70629c56ee48e89508b35b7a38773 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Ca=C3=B1as=20Vargas?= Date: Sat, 23 Apr 2016 13:49:38 +0200 Subject: [PATCH] Version 15.202.4 --- swad_changelog.h | 3 ++- swad_record.c | 65 ++++++++++++++++++++++++++++++------------------ 2 files changed, 43 insertions(+), 25 deletions(-) diff --git a/swad_changelog.h b/swad_changelog.h index 28f8e68b8..5bd395a92 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -134,13 +134,14 @@ /****************************** Public constants *****************************/ /*****************************************************************************/ -#define Log_PLATFORM_VERSION "SWAD 15.202.3 (2016-04-23)" +#define Log_PLATFORM_VERSION "SWAD 15.202.4 (2016-04-23)" #define CSS_FILE "swad15.202.css" #define JS_FILE "swad15.197.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 15.202.4: Apr 23, 2016 Code refactoring in record card. (200926 lines) Version 15.202.3: Apr 23, 2016 Code refactoring in record card. (200911 lines) Version 15.202.2: Apr 23, 2016 Code refactoring in record card. (200899 lines) Version 15.202.1: Apr 23, 2016 Code refactoring related to showing user's e-mail. (200887 lines) diff --git a/swad_record.c b/swad_record.c index df16b8c3f..31e132acb 100644 --- a/swad_record.c +++ b/swad_record.c @@ -106,6 +106,10 @@ static void Rec_ShowSurname1 (struct UsrData *UsrDat, static void Rec_ShowSurname2 (struct UsrData *UsrDat, bool DataForm, const char *ClassForm); +static void Rec_ShowFirstName (struct UsrData *UsrDat, + Rec_RecordViewType_t TypeOfView, + bool DataForm, + const char *ClassForm); static void Rec_WriteLinkToDataProtectionClause (void); @@ -1968,7 +1972,6 @@ void Rec_ShowSharedUsrRecord (Rec_RecordViewType_t TypeOfView, struct UsrData *UsrDat) { extern const char *The_ClassForm[The_NUM_THEMES]; - extern const char *Txt_First_name; extern const char *Txt_Country; extern const char *Txt_Another_country; extern const char *Txt_Place_of_origin; @@ -2121,28 +2124,7 @@ void Rec_ShowSharedUsrRecord (Rec_RecordViewType_t TypeOfView, Rec_ShowSurname2 (UsrDat,DataForm,ClassForm); /* First name */ - fprintf (Gbl.F.Out,"" - "" - "%s", - ClassForm,Rec_C1_BOTTOM,Txt_First_name); - if (TypeOfView == Rec_FORM_MY_COMMON_RECORD) - fprintf (Gbl.F.Out,"*"); - fprintf (Gbl.F.Out,":" - "", - Rec_C2_BOTTOM); - if (DataForm) - fprintf (Gbl.F.Out,"", - Usr_MAX_LENGTH_USR_NAME_OR_SURNAME, - UsrDat->FirstName, - Rec_C2_BOTTOM - 20); - else if (UsrDat->FirstName[0]) - fprintf (Gbl.F.Out,"%s",UsrDat->FirstName); - fprintf (Gbl.F.Out,"" - ""); + Rec_ShowFirstName (UsrDat,TypeOfView,DataForm,ClassForm); /* Country */ if (CountryForm) @@ -3244,7 +3226,7 @@ static void Rec_ShowSurname1 (struct UsrData *UsrDat, /*****************************************************************************/ -/*************************** Show user's surname 1 ***************************/ +/*************************** Show user's surname 2 ***************************/ /*****************************************************************************/ static void Rec_ShowSurname2 (struct UsrData *UsrDat, @@ -3276,6 +3258,41 @@ static void Rec_ShowSurname2 (struct UsrData *UsrDat, ""); } +/*****************************************************************************/ +/************************** Show user's first name ***************************/ +/*****************************************************************************/ + +static void Rec_ShowFirstName (struct UsrData *UsrDat, + Rec_RecordViewType_t TypeOfView, + bool DataForm, + const char *ClassForm) + { + extern const char *Txt_First_name; + + fprintf (Gbl.F.Out,"" + "" + "%s", + ClassForm,Rec_C1_BOTTOM,Txt_First_name); + if (TypeOfView == Rec_FORM_MY_COMMON_RECORD) + fprintf (Gbl.F.Out,"*"); + fprintf (Gbl.F.Out,":" + "", + Rec_C2_BOTTOM); + if (DataForm) + fprintf (Gbl.F.Out,"", + Usr_MAX_LENGTH_USR_NAME_OR_SURNAME, + UsrDat->FirstName, + Rec_C2_BOTTOM - 20); + else if (UsrDat->FirstName[0]) + fprintf (Gbl.F.Out,"%s",UsrDat->FirstName); + fprintf (Gbl.F.Out,"" + ""); + } + /*****************************************************************************/ /*********************** Write a link to netiquette rules ********************/ /*****************************************************************************/