Version 14.94.3

This commit is contained in:
Antonio Cañas Vargas 2015-03-17 10:42:06 +01:00
parent 6bd6193988
commit 83c923cc50
4 changed files with 9 additions and 10 deletions

View File

@ -730,7 +730,8 @@ a:hover img.CENTRE_PHOTO_SHOW
.HEAD_REC {font-family:Georgia, "DejaVu LGC Serif", "Bitstream Vera Serif", serif; color:#808080; font-size:10pt;}
.HEAD_REC_SMALL {font-family:Georgia, "DejaVu LGC Serif", "Bitstream Vera Serif", serif; color:#808080; font-size:9pt;}
.HEAD_REC_BIG {color:#808080; font-size:16pt; font-weight:bold;}
.REC_NAME {color:#808080; font-size:16pt; font-weight:bold;}
.REC_NICK {color:#808080; font-size:14pt; font-weight:bold;}
.DAT_REC {color:#404040; font-size:9pt; line-height:110%;}
.DAT_REC_SMALL {color:#808080; font-size:9pt; line-height:110%;}
.DAT_REC_SMALL_BOLD {color:#202020; font-size:9pt; line-height:110%;}

View File

@ -541,7 +541,8 @@ a:hover img.CENTRE_PHOTO_SHOW
.HEAD_REC {font-Family:Georgia, "DejaVu LGC Serif", "Bitstream Vera Serif", serif; color:#808080; font-size:16pt;}
.HEAD_REC_SMALL {font-Family:Georgia, "DejaVu LGC Serif", "Bitstream Vera Serif", serif; color:#808080; font-size:12pt;}
.HEAD_REC_BIG {color:#808080; font-size:20pt; font-weight:bold;}
.REC_NAME {color:#808080; font-size:20pt; font-weight:bold;}
.REC_NICK {color:#808080; font-size:16pt; font-weight:bold;}
.DAT_REC {color:#404040; font-size:14pt; line-height:110%;}
.DAT_REC_SMALL {color:#808080; font-size:14pt; line-height:110%;}
.DAT_REC_SMALL_BOLD {color:#202020; font-size:14pt; line-height:110%;}

View File

@ -103,11 +103,12 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 14.94.2 (2015/03/17)"
#define Log_PLATFORM_VERSION "SWAD 14.94.3 (2015/03/17)"
// 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 14.94.3: Mar 17, 2015 Changes in record fonts. (182667 lines)
Version 14.94.2: Mar 17, 2015 Fixed bug in ranking. (182668 lines)
Version 14.94.1: Mar 17, 2015 Fixed bug in user's profile. (182667 lines)
Version 14.94: Mar 17, 2015 Ranking for downloads, forum posts and messages in user's profile. (182666 lines)

View File

@ -2129,7 +2129,6 @@ void Rec_ShowSharedUsrRecord (Rec_RecordViewType_t TypeOfView,
case Rec_FORM_MY_COMMON_RECORD:
RecordWidth = Rec_WIDTH_SHARE_RECORD_BIG;
FrameWidth = 10;
// Col3Width = 160;
ClassHead = "HEAD_REC";
ClassForm = The_ClassFormul[Gbl.Prefs.Theme];
ClassData = "DAT_REC";
@ -2148,7 +2147,6 @@ void Rec_ShowSharedUsrRecord (Rec_RecordViewType_t TypeOfView,
}
RecordWidth = Rec_WIDTH_SHARE_RECORD_BIG;
FrameWidth = 10;
// Col3Width = 160;
ClassHead = "HEAD_REC";
ClassForm = The_ClassFormul[Gbl.Prefs.Theme];
ClassData = "DAT_REC";
@ -2159,7 +2157,6 @@ void Rec_ShowSharedUsrRecord (Rec_RecordViewType_t TypeOfView,
case Rec_RECORD_PUBLIC:
RecordWidth = Rec_WIDTH_SHARE_RECORD_SMALL;
FrameWidth = 10;
// Col3Width = 160;
ClassHead = "HEAD_REC_SMALL";
ClassForm = "DAT_REC_SMALL";
ClassData = "DAT_REC_SMALL_BOLD";
@ -2167,7 +2164,6 @@ void Rec_ShowSharedUsrRecord (Rec_RecordViewType_t TypeOfView,
case Rec_RECORD_PRINT:
RecordWidth = Rec_WIDTH_SHARE_RECORD_PRINT;
FrameWidth = 1;
// Col3Width = 160;
ClassHead = "HEAD_REC_SMALL";
ClassForm = "DAT_REC_SMALL";
ClassData = "DAT_REC_SMALL_BOLD";
@ -2351,7 +2347,7 @@ void Rec_ShowSharedUsrRecord (Rec_RecordViewType_t TypeOfView,
/***** Full name *****/
fprintf (Gbl.F.Out,"</td>"
"<td class=\"HEAD_REC_BIG\" style=\"text-align:left;"
"<td class=\"REC_NAME\" style=\"text-align:left;"
" vertical-align:top;\">"
"%s<br />%s<br />%s"
"</td>"
@ -2380,7 +2376,7 @@ void Rec_ShowSharedUsrRecord (Rec_RecordViewType_t TypeOfView,
"<td class=\"%s\" style=\"width:%upx; text-align:right;\">"
"%s:"
"</td>"
"<td class=\"HEAD_REC_BIG\""
"<td class=\"REC_NICK\""
" style=\"width:%upx; text-align:left;\">",
ClassForm,Col1Width,
Txt_Nickname,
@ -2392,7 +2388,7 @@ void Rec_ShowSharedUsrRecord (Rec_RecordViewType_t TypeOfView,
/* Put form to go to public profile */
Act_FormStart (ActSeePubPrf);
Usr_PutParamOtherUsrCodEncrypted (UsrDat->EncryptedUsrCod);
Act_LinkFormSubmit (Txt_View_public_profile,"HEAD_REC_BIG");
Act_LinkFormSubmit (Txt_View_public_profile,"REC_NICK");
}
fprintf (Gbl.F.Out,"@%s",UsrDat->Nickname);
if (GoToPublicProfileForm)