Version 14.127.5

This commit is contained in:
Antonio Cañas Vargas 2015-09-06 20:02:14 +02:00
parent 5c071e4109
commit d8fa652e88
35 changed files with 443 additions and 436 deletions

View File

@ -45,6 +45,9 @@ table
table th
{
padding:0;
color:#4D88A1;
font-size:10pt;
font-weight:bold;
}
table td
{

View File

@ -44,6 +44,9 @@ table
table th
{
padding:0;
color:#4D88A1;
font-size:14pt;
font-weight:bold;
}
table td
{

View File

@ -161,7 +161,7 @@ static void Asg_ShowAllAssignments (void)
Order <= Asg_ORDER_BY_END_DATE;
Order++)
{
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE\">");
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE\">");
Act_FormStart (ActSeeAsg);
Grp_PutParamWhichGrps ();
Pag_PutHiddenParamPagNum (Gbl.Pag.CurrentPage);
@ -176,13 +176,13 @@ static void Asg_ShowAllAssignments (void)
Act_FormEnd ();
fprintf (Gbl.F.Out,"</th>");
}
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE\">"
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"</tr>",

View File

@ -195,7 +195,7 @@ static void Att_ShowAllAttEvents (void)
Order <= Att_ORDER_BY_END_DATE;
Order++)
{
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE\">");
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE\">");
Act_FormStart (ActSeeAtt);
Grp_PutParamWhichGrps ();
Pag_PutHiddenParamPagNum (Gbl.Pag.CurrentPage);
@ -210,10 +210,10 @@ static void Att_ShowAllAttEvents (void)
Act_FormEnd ();
fprintf (Gbl.F.Out,"</th>");
}
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE\">"
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -1891,10 +1891,10 @@ static void Att_ListAttOnlyMeAsStudent (struct AttendanceEvent *Att)
fprintf (Gbl.F.Out,"<th colspan=\"2\" class=\"TIT_TBL LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -1959,13 +1959,13 @@ static void Att_ListAttStudents (struct AttendanceEvent *Att)
"<th></th>");
if (Gbl.Usrs.Listing.WithPhotos)
fprintf (Gbl.F.Out,"<th style=\"width:18px;\"></th>");
fprintf (Gbl.F.Out,"<th colspan=\"2\" class=\"TIT_TBL LEFT_MIDDLE\">"
fprintf (Gbl.F.Out,"<th colspan=\"2\" class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -2937,10 +2937,10 @@ static void Att_ListEventsToSelect (void)
/***** Heading row *****/
fprintf (Gbl.F.Out,"<tr>"
"<th colspan=\"2\" class=\"TIT_TBL LEFT_MIDDLE\">"
"<th colspan=\"2\" class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -3099,7 +3099,7 @@ static void Att_WriteTableHeadSeveralAttEvents (void)
unsigned NumAttEvent;
fprintf (Gbl.F.Out,"<tr>"
"<th colspan=\"%u\" class=\"TIT_TBL LEFT_MIDDLE\">"
"<th colspan=\"%u\" class=\"LEFT_MIDDLE\">"
"%s"
"</th>",
Gbl.Usrs.Listing.WithPhotos ? 4 :
@ -3114,14 +3114,14 @@ static void Att_WriteTableHeadSeveralAttEvents (void)
/***** Get data of this attendance event *****/
Att_GetDataOfAttEventByCodAndCheckCrs (&Gbl.AttEvents.Lst[NumAttEvent]);
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL CENTER_MIDDLE\" title=\"%s\">"
fprintf (Gbl.F.Out,"<th class=\"CENTER_MIDDLE\" title=\"%s\">"
"%u"
"</th>",
Gbl.AttEvents.Lst[NumAttEvent].Title,
NumAttEvent + 1);
}
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
fprintf (Gbl.F.Out,"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",

View File

@ -791,11 +791,11 @@ static void Ban_PutHeadBanners (void)
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"BM\"></th>"
"<th class=\"BM\"></th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">%s</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">%s</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">%s</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">%s</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">%s</th>"
"<th class=\"RIGHT_MIDDLE\">%s</th>"
"<th class=\"LEFT_MIDDLE\">%s</th>"
"<th class=\"LEFT_MIDDLE\">%s</th>"
"<th class=\"LEFT_MIDDLE\">%s</th>"
"<th class=\"LEFT_MIDDLE\">%s</th>"
"</tr>",
Txt_Code,
Txt_Short_name,

View File

@ -141,10 +141,10 @@ void Ctr_SeeCtrWithPendingDegs (void)
Lay_StartRoundFrameTable (NULL,2,Txt_Centres_with_pending_degrees);
fprintf (Gbl.F.Out,"<tr>"
"<th></th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -2068,7 +2068,7 @@ static void Ctr_PutHeadCentresForSeeing (bool OrderSelectable)
fprintf (Gbl.F.Out,"<tr>"
"<th></th>"
"<th class=\"BM\"></th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>",
Txt_Place);
@ -2076,7 +2076,7 @@ static void Ctr_PutHeadCentresForSeeing (bool OrderSelectable)
Order <= Ctr_ORDER_BY_NUM_TCHS;
Order++)
{
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE\">");
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE\">");
if (OrderSelectable)
{
Act_FormStart (ActSeeCtr);
@ -2095,10 +2095,10 @@ static void Ctr_PutHeadCentresForSeeing (bool OrderSelectable)
}
fprintf (Gbl.F.Out,"</th>");
}
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
fprintf (Gbl.F.Out,"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -2125,35 +2125,35 @@ static void Ctr_PutHeadCentresForEdition (void)
fprintf (Gbl.F.Out,"<tr>"
"<th></th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th style=\"width:20px;\"></th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -2417,7 +2417,7 @@ unsigned Ctr_ListCtrsFound (const char *Query)
/* Number of centres found */
fprintf (Gbl.F.Out,"<tr>"
"<th colspan=\"7\" class=\"TIT_TBL CENTER_MIDDLE\">");
"<th colspan=\"7\" class=\"CENTER_MIDDLE\">");
if (NumCtrs == 1)
fprintf (Gbl.F.Out,"1 %s",Txt_centre);
else

View File

@ -103,11 +103,12 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 14.127.4 (2015/09/06)"
#define Log_PLATFORM_VERSION "SWAD 14.127.5 (2015/09/06)"
// 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.127.5: Sep 06, 2015 Changes in styles. (184252 lines)
Version 14.127.4: Sep 06, 2015 Changes in styles. (184245 lines)
Version 14.127.3: Sep 06, 2015 Changes in styles. (184219 lines)
Version 14.127.2: Sep 06, 2015 Changes in styles. (184244 lines)

View File

@ -256,10 +256,10 @@ void Cht_ShowListOfChatRoomsWithUsrs (void)
/***** Table start *****/
Lay_StartRoundFrameTable (NULL,2,Txt_Rooms_with_users);
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL CENTER_MIDDLE LIGHT_BLUE\">"
"<th class=\"CENTER_MIDDLE LIGHT_BLUE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE LIGHT_BLUE\">"
"<th class=\"LEFT_MIDDLE LIGHT_BLUE\">"
"%s"
"</th>"
"</tr>",

View File

@ -178,23 +178,23 @@ void Con_GetAndShowLastClicks (void)
/***** Write list of connected users *****/
fprintf (Gbl.F.Out,"<table class=\"TABLE10\">"
"<tr>"
"<th class=\"TIT_TBL LEFT_MIDDLE\""
"<th class=\"LEFT_MIDDLE\""
" style=\"width:70px;\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\""
"<th class=\"LEFT_MIDDLE\""
" style=\"width:60px;\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\""
"<th class=\"LEFT_MIDDLE\""
" style=\"width:100px;\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\""
"<th class=\"LEFT_MIDDLE\""
" style=\"width:150px;\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\""
"<th class=\"LEFT_MIDDLE\""
" style=\"width:220px;\">"
"%s"
"</th>"

View File

@ -119,10 +119,10 @@ void Cty_SeeCtyWithPendingInss (void)
Lay_StartRoundFrameTable (NULL,2,Txt_Countries_with_pending_institutions);
fprintf (Gbl.F.Out,"<tr>"
"<th></th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -497,7 +497,7 @@ void Cty_ListCountries2 (void)
Order <= Cty_ORDER_BY_NUM_USRS;
Order++)
{
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE\">");
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE\">");
Act_FormStart (ActSeeCty);
Par_PutHiddenParamUnsigned ("Order",(unsigned) Order);
Act_LinkFormSubmit (Txt_COUNTRIES_HELP_ORDER[Order],"TIT_TBL");
@ -510,13 +510,13 @@ void Cty_ListCountries2 (void)
Act_FormEnd ();
fprintf (Gbl.F.Out,"</th>");
}
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
fprintf (Gbl.F.Out,"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -1707,23 +1707,23 @@ static void Cty_PutHeadCountries (void)
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"BM\"></th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th></th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",

View File

@ -1818,25 +1818,25 @@ static void Crs_PutHeadCoursesForSeeing (void)
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"BM\"></th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -1869,37 +1869,37 @@ static void Crs_PutHeadCoursesForEdition (void)
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"BM\"></th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -3110,22 +3110,22 @@ void Crs_GetAndWriteCrssOfAUsr (long UsrCod,Rol_Role_t Role)
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"BM\"></th>"
"<th class=\"BM\"></th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -3185,7 +3185,7 @@ unsigned Crs_ListCrssFound (const char *Query)
/* Number of courses found */
fprintf (Gbl.F.Out,"<tr>"
"<th colspan=\"7\" class=\"TIT_TBL CENTER_MIDDLE\">");
"<th colspan=\"7\" class=\"CENTER_MIDDLE\">");
if (NumCrss == 1)
fprintf (Gbl.F.Out,"1 %s",Txt_course);
else
@ -3196,22 +3196,22 @@ unsigned Crs_ListCrssFound (const char *Query)
/* Heading row */
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"BM\"></th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",

View File

@ -191,10 +191,10 @@ void Deg_SeeDegWithPendingCrss (void)
Lay_StartRoundFrameTable (NULL,2,Txt_Degrees_with_pending_courses);
fprintf (Gbl.F.Out,"<tr>"
"<th></th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -1724,10 +1724,10 @@ static void Deg_PutFormToCreateDegType (void)
/***** Write heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -1927,13 +1927,13 @@ static void Deg_PutHeadDegreeTypesForSeeing (void)
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"BM\"></th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -1955,16 +1955,16 @@ static void Deg_PutHeadDegreeTypesForEdition (void)
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"BM\"></th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -1992,25 +1992,25 @@ static void Deg_PutHeadDegreesForSeeing (void)
"<th class=\"BM\"></th>"
"<th></th>"
"<th></th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -2044,41 +2044,41 @@ static void Deg_PutHeadDegreesForEdition (void)
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"BM\"></th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th style=\"width:20px;\"></th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -3998,8 +3998,7 @@ unsigned Deg_ListDegsFound (const char *Query)
/* Number of degrees found */
fprintf (Gbl.F.Out,"<tr>"
"<td colspan=\"10\""
" class=\"TIT_TBL CENTER_MIDDLE\"\">");
"<td colspan=\"10\" class=\"CENTER_MIDDLE\"\">");
if (NumDegs == 1)
fprintf (Gbl.F.Out,"1 %s",Txt_degree);
else

View File

@ -106,7 +106,7 @@ void Dpt_SeeDepts (void)
Order <= Dpt_ORDER_BY_NUM_TCHS;
Order++)
{
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE\">");
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE\">");
Act_FormStart (ActSeeDpt);
Par_PutHiddenParamUnsigned ("Order",(unsigned) Order);
Act_LinkFormSubmit (Txt_DEPARTMENTS_HELP_ORDER[Order],"TIT_TBL");
@ -874,16 +874,16 @@ static void Dpt_PutFormToCreateDepartment (void)
/***** Write heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -951,24 +951,24 @@ static void Dpt_PutHeadDepartments (void)
extern const char *Txt_Teachers_ABBREVIATION;
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",

View File

@ -2372,19 +2372,19 @@ void Enr_ShowEnrollmentRequests (void)
Lay_StartRoundFrameTable (NULL,2,NULL);
fprintf (Gbl.F.Out,"<tr>"
"<th></th>"
"<th class=\"TIT_TBL LEFT_TOP\">"
"<th class=\"LEFT_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_TOP\">"
"<th class=\"RIGHT_TOP\">"
"%s"
"</th>"
"<th colspan=\"2\" class=\"TIT_TBL LEFT_TOP\">"
"<th colspan=\"2\" class=\"LEFT_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_TOP\">"
"<th class=\"LEFT_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s"
"</th>"
"<th></th>"

View File

@ -10846,7 +10846,7 @@ unsigned Brw_ListDocsFound (const char *Query,const char *Title)
/* Write header with number of documents found */
fprintf (Gbl.F.Out,"<tr>"
"<th colspan=\"7\" class=\"TIT_TBL CENTER_MIDDLE\">");
"<th colspan=\"7\" class=\"CENTER_MIDDLE\">");
if (NumDocs == 1)
fprintf (Gbl.F.Out,"1 %s",Txt_document);
else
@ -10857,22 +10857,22 @@ unsigned Brw_ListDocsFound (const char *Query,const char *Title)
/* Heading row */
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"BM\"></th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -10898,7 +10898,7 @@ unsigned Brw_ListDocsFound (const char *Query,const char *Title)
/***** Write footer *****/
/* Number of documents not hidden found */
fprintf (Gbl.F.Out,"<tr>"
"<th colspan=\"7\" class=\"TIT_TBL CENTER_MIDDLE\">"
"<th colspan=\"7\" class=\"CENTER_MIDDLE\">"
"(");
NumDocsHidden = NumDocs - NumDocsNotHidden;
if (NumDocsHidden == 1)

View File

@ -2490,13 +2490,13 @@ void For_ShowForumThrs (void)
/***** Heading row *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL LEFT_MIDDLE\""
"<th class=\"LEFT_MIDDLE\""
" style=\"width:14px;\">"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\""
"<th class=\"LEFT_MIDDLE\""
" style=\"width:18px;\">"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>",
Txt_MSG_Subject);
@ -2520,16 +2520,16 @@ void For_ShowForumThrs (void)
Act_FormEnd ();
fprintf (Gbl.F.Out,"</th>");
}
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
fprintf (Gbl.F.Out,"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",

View File

@ -1258,19 +1258,19 @@ static void Grp_WriteHeadingGroupTypes (void)
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"BM\"></th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s<br />(%s)"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -1434,16 +1434,16 @@ static void Grp_WriteHeadingGroups (void)
"<th class=\"BM\"></th>"
"<th class=\"BM\"></th>"
"<th class=\"BM\"></th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s<br />(%s)"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -1930,16 +1930,16 @@ static void Grp_WriteGrpHead (struct GroupType *GrpTyp)
/***** Head row with title of each column *****/
fprintf (Gbl.F.Out,"<tr>"
"<th colspan=\"2\"></th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"</tr>",

View File

@ -102,7 +102,7 @@ void Hld_SeeHolidays (void)
Order <= Hld_ORDER_BY_START_DATE;
Order++)
{
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL CENTER_MIDDLE\">");
fprintf (Gbl.F.Out,"<th class=\"CENTER_MIDDLE\">");
Act_FormStart (ActSeeHld);
Par_PutHiddenParamUnsigned ("Order",(unsigned) Order);
Act_LinkFormSubmit (Txt_HOLIDAYS_HELP_ORDER[Order],"TIT_TBL");
@ -115,10 +115,10 @@ void Hld_SeeHolidays (void)
Act_FormEnd ();
fprintf (Gbl.F.Out,"</th>");
}
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL CENTER_MIDDLE\">"
fprintf (Gbl.F.Out,"<th class=\"CENTER_MIDDLE\">"
"&nbsp;%s&nbsp;"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -912,19 +912,19 @@ static void Hld_PutFormToCreateHoliday (void)
/***** Write heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -1015,22 +1015,22 @@ static void Hld_PutHeadHolidays (void)
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"BM\"></th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"</tr>",

View File

@ -511,7 +511,7 @@ static unsigned Imp_GetAndListImpGrpsAndStdsFromDB (bool ItsAFormToRegRemStds)
/***** Start table with groups *****/
Lay_StartRoundFrameTable (NULL,2,NULL);
fprintf (Gbl.F.Out,"<tr>"
"<th colspan=\"%u\" class=\"TIT_TBL CENTER_TOP\">",
"<th colspan=\"%u\" class=\"CENTER_TOP\">",
ItsAFormToRegRemStds ? 3 :
2);
Lay_WriteTitle (Txt_Official_students);

View File

@ -1184,10 +1184,10 @@ static void Ind_ShowTableOfCoursesWithIndicators (Ind_IndicatorsLayout_t Indicat
fprintf (Gbl.F.Out,"<table class=\"CELLS_PAD_2\""
" style=\"margin:0 auto;\">"
"<tr>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th colspan=\"2\" class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th colspan=\"2\" class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",

View File

@ -131,10 +131,10 @@ void Ins_SeeInsWithPendingCtrs (void)
Lay_StartRoundFrameTable (NULL,2,Txt_Institutions_with_pending_centres);
fprintf (Gbl.F.Out,"<tr>"
"<th></th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -607,7 +607,7 @@ static void Ins_PutHeadInstitutionsForSeeing (bool OrderSelectable)
Order <= Ins_ORDER_BY_NUM_USRS;
Order++)
{
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE\">");
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE\">");
if (OrderSelectable)
{
Act_FormStart (ActSeeIns);
@ -626,22 +626,22 @@ static void Ins_PutHeadInstitutionsForSeeing (bool OrderSelectable)
}
fprintf (Gbl.F.Out,"</th>");
}
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
fprintf (Gbl.F.Out,"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -1822,32 +1822,32 @@ static void Ins_PutHeadInstitutionsForEdition (void)
fprintf (Gbl.F.Out,"<tr>"
"<th></th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th style=\"width:20px;\"></th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -2084,7 +2084,7 @@ unsigned Ins_ListInssFound (const char *Query)
/* Number of institutions found */
fprintf (Gbl.F.Out,"<tr>"
"<th colspan=\"10\" class=\"TIT_TBL CENTER_MIDDLE\">");
"<th colspan=\"10\" class=\"CENTER_MIDDLE\">");
if (NumInss == 1)
fprintf (Gbl.F.Out,"1 %s",Txt_institution);
else

View File

@ -673,16 +673,16 @@ static void Lnk_PutHeadLinks (void)
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"BM\"></th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"</tr>",

View File

@ -107,7 +107,7 @@ void Mai_SeeMailDomains (void)
Order <= Mai_ORDER_BY_USERS;
Order++)
{
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE\">");
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE\">");
Act_FormStart (ActSeeMai);
Par_PutHiddenParamUnsigned ("Order",(unsigned) Order);
Act_LinkFormSubmit (Txt_MAIL_DOMAIN_HELP_ORDER[Order],"TIT_TBL");
@ -642,10 +642,10 @@ static void Mai_PutFormToCreateMailDomain (void)
/***** Write heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -686,16 +686,16 @@ static void Mai_PutHeadMailDomains (void)
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"BM\"></th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",

View File

@ -384,7 +384,7 @@ void Msg_WriteFormUsrsIDsOrNicksOtherRecipients (bool IsReply)
/***** Textarea with users' @nicknames, e-mails or IDs *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL LEFT_MIDDLE LIGHT_BLUE\"");
"<th class=\"LEFT_MIDDLE LIGHT_BLUE\"");
if (Gbl.Usrs.Me.IBelongToCurrentCrs || // If there is a course selected and I belong to it
Gbl.Usrs.Me.LoggedRole == Rol_SYS_ADM)
fprintf (Gbl.F.Out," colspan=\"%u\">%s:",

View File

@ -439,13 +439,13 @@ void Net_ShowWebAndSocialNetworksStats (void)
Lay_StartRoundFrameTable (NULL,2,Txt_STAT_USE_STAT_TYPES[Sta_SOCIAL_NETWORKS]);
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",

View File

@ -317,19 +317,19 @@ void Ntf_ShowMyNotifications (void)
/***** Table start *****/
Lay_StartRoundFrameTable (NULL,2,Txt_Notifications);
fprintf (Gbl.F.Out,"<tr>"
"<th colspan=\"2\" class=\"TIT_TBL LEFT_MIDDLE\">"
"<th colspan=\"2\" class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th colspan=\"2\" class=\"TIT_TBL LEFT_MIDDLE\">"
"<th colspan=\"2\" class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -1689,10 +1689,10 @@ void Ntf_PutFormChangeNotifSentByEMail (void)
Lay_StartRoundFrameTable (NULL,2,Txt_Notifications);
fprintf (Gbl.F.Out,"<tr>"
"<th></th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"</tr>",

View File

@ -1957,10 +1957,10 @@ static void Pho_ShowOrPrintListDegrees (Pho_AvgPhotoSeeOrPrint_t SeeOrPrint)
/***** Write heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL RIGHT_TOP\">"
"<th class=\"RIGHT_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s"
"</th>",
Txt_No_INDEX,
@ -1968,7 +1968,7 @@ static void Pho_ShowOrPrintListDegrees (Pho_AvgPhotoSeeOrPrint_t SeeOrPrint)
for (Sex = (Usr_Sex_t) 0;
Sex < Usr_NUM_SEXS;
Sex++)
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL CENTER_TOP\">"
fprintf (Gbl.F.Out,"<th class=\"CENTER_TOP\">"
"%s"
"</th>",
Txt_SEX_PLURAL_Abc[Sex]);

View File

@ -103,7 +103,7 @@ void Plc_SeePlaces (void)
Order <= Plc_ORDER_BY_NUM_CTRS;
Order++)
{
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE\">");
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE\">");
Act_FormStart (ActSeePlc);
Par_PutHiddenParamUnsigned ("Order",(unsigned) Order);
Act_LinkFormSubmit (Txt_PLACES_HELP_ORDER[Order],"TIT_TBL");
@ -679,10 +679,10 @@ static void Plc_PutFormToCreatePlace (void)
/***** Write heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -724,16 +724,16 @@ static void Plc_PutHeadPlaces (void)
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"BM\"></th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",

View File

@ -101,7 +101,7 @@ void Plg_ListPlugins (void)
fprintf (Gbl.F.Out,"<tr>"
"<th style=\"width:32px;\">"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -840,22 +840,22 @@ static void Plg_PutFormToCreatePlugin (void)
/***** Write heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -926,26 +926,26 @@ static void Plg_PutHeadPlugins (void)
fprintf (Gbl.F.Out,"<tr>"
"<th></th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th style=\"width:28px;\"></th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"</tr>",

View File

@ -329,13 +329,13 @@ static void Rec_WriteHeadingRecordFields (void)
fprintf (Gbl.F.Out,"<tr>"
"<th></th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"</tr>",

View File

@ -1521,8 +1521,7 @@ static void Sta_ShowDetailedAccessesList (unsigned long NumRows,MYSQL_RES *mysql
Act_FormEnd ();
/* Write number of current page */
fprintf (Gbl.F.Out,"<td class=\"TIT_TBL CENTER_MIDDLE\""
" style=\"width:60%%;\">"
fprintf (Gbl.F.Out,"<td class=\"CENTER_MIDDLE\" style=\"width:60%%;\">"
"<strong>"
"%s %lu-%lu %s %lu (%s %ld %s %lu)"
"</strong>"
@ -1563,25 +1562,25 @@ static void Sta_ShowDetailedAccessesList (unsigned long NumRows,MYSQL_RES *mysql
/***** Write heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL RIGHT_TOP\">"
"<th class=\"RIGHT_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_TOP\">"
"<th class=\"LEFT_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_TOP\">"
"<th class=\"LEFT_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_TOP\" style=\"width:10%%;\">"
"<th class=\"LEFT_TOP\" style=\"width:10%%;\">"
"%s"
"</th>"
"</tr>",
@ -1724,22 +1723,22 @@ static void Sta_ShowNumAccessesPerUsr (unsigned long NumRows,MYSQL_RES *mysql_re
/***** Write heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL RIGHT_TOP\">"
"<th class=\"RIGHT_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_TOP\">"
"<th class=\"LEFT_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s"
"</th>"
"<th colspan=\"2\" class=\"TIT_TBL LEFT_TOP\">"
"<th colspan=\"2\" class=\"LEFT_TOP\">"
"%s"
"</th>"
"</tr>",
@ -1850,13 +1849,13 @@ static void Sta_ShowNumAccessesPerDays (unsigned long NumRows,MYSQL_RES *mysql_r
/***** Write heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s&nbsp;"
"</th>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s&nbsp;"
"</th>"
"<th class=\"TIT_TBL LEFT_TOP\">"
"<th class=\"LEFT_TOP\">"
"%s"
"</th>"
"</tr>",
@ -2056,13 +2055,13 @@ static void Sta_ShowDistrAccessesPerDaysAndHour (unsigned long NumRows,MYSQL_RES
/***** Write heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th rowspan=\"3\" class=\"TIT_TBL CENTER_TOP\">"
"<th rowspan=\"3\" class=\"CENTER_TOP\">"
"%s&nbsp;"
"</th>"
"<th rowspan=\"3\" class=\"TIT_TBL CENTER_TOP\">"
"<th rowspan=\"3\" class=\"CENTER_TOP\">"
"%s&nbsp;"
"</th>"
"<th colspan=\"24\" class=\"TIT_TBL LEFT_TOP\""
"<th colspan=\"24\" class=\"LEFT_TOP\""
" style=\"width:%upx;\">"
"%s"
"</th>"
@ -2432,10 +2431,10 @@ static void Sta_ShowNumAccessesPerWeeks (unsigned long NumRows,MYSQL_RES *mysql_
/***** Write heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s&nbsp;"
"</th>"
"<th class=\"TIT_TBL LEFT_TOP\">"
"<th class=\"LEFT_TOP\">"
"%s"
"</th>"
"</tr>",
@ -2537,10 +2536,10 @@ static void Sta_ShowNumAccessesPerMonths (unsigned long NumRows,MYSQL_RES *mysql
/***** Write heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s&nbsp;"
"</th>"
"<th class=\"TIT_TBL LEFT_TOP\">"
"<th class=\"LEFT_TOP\">"
"%s"
"</th>"
"</tr>",
@ -2950,10 +2949,10 @@ static void Sta_ShowNumAccessesPerAction (unsigned long NumRows,MYSQL_RES *mysql
/***** Write heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL RIGHT_TOP\">"
"<th class=\"RIGHT_TOP\">"
"%s&nbsp;"
"</th>"
"<th class=\"TIT_TBL LEFT_TOP\">"
"<th class=\"LEFT_TOP\">"
"%s"
"</th>"
"</tr>",
@ -3020,10 +3019,10 @@ static void Sta_ShowNumAccessesPerPlugin (unsigned long NumRows,MYSQL_RES *mysql
/***** Write heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL RIGHT_TOP\">"
"<th class=\"RIGHT_TOP\">"
"%s&nbsp;"
"</th>"
"<th class=\"TIT_TBL LEFT_TOP\">"
"<th class=\"LEFT_TOP\">"
"%s"
"</th>"
"</tr>",
@ -3086,10 +3085,10 @@ static void Sta_ShowNumAccessesPerWSFunction (unsigned long NumRows,MYSQL_RES *m
/***** Write heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL LEFT_TOP\">"
"<th class=\"LEFT_TOP\">"
"%s&nbsp;"
"</th>"
"<th class=\"TIT_TBL LEFT_TOP\">"
"<th class=\"LEFT_TOP\">"
"%s"
"</th>"
"</tr>",
@ -3150,10 +3149,10 @@ static void Sta_ShowNumAccessesPerBanner (unsigned long NumRows,MYSQL_RES *mysql
/***** Write heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s&nbsp;"
"</th>"
"<th class=\"TIT_TBL LEFT_TOP\">"
"<th class=\"LEFT_TOP\">"
"%s"
"</th>"
"</tr>",
@ -3225,13 +3224,13 @@ static void Sta_ShowNumAccessesPerDegree (unsigned long NumRows,MYSQL_RES *mysql
/***** Write heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_TOP\">"
"<th class=\"LEFT_TOP\">"
"%s"
"</th>"
"</tr>",
@ -3307,19 +3306,19 @@ static void Sta_ShowNumAccessesPerCourse (unsigned long NumRows,MYSQL_RES *mysql
/***** Write heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_TOP\">"
"<th class=\"LEFT_TOP\">"
"%s"
"</th>"
"</tr>",
@ -3696,16 +3695,16 @@ static void Sta_GetAndShowUsersStats (void)
Lay_StartRoundFrameTable (NULL,2,Txt_STAT_USE_STAT_TYPES[Sta_USERS]);
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -3738,22 +3737,22 @@ static void Sta_GetAndShowUsersRanking (void)
/***** Header *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -3824,25 +3823,25 @@ static void Sta_WriteHeadDegsCrssInSWAD (void)
fprintf (Gbl.F.Out,"<tr>"
"<th></th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -4734,10 +4733,10 @@ static void Sta_GetAndShowInss (const char *Query,const char *TxtFigure)
{
fprintf (Gbl.F.Out,"<tr>"
"<th></th>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -4973,46 +4972,46 @@ static void Sta_WriteStatsExpTreesTableHead (void)
extern const char *Txt_usr;
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s/<br />%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s/<br />%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s/<br />%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s/<br />%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s/<br />%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s/<br />%s"
"</th>"
"</tr>",
@ -5773,13 +5772,13 @@ static void Sta_GetAndShowOERsStats (void)
/***** Write table heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -5958,16 +5957,16 @@ static void Sta_GetAndShowAssignmentsStats (void)
/***** Write table heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -6026,31 +6025,31 @@ static void Sta_GetAndShowTestsStats (void)
/***** Write table heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -6197,19 +6196,19 @@ static void Sta_GetAndShowNumUsrsPerNotifyEvent (void)
/***** Heading row *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -6532,19 +6531,19 @@ static void Sta_GetAndShowNoticesStats (void)
/***** Write table heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -6613,19 +6612,19 @@ static void Sta_GetAndShowMsgsStats (void)
/***** Write table heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -6718,28 +6717,28 @@ static void Sta_GetAndShowForumStats (void)
" alt=\"%s\" title=\"%s\""
" class=\"ICON16x16\" />"
"</th>"
"<th class=\"TIT_TBL LEFT_TOP\">"
"<th class=\"LEFT_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_TOP\">"
"<th class=\"RIGHT_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_TOP\">"
"<th class=\"RIGHT_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_TOP\">"
"<th class=\"RIGHT_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_TOP\">"
"<th class=\"RIGHT_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_TOP\">"
"<th class=\"RIGHT_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_TOP\">"
"<th class=\"RIGHT_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_TOP\">"
"<th class=\"RIGHT_TOP\">"
"%s"
"</th>"
"</tr>",
@ -7067,19 +7066,19 @@ static void Sta_GetAndShowSurveysStats (void)
/***** Write table heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -7156,13 +7155,13 @@ static void Sta_GetAndShowNumUsrsPerPrivacyForAnObject (const char *TxtObject,co
/***** Heading row *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -7296,13 +7295,13 @@ static void Sta_GetAndShowNumUsrsPerLanguage (void)
/***** Heading row *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -7432,13 +7431,13 @@ static void Sta_GetAndShowNumUsrsPerLayout (void)
/***** Heading row *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -7568,13 +7567,13 @@ static void Sta_GetAndShowNumUsrsPerTheme (void)
/***** Heading row *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -7704,13 +7703,13 @@ static void Sta_GetAndShowNumUsrsPerIconSet (void)
/***** Heading row *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -7842,13 +7841,13 @@ static void Sta_GetAndShowNumUsrsPerMenu (void)
/***** Heading row *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL LEFT_MIDDLE\">"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -7977,13 +7976,13 @@ static void Sta_GetAndShowNumUsrsPerSideColumns (void)
/***** Heading row *****/
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_MIDDLE\">"
"<th class=\"RIGHT_MIDDLE\">"
"%s"
"</th>"
"</tr>",

View File

@ -216,7 +216,7 @@ static void Svy_ListAllSurveys (struct SurveyQuestion *SvyQst)
Order <= Svy_ORDER_BY_END_DATE;
Order++)
{
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL CENTER_MIDDLE\">");
fprintf (Gbl.F.Out,"<th class=\"CENTER_MIDDLE\">");
Act_FormStart (ActSeeAllSvy);
Grp_PutParamWhichGrps ();
Pag_PutHiddenParamPagNum (Gbl.Pag.CurrentPage);
@ -231,10 +231,10 @@ static void Svy_ListAllSurveys (struct SurveyQuestion *SvyQst)
Act_FormEnd ();
fprintf (Gbl.F.Out,"</th>");
}
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL CENTER_MIDDLE\">"
fprintf (Gbl.F.Out,"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_MIDDLE\">"
"<th class=\"CENTER_MIDDLE\">"
"%s"
"</th>"
"</tr>",
@ -2948,13 +2948,13 @@ static void Svy_ListSvyQuestions (struct Survey *Svy,struct SurveyQuestion *SvyQ
fprintf (Gbl.F.Out,"<tr>");
if (Svy->Status.ICanEdit)
fprintf (Gbl.F.Out,"<th colspan=\"2\"></th>");
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL CENTER_TOP\">"
fprintf (Gbl.F.Out,"<th class=\"CENTER_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_TOP\">"
"<th class=\"LEFT_TOP\">"
"%s"
"</th>"
"</tr>",

View File

@ -2408,22 +2408,22 @@ static void Tst_ListOneOrMoreQuestionsToEdit (unsigned long NumRows,MYSQL_RES *m
/***** Write the heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th colspan=\"2\"></th>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_TOP\">"
"<th class=\"LEFT_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s"
"</th>",
Txt_No_INDEX,
@ -2440,7 +2440,7 @@ static void Tst_ListOneOrMoreQuestionsToEdit (unsigned long NumRows,MYSQL_RES *m
Order < (Tst_QuestionsOrder_t) Tst_NUM_TYPES_ORDER_QST;
Order++)
{
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_TOP\">");
fprintf (Gbl.F.Out,"<th class=\"LEFT_TOP\">");
if (NumRows > 1)
{
Act_FormStart (ActLstTstQst);
@ -6077,25 +6077,25 @@ static void Tst_ShowHeaderTestResults (void)
extern const char *Txt_out_of_PART_OF_A_SCORE;
fprintf (Gbl.F.Out,"<tr>"
"<th colspan=\"2\" class=\"TIT_TBL CENTER_TOP\">"
"<th colspan=\"2\" class=\"CENTER_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_TOP\">"
"<th class=\"RIGHT_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_TOP\">"
"<th class=\"RIGHT_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_TOP\">"
"<th class=\"RIGHT_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_TOP\">"
"<th class=\"RIGHT_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_TOP\">"
"<th class=\"RIGHT_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL RIGHT_TOP\">"
"<th class=\"RIGHT_TOP\">"
"%s<br />%s<br />%u"
"</th>"
"<th></th>"

View File

@ -950,19 +950,19 @@ static void TsI_WriteHeadingListImportedQst (void)
/***** Write the heading *****/
fprintf (Gbl.F.Out,"<tr>"
"<th></th>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL CENTER_TOP\">"
"<th class=\"CENTER_TOP\">"
"%s"
"</th>"
"<th class=\"TIT_TBL LEFT_TOP\">"
"<th class=\"LEFT_TOP\">"
"%s"
"</th>"
"</tr>",

View File

@ -4865,16 +4865,18 @@ void Usr_PutCheckboxToSelectAllTheUsers (Rol_Role_t Role)
Usr_Sex_t Sex;
fprintf (Gbl.F.Out,"<tr>"
"<th colspan=\"%u\" class=\"TIT_TBL LEFT_MIDDLE LIGHT_BLUE\">",
"<th colspan=\"%u\" class=\"LEFT_MIDDLE LIGHT_BLUE\">",
Usr_GetColumnsForSelectUsrs ());
if (Role == Rol_STUDENT)
{
fprintf (Gbl.F.Out,"<input type=\"checkbox\" name=\"SEL_UNSEL_STDS\" value=\"\" onclick=\"togglecheckChildren(this,'UsrCodStd')\" />");
fprintf (Gbl.F.Out,"<input type=\"checkbox\" name=\"SEL_UNSEL_STDS\" value=\"\""
" onclick=\"togglecheckChildren(this,'UsrCodStd')\" />");
LstUsrs = &Gbl.Usrs.LstStds;
}
else
{
fprintf (Gbl.F.Out,"<input type=\"checkbox\" name=\"SEL_UNSEL_TCHS\" value=\"\" onclick=\"togglecheckChildren(this,'UsrCodTch')\" />");
fprintf (Gbl.F.Out,"<input type=\"checkbox\" name=\"SEL_UNSEL_TCHS\" value=\"\""
" onclick=\"togglecheckChildren(this,'UsrCodTch')\" />");
LstUsrs = &Gbl.Usrs.LstTchs;
}
Sex = Usr_GetSexOfUsrsLst (LstUsrs);
@ -5007,7 +5009,7 @@ static void Usr_ListMainDataGsts (bool PutCheckBoxToSelectUsr)
/* First column used for selection */
if (PutCheckBoxToSelectUsr)
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE LIGHT_BLUE\">"
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE LIGHT_BLUE\">"
"&nbsp;"
"</th>");
@ -5016,7 +5018,7 @@ static void Usr_ListMainDataGsts (bool PutCheckBoxToSelectUsr)
NumCol < Usr_NUM_MAIN_FIELDS_DATA_USR;
NumCol++)
if (NumCol != 2 || Gbl.Usrs.Listing.WithPhotos) // Skip photo column if I don't want this column
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE LIGHT_BLUE\">"
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE LIGHT_BLUE\">"
"%s&nbsp;"
"</th>",
Usr_UsrDatMainFieldNames[NumCol]);
@ -5090,7 +5092,7 @@ static void Usr_ListMainDataStds (bool PutCheckBoxToSelectUsr)
/* First column used for selection */
if (PutCheckBoxToSelectUsr)
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE LIGHT_BLUE\">"
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE LIGHT_BLUE\">"
"&nbsp;"
"</th>");
@ -5099,7 +5101,7 @@ static void Usr_ListMainDataStds (bool PutCheckBoxToSelectUsr)
NumCol < Usr_NUM_MAIN_FIELDS_DATA_USR;
NumCol++)
if (NumCol != 2 || Gbl.Usrs.Listing.WithPhotos) // Skip photo column if I don't want this column
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE LIGHT_BLUE\">"
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE LIGHT_BLUE\">"
"%s&nbsp;"
"</th>",
Usr_UsrDatMainFieldNames[NumCol]);
@ -5161,7 +5163,7 @@ static void Usr_ListMainDataTchs (bool PutCheckBoxToSelectUsr)
/* First column used for selection */
if (PutCheckBoxToSelectUsr)
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE LIGHT_BLUE\">"
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE LIGHT_BLUE\">"
"&nbsp;"
"</th>");
@ -5170,7 +5172,7 @@ static void Usr_ListMainDataTchs (bool PutCheckBoxToSelectUsr)
NumCol < NumColumns;
NumCol++)
if (NumCol != 2 || Gbl.Usrs.Listing.WithPhotos) // Skip photo column if I don't want this column
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE LIGHT_BLUE\">"
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE LIGHT_BLUE\">"
"%s&nbsp;"
"</th>",
Usr_UsrDatMainFieldNames[NumCol]);
@ -5276,7 +5278,7 @@ void Usr_ListAllDataGsts (void)
1);
NumCol < NumColumnsCommonCard;
NumCol++)
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE LIGHT_BLUE\">"
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE LIGHT_BLUE\">"
"%s&nbsp;"
"</th>",
FieldNames[NumCol]);
@ -5422,7 +5424,7 @@ void Usr_ListAllDataStds (void)
1);
NumCol < NumColumnsCommonCard;
NumCol++)
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE LIGHT_BLUE\">"
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE LIGHT_BLUE\">"
"%s&nbsp;"
"</th>",
FieldNames[NumCol]);
@ -5435,7 +5437,7 @@ void Usr_ListAllDataStds (void)
NumGrpTyp < Gbl.CurrentCrs.Grps.GrpTypes.Num;
NumGrpTyp++)
if (Gbl.CurrentCrs.Grps.GrpTypes.LstGrpTypes[NumGrpTyp].NumGrps) // If current course tiene groups of este type
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE LIGHT_BLUE\">"
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE LIGHT_BLUE\">"
"%s %s&nbsp;"
"</th>",
Txt_Group,
@ -5447,7 +5449,7 @@ void Usr_ListAllDataStds (void)
for (NumField = 0;
NumField < Gbl.CurrentCrs.Records.LstFields.Num;
NumField++)
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE LIGHT_BLUE\">"
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE LIGHT_BLUE\">"
"%s&nbsp;"
"</th>",
Gbl.CurrentCrs.Records.LstFields.Lst[NumField].Name);
@ -5464,7 +5466,7 @@ void Usr_ListAllDataStds (void)
for (NumField = 0;
NumField < Gbl.CurrentCrs.Records.LstFields.Num;
NumField++)
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE VERY_LIGHT_BLUE\">"
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE VERY_LIGHT_BLUE\">"
"(%s)&nbsp;"
"</th>",
Txt_RECORD_FIELD_VISIBILITY_RECORD[Gbl.CurrentCrs.Records.LstFields.Lst[NumField].Visibility]);
@ -5529,7 +5531,7 @@ void Usr_ListUsrsForSelection (Rol_Role_t Role)
/***** Heading row with column names *****/
/* Start row and first column used for selection */
fprintf (Gbl.F.Out,"<tr>"
"<th class=\"TIT_TBL LEFT_MIDDLE LIGHT_BLUE\">"
"<th class=\"LEFT_MIDDLE LIGHT_BLUE\">"
"&nbsp;"
"</th>");
@ -5538,7 +5540,7 @@ void Usr_ListUsrsForSelection (Rol_Role_t Role)
NumCol < Usr_NUM_MAIN_FIELDS_DATA_USR;
NumCol++)
if (NumCol != 2 || Gbl.Usrs.Listing.WithPhotos) // Skip photo column if I don't want this column
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE LIGHT_BLUE\">"
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE LIGHT_BLUE\">"
"%s&nbsp;"
"</th>",
Usr_UsrDatMainFieldNames[NumCol]);
@ -5652,7 +5654,7 @@ void Usr_ListAllDataTchs (void)
1);
NumCol < NumColumns;
NumCol++)
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE LIGHT_BLUE\">"
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE LIGHT_BLUE\">"
"%s&nbsp;"
"</th>",
FieldNames[NumCol]);
@ -5724,7 +5726,7 @@ unsigned Usr_ListUsrsFound (Rol_Role_t Role,const char *UsrQuery)
/* Number of users found */
fprintf (Gbl.F.Out,"<tr>"
"<th colspan=\"%u\" class=\"TIT_TBL CENTER_MIDDLE\">",
"<th colspan=\"%u\" class=\"CENTER_MIDDLE\">",
Usr_NUM_MAIN_FIELDS_DATA_USR);
if (NumUsrs == 1)
fprintf (Gbl.F.Out,"1 %s",
@ -5742,7 +5744,7 @@ unsigned Usr_ListUsrsFound (Rol_Role_t Role,const char *UsrQuery)
for (NumCol = 0;
NumCol < Usr_NUM_MAIN_FIELDS_DATA_USR;
NumCol++)
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE LIGHT_BLUE\">"
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE LIGHT_BLUE\">"
"%s&nbsp;"
"</th>",
Usr_UsrDatMainFieldNames[NumCol]);
@ -5882,7 +5884,7 @@ void Usr_ListDataAdms (void)
NumCol < NumColumns;
NumCol++)
if (NumCol != 1 || Gbl.Usrs.Listing.WithPhotos) // Skip photo column if I don't want this column
fprintf (Gbl.F.Out,"<th class=\"TIT_TBL LEFT_MIDDLE LIGHT_BLUE\">"
fprintf (Gbl.F.Out,"<th class=\"LEFT_MIDDLE LIGHT_BLUE\">"
"%s&nbsp;"
"</th>",
FieldNames[NumCol]);