Version 16.104.1

This commit is contained in:
Antonio Cañas Vargas 2016-12-19 02:00:00 +01:00
parent ca8d9b0f8b
commit 00c00a7c29
3 changed files with 9 additions and 5 deletions

View File

@ -55,7 +55,6 @@ table th
box-sizing:border-box;
padding:0;
color:#4D88A1;
/* font-size:12pt; */
font-weight:bold;
}
table td
@ -73,6 +72,10 @@ form
display:inline;
margin:0;
}
address
{
font-style: normal;
}
hr.WHITE_SEPARA {height:0; border-top:0; border-bottom:#707070 dotted 1px;}
hr.GREY_SEPARA {height:0; border-top:0; border-bottom:#707070 dotted 1px;}
hr.BLUE_SEPARA {height:0; border-top:0; border-bottom:#4D88A1 dotted 1px;}

View File

@ -187,13 +187,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.104 (2016-12-19)"
#define Log_PLATFORM_VERSION "SWAD 16.104.1 (2016-12-19)"
#define CSS_FILE "swad16.104.css"
#define JS_FILE "swad16.101.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.104.1: Dec 19, 2016 New address element. (211187 lines)
Version 16.104: Dec 19, 2016 Change in checkbox to confirm that I have read a course info.
Changes in layout of lists. (211183 lines)
Version 16.103.7: Dec 18, 2016 Change in checkbox to force students to read couse info. (211206 lines)

View File

@ -1572,7 +1572,7 @@ static void Lay_WriteAboutZone (void)
extern const char *Txt_Questions_and_problems;
/***** Start about zone *****/
fprintf (Gbl.F.Out,"<footer id=\"about_zone\" class=\"ABOUT\">");
fprintf (Gbl.F.Out,"<address id=\"about_zone\" class=\"ABOUT\">");
/***** Institution and centre hosting the platform *****/
fprintf (Gbl.F.Out,"<a href=\"%s\" class=\"ABOUT\" target=\"_blank\">"
@ -1588,7 +1588,7 @@ static void Lay_WriteAboutZone (void)
Cfg_ABOUT_NAME);
/***** Questions and problems *****/
fprintf (Gbl.F.Out,"<div class=\"ABOUT\">"
fprintf (Gbl.F.Out,"<div>"
"%s: "
"<a href=\"mailto:%s\" class=\"ABOUT\" target=\"_blank\">%s</a>"
"</div>",
@ -1611,7 +1611,7 @@ static void Lay_WriteAboutZone (void)
fprintf (Gbl.F.Out,"</div>");
/***** End about zone *****/
fprintf (Gbl.F.Out,"</footer>"); // about_zone
fprintf (Gbl.F.Out,"</address>"); // about_zone
}
/*****************************************************************************/