Version 16.47.6

This commit is contained in:
Antonio Cañas Vargas 2016-11-06 23:24:11 +01:00
parent 11e47c3f58
commit 7c18efd174
3 changed files with 18 additions and 7 deletions

View File

@ -156,13 +156,14 @@
/****************************** Public constants *****************************/ /****************************** Public constants *****************************/
/*****************************************************************************/ /*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.47.5 (2016-11-06)" #define Log_PLATFORM_VERSION "SWAD 16.47.6 (2016-11-06)"
#define CSS_FILE "swad16.32.1.css" #define CSS_FILE "swad16.32.1.css"
#define JS_FILE "swad16.46.1.js" #define JS_FILE "swad16.46.1.js"
// Number of lines (includes comments but not blank lines) has been got with the following command: // 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 // nl swad*.c swad*.h css/swad*.css py/swad*.py js/swad*.js soap/swad*.h sql/swad*.sql | tail -1
/* /*
Version 16.47.6: Nov 06, 2016 Code refactoring in countries. (206171 lines)
Version 16.47.5: Nov 06, 2016 Code refactoring in countries. (206162 lines) Version 16.47.5: Nov 06, 2016 Code refactoring in countries. (206162 lines)
Version 16.47.4: Nov 06, 2016 Code refactoring in notices. (206153 lines) Version 16.47.4: Nov 06, 2016 Code refactoring in notices. (206153 lines)
Version 16.47.3: Nov 06, 2016 Icon in list of institutions to show figure (statistics). (206155 lines) Version 16.47.3: Nov 06, 2016 Icon in list of institutions to show figure (statistics). (206155 lines)

View File

@ -66,7 +66,7 @@ extern struct Globals Gbl;
static void Cty_Configuration (bool PrintView); static void Cty_Configuration (bool PrintView);
static void Cty_PutIconToPrint (void); static void Cty_PutIconToPrint (void);
static bool Cty_CheckIfICanEditNotices (void); static bool Cty_CheckIfICanEditCountries (void);
static void Cty_PutIconsCountries (void); static void Cty_PutIconsCountries (void);
static void Cty_PutIconToEditCountries (void); static void Cty_PutIconToEditCountries (void);
@ -259,7 +259,7 @@ static void Cty_Configuration (bool PrintView)
fprintf (Gbl.F.Out,"</div>"); fprintf (Gbl.F.Out,"</div>");
/* Map attribution */ /* Map attribution */
if (!PrintView && Cty_CheckIfICanEditNotices ()) if (!PrintView && Cty_CheckIfICanEditCountries ())
{ {
fprintf (Gbl.F.Out,"<div class=\"CENTER_MIDDLE\">"); fprintf (Gbl.F.Out,"<div class=\"CENTER_MIDDLE\">");
Act_FormStart (ActChgCtyMapAtt); Act_FormStart (ActChgCtyMapAtt);
@ -694,7 +694,7 @@ void Cty_ListCountries2 (void)
/********************** Check if I can edit countries ************************/ /********************** Check if I can edit countries ************************/
/*****************************************************************************/ /*****************************************************************************/
static bool Cty_CheckIfICanEditNotices (void) static bool Cty_CheckIfICanEditCountries (void)
{ {
return (Gbl.Usrs.Me.LoggedRole == Rol_SYS_ADM); return (Gbl.Usrs.Me.LoggedRole == Rol_SYS_ADM);
} }
@ -706,7 +706,7 @@ static bool Cty_CheckIfICanEditNotices (void)
static void Cty_PutIconsCountries (void) static void Cty_PutIconsCountries (void)
{ {
/***** Put icon to edit countries *****/ /***** Put icon to edit countries *****/
if (Cty_CheckIfICanEditNotices ()) if (Cty_CheckIfICanEditCountries ())
Cty_PutIconToEditCountries (); Cty_PutIconToEditCountries ();
/***** Put icon to show a figure *****/ /***** Put icon to show a figure *****/

View File

@ -67,6 +67,7 @@ static void Ins_Configuration (bool PrintView);
static void Ins_PutIconsToPrintAndUpload (void); static void Ins_PutIconsToPrintAndUpload (void);
static void Ins_ListInstitutions (void); static void Ins_ListInstitutions (void);
static bool Ins_CheckIfICanEditInstitutions (void);
static void Ins_PutIconsInstitutions (void); static void Ins_PutIconsInstitutions (void);
static void Ins_PutIconToEditInstitutions (void); static void Ins_PutIconToEditInstitutions (void);
static void Ins_ListOneInstitutionForSeeing (struct Instit *Ins,unsigned NumIns); static void Ins_ListOneInstitutionForSeeing (struct Instit *Ins,unsigned NumIns);
@ -682,7 +683,7 @@ static void Ins_ListInstitutions (void)
Lay_ShowAlert (Lay_INFO,Txt_No_institutions); Lay_ShowAlert (Lay_INFO,Txt_No_institutions);
/***** Button to create institution *****/ /***** Button to create institution *****/
if (Gbl.Usrs.Me.LoggedRole >= Rol__GUEST_) if (Ins_CheckIfICanEditInstitutions ())
{ {
Act_FormStart (ActEdiIns); Act_FormStart (ActEdiIns);
Lay_PutConfirmButton (Gbl.Inss.Num ? Txt_Create_another_institution : Lay_PutConfirmButton (Gbl.Inss.Num ? Txt_Create_another_institution :
@ -693,6 +694,15 @@ static void Ins_ListInstitutions (void)
Lay_EndRoundFrame (); Lay_EndRoundFrame ();
} }
/*****************************************************************************/
/******************** Check if I can edit institutions ***********************/
/*****************************************************************************/
static bool Ins_CheckIfICanEditInstitutions (void)
{
return (Gbl.Usrs.Me.LoggedRole >= Rol__GUEST_);
}
/*****************************************************************************/ /*****************************************************************************/
/*************** Put contextual icons in list of institutions ****************/ /*************** Put contextual icons in list of institutions ****************/
/*****************************************************************************/ /*****************************************************************************/
@ -700,7 +710,7 @@ static void Ins_ListInstitutions (void)
static void Ins_PutIconsInstitutions (void) static void Ins_PutIconsInstitutions (void)
{ {
/***** Put icon to edit countries *****/ /***** Put icon to edit countries *****/
if (Gbl.Usrs.Me.LoggedRole >= Rol__GUEST_) if (Ins_CheckIfICanEditInstitutions ())
Ins_PutIconToEditInstitutions (); Ins_PutIconToEditInstitutions ();
/***** Put icon to show a figure *****/ /***** Put icon to show a figure *****/