Version 18.17.8

This commit is contained in:
Antonio Cañas Vargas 2018-11-15 22:33:21 +01:00
parent 1a65b1fd20
commit 34e01b5b8c
2 changed files with 28 additions and 7 deletions

View File

@ -348,10 +348,11 @@ En OpenSWAD:
ps2pdf source.ps destination.pdf
*/
#define Log_PLATFORM_VERSION "SWAD 18.17.7 (2018-11-15)"
#define Log_PLATFORM_VERSION "SWAD 18.17.8 (2018-11-15)"
#define CSS_FILE "swad18.4.css"
#define JS_FILE "swad17.17.1.js"
/*
Version 18.17.8: Nov 15, 2018 Changes in contextual icons related to countries. (237011 lines)
Version 18.17.7: Nov 15, 2018 Changes in contextual icons related to courses. (236994 lines)
Version 18.17.6: Nov 15, 2018 Changes in contextual icons related to degrees. (236972 lines)
Version 18.17.5: Nov 15, 2018 Changes in contextual icons related to institutions. (236951 lines)

View File

@ -77,12 +77,13 @@ static void Cty_ListOneCountryForSeeing (struct Country *Cty,unsigned NumCty);
static bool Cty_CheckIfICanEditCountries (void);
static void Cty_PutIconsListCountries (void);
static void Cty_PutIconsListingCountries (void);
static void Cty_PutIconToEditCountries (void);
static unsigned Cty_GetNumUsrsWhoClaimToBelongToCty (long CtyCod);
static void Cty_GetParamCtyOrder (void);
static void Cty_PutIconsEditingCountries (void);
static void Cty_PutIconToViewCountries (void);
static void Cty_GetMapAttribution (long CtyCod,char **MapAttribution);
@ -519,7 +520,7 @@ void Cty_ListCountries2 (void)
unsigned NumCty;
/***** Start box and table *****/
Box_StartBoxTable (NULL,Txt_Countries,Cty_PutIconsListCountries,
Box_StartBoxTable (NULL,Txt_Countries,Cty_PutIconsListingCountries,
Hlp_SYSTEM_Countries,Box_NOT_CLOSABLE,2);
/***** Write heading *****/
@ -755,7 +756,7 @@ static bool Cty_CheckIfICanEditCountries (void)
/***************** Put contextual icons in list of countries *****************/
/*****************************************************************************/
static void Cty_PutIconsListCountries (void)
static void Cty_PutIconsListingCountries (void)
{
/***** Put icon to edit countries *****/
if (Cty_CheckIfICanEditCountries ())
@ -767,7 +768,7 @@ static void Cty_PutIconsListCountries (void)
}
/*****************************************************************************/
/********************* Put link (form) to edit countries *********************/
/************************ Put icon to edit countries *************************/
/*****************************************************************************/
static void Cty_PutIconToEditCountries (void)
@ -956,7 +957,7 @@ void Cty_EditCountries (void)
Cty_GetListCountries (Cty_GET_EXTRA_DATA);
/***** Start box *****/
Box_StartBox (NULL,Txt_Countries,Cty_PutIconToViewCountries,
Box_StartBox (NULL,Txt_Countries,Cty_PutIconsEditingCountries,
Hlp_SYSTEM_Countries,Box_NOT_CLOSABLE);
/***** Put a form to create a new country *****/
@ -977,9 +978,28 @@ void Cty_EditCountries (void)
/*************** Put contextual icons in edition of countries ****************/
/*****************************************************************************/
static void Cty_PutIconsEditingCountries (void)
{
/***** Put icon to view countries *****/
Cty_PutIconToViewCountries ();
/***** Put icon to show a figure *****/
Gbl.Stat.FigureType = Sta_HIERARCHY;
Sta_PutIconToShowFigure ();
}
/*****************************************************************************/
/************************ Put icon to view countries *************************/
/*****************************************************************************/
static void Cty_PutIconToViewCountries (void)
{
Ico_PutContextualIconToView (ActSeeCty,NULL);
extern const char *Txt_Countries;
Lay_PutContextualLink (ActSeeCty,NULL,NULL,
"cty64x64.gif",
Txt_Countries,NULL,
NULL);
}
/*****************************************************************************/