Version 17.3.6

This commit is contained in:
Antonio Cañas Vargas 2017-09-19 14:33:57 +02:00
parent 06341e818d
commit 3f85ea33be
3 changed files with 17 additions and 26 deletions

View File

@ -2236,6 +2236,8 @@ a:hover img.CENTRE_PHOTO_SHOW
.ASG_TITLE {color:#4D88A1; font-size:15pt; font-weight:bold;}
.ASG_TITLE_LIGHT {color:#AFC4CC; font-size:15pt; font-weight:bold;}
.ASG_LABEL {color:#4D88A1; font-size:13pt;}
.ASG_LABEL_LIGHT {color:#AFC4CC; font-size:13pt;}
.ASG_GRP {color:#4D88A1; font-size:12pt;}
.ASG_GRP_LIGHT {color:#AFC4CC; font-size:12pt;}

View File

@ -252,13 +252,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 17.3.5 (2017-09-19)"
#define Log_PLATFORM_VERSION "SWAD 17.3.6 (2017-09-19)"
#define CSS_FILE "swad17.0.css"
#define JS_FILE "swad16.206.3.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 17.3.6: Sep 19, 2017 Changes in listing of projects. (229849 lines)
Version 17.3.5: Sep 19, 2017 Removed groups in projects. (229858 lines)
Version 17.3.4: Sep 19, 2017 Changes in edition of projects. (230170 lines)
Version 17.3.3: Sep 19, 2017 Changes in listing of projects. (230169 lines)

View File

@ -138,7 +138,7 @@ static void Prj_ShowAllProjects (void)
Prj_AllocMemProject (&Prj);
/***** Table head *****/
Tbl_StartTableWideMargin (2);
Tbl_StartTableWideMargin (5);
Prj_PutHeadForSeeing (false); // Not print view
/***** Write all the projects *****/
@ -443,21 +443,17 @@ static void Prj_ShowOneProject (struct Project *Prj,bool PrintView)
"<td colspan=\"2\" class=\"RIGHT_TOP");
if (!PrintView)
fprintf (Gbl.F.Out," COLOR%u",Gbl.RowEvenOdd);
fprintf (Gbl.F.Out,"\">"
"<p class=\"%s\">"
fprintf (Gbl.F.Out," %s\">"
"%s:"
"</p>"
"</td>"
"<td colspan=\"2\" class=\"LEFT_TOP",
Prj->Hidden ? "DAT_LIGHT" :
"DAT",
Prj->Hidden ? "ASG_LABEL_LIGHT" :
"ASG_LABEL",
Txt_Description);
if (!PrintView)
fprintf (Gbl.F.Out," COLOR%u",Gbl.RowEvenOdd);
fprintf (Gbl.F.Out,"\">"
"<p class=\"%s\">"
fprintf (Gbl.F.Out," %s\">"
"%s"
"</p>"
"</td>"
"</tr>",
Prj->Hidden ? "DAT_LIGHT" :
@ -473,21 +469,17 @@ static void Prj_ShowOneProject (struct Project *Prj,bool PrintView)
"<td colspan=\"2\" class=\"RIGHT_TOP");
if (!PrintView)
fprintf (Gbl.F.Out," COLOR%u",Gbl.RowEvenOdd);
fprintf (Gbl.F.Out,"\">"
"<p class=\"%s\">"
fprintf (Gbl.F.Out," %s\">"
"%s:"
"</p>"
"</td>"
"<td colspan=\"2\" class=\"LEFT_TOP",
Prj->Hidden ? "DAT_LIGHT" :
"DAT",
Prj->Hidden ? "ASG_LABEL_LIGHT" :
"ASG_LABEL",
Txt_Required_knowledge);
if (!PrintView)
fprintf (Gbl.F.Out," COLOR%u",Gbl.RowEvenOdd);
fprintf (Gbl.F.Out,"\">"
"<p class=\"%s\">"
fprintf (Gbl.F.Out," %s\">"
"%s"
"</p>"
"</td>"
"</tr>",
Prj->Hidden ? "DAT_LIGHT" :
@ -503,21 +495,17 @@ static void Prj_ShowOneProject (struct Project *Prj,bool PrintView)
"<td colspan=\"2\" class=\"RIGHT_TOP");
if (!PrintView)
fprintf (Gbl.F.Out," COLOR%u",Gbl.RowEvenOdd);
fprintf (Gbl.F.Out,"\">"
"<p class=\"%s\">"
fprintf (Gbl.F.Out," %s\">"
"%s:"
"</p>"
"</td>"
"<td colspan=\"2\" class=\"LEFT_TOP",
Prj->Hidden ? "DAT_LIGHT" :
"DAT",
Prj->Hidden ? "ASG_LABEL_LIGHT" :
"ASG_LABEL",
Txt_Required_materials);
if (!PrintView)
fprintf (Gbl.F.Out," COLOR%u",Gbl.RowEvenOdd);
fprintf (Gbl.F.Out,"\">"
"<p class=\"%s\">"
fprintf (Gbl.F.Out," %s\">"
"%s"
"</p>"
"</td>"
"</tr>",
Prj->Hidden ? "DAT_LIGHT" :