Version 15.64.4

This commit is contained in:
Antonio Cañas Vargas 2015-12-13 17:12:48 +01:00
parent 9d2620e3cf
commit b1fe6854f0
4 changed files with 11 additions and 4 deletions

View File

@ -1549,6 +1549,11 @@ a:hover img.CENTRE_PHOTO_SHOW
.REC_HEAD_SMALL {font-family:Georgia,"DejaVu LGC Serif","Bitstream Vera Serif",serif; color:#808080; font-size:11pt;}
.REC_NAME {color:#808080; font-size:20pt; font-weight:bold;}
.REC_NICK {color:#808080; font-size:15pt; font-weight:bold;}
.REC_WEBS
{
width:180px;
margin:0 auto;
}
.REC_DAT {color:#404040; font-size:11pt; line-height:110%;}
.REC_DAT_SMALL {color:#808080; font-size:11pt; line-height:110%;}
.REC_DAT_SMALL_BOLD {color:black; font-size:11pt; line-height:110%;}

View File

@ -117,12 +117,13 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 15.64.3 (2015/12/13)"
#define CSS_FILE "swad15.64.3.css"
#define Log_PLATFORM_VERSION "SWAD 15.64.4 (2015/12/13)"
#define CSS_FILE "swad15.64.4.css"
// 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.64.4: Dec 13, 2015 Links to web / social networks are not displayed when printing record card. (186986 lines)
Version 15.64.3: Dec 13, 2015 Changes in layout of records. (186979 lines)
Version 15.64.2: Dec 13, 2015 Changes in some CSS names. (186975 lines)
Version 15.64.1: Dec 12, 2015 Changes in layout of user's public profile. (186980 lines)

View File

@ -197,7 +197,7 @@ void Net_ShowWebsAndSocialNets (const struct UsrData *UsrDat)
char URL[Cns_MAX_BYTES_URL+1];
/***** Start container *****/
fprintf (Gbl.F.Out,"<div style=\"width:180px; margin:0 auto;\">");
fprintf (Gbl.F.Out,"<div class=\"REC_WEBS\">");
/***** Show link to public profile *****/
Net_ShowAWebOrSocialNet (Prf_GetURLPublicProfile (URL,UsrDat->Nickname),

View File

@ -2466,7 +2466,8 @@ void Rec_ShowSharedUsrRecord (Rec_RecordViewType_t TypeOfView,
/***** User's web and social networks *****/
fprintf (Gbl.F.Out,"<td class=\"CENTER_TOP\" style=\"width:%upx;\">",
TopC3Width);
Net_ShowWebsAndSocialNets (UsrDat);
if (TypeOfView != Rec_RECORD_PRINT)
Net_ShowWebsAndSocialNets (UsrDat);
fprintf (Gbl.F.Out,"</td>"
"</tr>");