Version 16.54.23

This commit is contained in:
Antonio Cañas Vargas 2016-11-13 17:11:56 +01:00
parent acf9ec24db
commit 4f577bb0a9
6 changed files with 23 additions and 9 deletions

View File

@ -113,6 +113,7 @@ static void Ctr_CreateCentre (struct Centre *Ctr,unsigned Status);
void Ctr_SeeCtrWithPendingDegs (void)
{
extern const char *Hlp_SYSTEM_Pending;
extern const char *Txt_Centres_with_pending_degrees;
extern const char *Txt_Centre;
extern const char *Txt_Degrees_ABBREVIATION;
@ -153,8 +154,10 @@ void Ctr_SeeCtrWithPendingDegs (void)
if ((NumCtrs = (unsigned) DB_QuerySELECT (Query,&mysql_res,"can not get centres with pending degrees")))
{
/***** Write heading *****/
Lay_StartRoundFrameTable (NULL,2,Txt_Centres_with_pending_degrees);
fprintf (Gbl.F.Out,"<tr>"
Lay_StartRoundFrame (NULL,Txt_Centres_with_pending_degrees,
NULL,Hlp_SYSTEM_Pending);
fprintf (Gbl.F.Out,"<table class=\"FRAME_TABLE CELLS_PAD_2\">"
"<tr>"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"

View File

@ -156,13 +156,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.54.22 (2016-11-13)"
#define Log_PLATFORM_VERSION "SWAD 16.54.23 (2016-11-13)"
#define CSS_FILE "swad16.51.css"
#define JS_FILE "swad16.46.1.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.54.23: Nov 13, 2016 Contextual help on pending institutions, centres, degrees and courses. (206846 lines)
Version 16.54.22: Nov 13, 2016 Contextual help on course information. (206832 lines)
Version 16.54.21: Nov 13, 2016 Contextual help on degree information. (206826 lines)
Version 16.54.20: Nov 13, 2016 Contextual help on centre information. (206821 lines)

View File

@ -92,6 +92,7 @@ static void Cty_CreateCountry (struct Country *Cty);
void Cty_SeeCtyWithPendingInss (void)
{
extern const char *Hlp_SYSTEM_Pending;
extern const char *Txt_STR_LANG_ID[1+Txt_NUM_LANGUAGES];
extern const char *Txt_Countries_with_pending_institutions;
extern const char *Txt_Country;
@ -126,8 +127,10 @@ void Cty_SeeCtyWithPendingInss (void)
if ((NumCtys = (unsigned) DB_QuerySELECT (Query,&mysql_res,"can not get countries with pending institutions")))
{
/***** Write heading *****/
Lay_StartRoundFrameTable (NULL,2,Txt_Countries_with_pending_institutions);
fprintf (Gbl.F.Out,"<tr>"
Lay_StartRoundFrame (NULL,Txt_Countries_with_pending_institutions,
NULL,Hlp_SYSTEM_Pending);
fprintf (Gbl.F.Out,"<table class=\"FRAME_TABLE CELLS_PAD_2\">"
"<tr>"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"

View File

@ -139,6 +139,7 @@ void Deg_SeePending (void)
void Deg_SeeDegWithPendingCrss (void)
{
extern const char *Hlp_SYSTEM_Pending;
extern const char *Sco_ScopeDB[Sco_NUM_SCOPES];
extern const char *Txt_Degrees_with_pending_courses;
extern const char *Txt_Degree;
@ -182,8 +183,10 @@ void Deg_SeeDegWithPendingCrss (void)
if ((NumDegs = (unsigned) DB_QuerySELECT (Query,&mysql_res,"can not get degrees with pending courses")))
{
/***** Write heading *****/
Lay_StartRoundFrameTable (NULL,2,Txt_Degrees_with_pending_courses);
fprintf (Gbl.F.Out,"<tr>"
Lay_StartRoundFrame (NULL,Txt_Degrees_with_pending_courses,
NULL,Hlp_SYSTEM_Pending);
fprintf (Gbl.F.Out,"<table class=\"FRAME_TABLE CELLS_PAD_2\">"
"<tr>"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"

View File

@ -42,6 +42,7 @@
/***** SYSTEM tab *****/
const char *Hlp_SYSTEM_Countries = WIKI "SYSTEM.Countries";
const char *Hlp_SYSTEM_Pending = WIKI "SYSTEM.Pending";
/***** COUNTRY tab *****/

View File

@ -99,6 +99,7 @@ static void Ins_CreateInstitution (struct Instit *Ins,unsigned Status);
void Ins_SeeInsWithPendingCtrs (void)
{
extern const char *Hlp_SYSTEM_Pending;
extern const char *Txt_Institutions_with_pending_centres;
extern const char *Txt_Institution;
extern const char *Txt_Centres_ABBREVIATION;
@ -139,8 +140,10 @@ void Ins_SeeInsWithPendingCtrs (void)
if ((NumInss = (unsigned) DB_QuerySELECT (Query,&mysql_res,"can not get institutions with pending centres")))
{
/***** Write heading *****/
Lay_StartRoundFrameTable (NULL,2,Txt_Institutions_with_pending_centres);
fprintf (Gbl.F.Out,"<tr>"
Lay_StartRoundFrame (NULL,Txt_Institutions_with_pending_centres,
NULL,Hlp_SYSTEM_Pending);
fprintf (Gbl.F.Out,"<table class=\"FRAME_TABLE CELLS_PAD_2\">"
"<tr>"
"<th class=\"LEFT_MIDDLE\">"
"%s"
"</th>"