Version 14.72.3

This commit is contained in:
Antonio Cañas Vargas 2015-02-01 17:06:49 +01:00
parent 9b133468ca
commit d2291f1f04
3 changed files with 110 additions and 498 deletions

View File

@ -39,11 +39,12 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 14.72.2 (2015/02/01)"
#define Log_PLATFORM_VERSION "SWAD 14.72.3 (2015/02/01)"
// 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 | tail -1
/*
Version 14.72.3: Feb 01, 2015 Refactoring of registering and removing admins. (177139 lines)
Version 14.72.2: Feb 01, 2015 Refactoring of registering and removing admins. (177496 lines)
Version 14.72.1: Feb 01, 2015 New options to register and remove institution and centre admins. (177477 lines)
6 changes necessary in database:

View File

@ -112,9 +112,8 @@ static void Enr_RegisterAdminInCurrentCtr (struct UsrData *UsrDat);
static void Enr_RegisterAdminInCurrentDeg (struct UsrData *UsrDat);
static void Enr_ReqRemOrRemUsrFromCrs (Enr_ReqDelOrDelUsr_t ReqDelOrDelUsr);
static void Enr_ReqRemAdmOfDeg (void);
static void Enr_ReqRemOrRemAdmIns (Enr_ReqDelOrDelUsr_t ReqDelOrDelUsr);
static void Enr_ReqRemOrRemAdmCtr (Enr_ReqDelOrDelUsr_t ReqDelOrDelUsr);
static void Enr_ReqRemOrRemAdmDeg (Enr_ReqDelOrDelUsr_t ReqDelOrDelUsr);
static void Enr_ReqRemOrRemAdm (Enr_ReqDelOrDelUsr_t ReqDelOrDelUsr,Sco_Scope_t Scope,
long Cod,const char *InsCtrDegName);
static void Enr_ReqAddAdmOfIns (void);
static void Enr_ReqAddAdmOfCtr (void);
@ -124,13 +123,9 @@ static void Enr_AskIfRemoveUsrFromCrs (struct UsrData *UsrDat,bool ItsMe);
static void Enr_EffectivelyRemUsrFromCrs (struct UsrData *UsrDat,struct Course *Crs,
Enr_RemoveUsrWorks_t RemoveUsrWorks,Cns_QuietOrVerbose_t QuietOrVerbose);
static void Enr_AskIfRemAdmFromIns (bool ItsMe);
static void Enr_AskIfRemAdmFromCtr (bool ItsMe);
static void Enr_AskIfRemAdmFromDeg (bool ItsMe);
static void Enr_EffectivelyRemAdmFromIns (struct UsrData *UsrDat);
static void Enr_EffectivelyRemAdmFromCtr (struct UsrData *UsrDat);
static void Enr_EffectivelyRemAdmFromDeg (struct UsrData *UsrDat);
static void Enr_AskIfRemAdm (bool ItsMe,Sco_Scope_t Scope,const char *InsCtrDegName);
static void Enr_EffectivelyRemAdm (struct UsrData *UsrDat,Sco_Scope_t Scope,
long Cod,const char *InsCtrDegName);
/*****************************************************************************/
/************ Show form to request sign up in the current course *************/
@ -3099,7 +3094,8 @@ static void Enr_ReqRemOrRemUsrFromCrs (Enr_ReqDelOrDelUsr_t ReqDelOrDelUsr)
static void Enr_ReqRemAdmOfIns (void)
{
Enr_ReqRemOrRemAdmIns (Enr_REQUEST_REMOVE_USR);
Enr_ReqRemOrRemAdm (Enr_REQUEST_REMOVE_USR,Sco_SCOPE_INSTITUTION,
Gbl.CurrentIns.Ins.InsCod,Gbl.CurrentIns.Ins.FullName);
}
/*****************************************************************************/
@ -3108,7 +3104,8 @@ static void Enr_ReqRemAdmOfIns (void)
static void Enr_ReqRemAdmOfCtr (void)
{
Enr_ReqRemOrRemAdmCtr (Enr_REQUEST_REMOVE_USR);
Enr_ReqRemOrRemAdm (Enr_REQUEST_REMOVE_USR,Sco_SCOPE_CENTRE,
Gbl.CurrentCtr.Ctr.CtrCod,Gbl.CurrentCtr.Ctr.FullName);
}
/*****************************************************************************/
@ -3117,7 +3114,8 @@ static void Enr_ReqRemAdmOfCtr (void)
static void Enr_ReqRemAdmOfDeg (void)
{
Enr_ReqRemOrRemAdmDeg (Enr_REQUEST_REMOVE_USR);
Enr_ReqRemOrRemAdm (Enr_REQUEST_REMOVE_USR,Sco_SCOPE_DEGREE,
Gbl.CurrentDeg.Deg.DegCod,Gbl.CurrentDeg.Deg.FullName);
}
/*****************************************************************************/
@ -3126,7 +3124,8 @@ static void Enr_ReqRemAdmOfDeg (void)
void Enr_RemAdmIns (void)
{
Enr_ReqRemOrRemAdmIns (Enr_REMOVE_USR);
Enr_ReqRemOrRemAdm (Enr_REMOVE_USR,Sco_SCOPE_INSTITUTION,
Gbl.CurrentIns.Ins.InsCod,Gbl.CurrentIns.Ins.FullName);
}
/*****************************************************************************/
@ -3135,7 +3134,8 @@ void Enr_RemAdmIns (void)
void Enr_RemAdmCtr (void)
{
Enr_ReqRemOrRemAdmCtr (Enr_REMOVE_USR);
Enr_ReqRemOrRemAdm (Enr_REMOVE_USR,Sco_SCOPE_CENTRE,
Gbl.CurrentCtr.Ctr.CtrCod,Gbl.CurrentCtr.Ctr.FullName);
}
/*****************************************************************************/
@ -3144,21 +3144,23 @@ void Enr_RemAdmCtr (void)
void Enr_RemAdmDeg (void)
{
Enr_ReqRemOrRemAdmDeg (Enr_REMOVE_USR);
Enr_ReqRemOrRemAdm (Enr_REMOVE_USR,Sco_SCOPE_DEGREE,
Gbl.CurrentDeg.Deg.DegCod,Gbl.CurrentDeg.Deg.FullName);
}
/*****************************************************************************/
/***************** Remove an admin from current institution ******************/
/*****************************************************************************/
static void Enr_ReqRemOrRemAdmIns (Enr_ReqDelOrDelUsr_t ReqDelOrDelUsr)
static void Enr_ReqRemOrRemAdm (Enr_ReqDelOrDelUsr_t ReqDelOrDelUsr,Sco_Scope_t Scope,
long Cod,const char *InsCtrDegName)
{
extern const char *Txt_THE_USER_X_is_not_an_administrator_of_the_institution_Y;
extern const char *Txt_THE_USER_X_is_not_an_administrator_of_Y;
extern const char *Txt_User_not_found_or_you_do_not_have_permission_;
bool ItsMe;
bool ICanRemove;
if (Gbl.CurrentIns.Ins.InsCod > 0)
if (Cod > 0)
{
/***** Get user to be removed *****/
if (Usr_GetParamOtherUsrCodEncryptedAndGetUsrData ())
@ -3171,130 +3173,23 @@ static void Enr_ReqRemOrRemAdmIns (Enr_ReqDelOrDelUsr_t ReqDelOrDelUsr)
if (ICanRemove)
{
/* Check if the other user is and admin of the current institution */
if (Usr_CheckIfUsrIsAdm (Gbl.Usrs.Other.UsrDat.UsrCod,
Sco_SCOPE_INSTITUTION,
Gbl.CurrentIns.Ins.InsCod))
if (Usr_CheckIfUsrIsAdm (Gbl.Usrs.Other.UsrDat.UsrCod,Scope,Cod))
{ // The other user is an administrator of current degree ==> ask for removing or remove him
switch (ReqDelOrDelUsr)
{
case Enr_REQUEST_REMOVE_USR: // Ask if remove administrator from current institution
Enr_AskIfRemAdmFromIns (ItsMe);
Enr_AskIfRemAdm (ItsMe,Scope,InsCtrDegName);
break;
case Enr_REMOVE_USR: // Remove administrator from current institution
Enr_EffectivelyRemAdmFromIns (&Gbl.Usrs.Other.UsrDat);
Enr_EffectivelyRemAdm (&Gbl.Usrs.Other.UsrDat,Scope,
Cod,InsCtrDegName);
break;
}
}
else // The other user is not an administrator of current institution
{
sprintf (Gbl.Message,Txt_THE_USER_X_is_not_an_administrator_of_the_institution_Y,
Gbl.Usrs.Other.UsrDat.FullName,Gbl.CurrentIns.Ins.FullName);
Lay_ShowAlert (Lay_WARNING,Gbl.Message);
}
}
else
Lay_ShowAlert (Lay_WARNING,Txt_User_not_found_or_you_do_not_have_permission_);
}
else
Lay_ShowAlert (Lay_WARNING,Txt_User_not_found_or_you_do_not_have_permission_);
}
}
/*****************************************************************************/
/******************** Remove an admin from current centre ********************/
/*****************************************************************************/
static void Enr_ReqRemOrRemAdmCtr (Enr_ReqDelOrDelUsr_t ReqDelOrDelUsr)
{
extern const char *Txt_THE_USER_X_is_not_an_administrator_of_the_centre_Y;
extern const char *Txt_User_not_found_or_you_do_not_have_permission_;
bool ItsMe;
bool ICanRemove;
if (Gbl.CurrentCtr.Ctr.CtrCod > 0)
{
/***** Get user to be removed *****/
if (Usr_GetParamOtherUsrCodEncryptedAndGetUsrData ())
{
/* Check if it's forbidden remove that administrator */
// A superuser can remove any administrator
// An administrator only can remove itself
ItsMe = (Gbl.Usrs.Me.UsrDat.UsrCod == Gbl.Usrs.Other.UsrDat.UsrCod);
ICanRemove = (ItsMe || Gbl.Usrs.Me.LoggedRole == Rol_ROLE_SUPERUSER);
if (ICanRemove)
{
/* Check if the other user is and admin of the current centre */
if (Usr_CheckIfUsrIsAdm (Gbl.Usrs.Other.UsrDat.UsrCod,
Sco_SCOPE_CENTRE,
Gbl.CurrentCtr.Ctr.CtrCod))
{ // The other user is an administrator of current centre ==> ask for removing or remove him
switch (ReqDelOrDelUsr)
{
case Enr_REQUEST_REMOVE_USR: // Ask if remove administrator from current centre
Enr_AskIfRemAdmFromCtr (ItsMe);
break;
case Enr_REMOVE_USR: // Remove administrator from current centre
Enr_EffectivelyRemAdmFromCtr (&Gbl.Usrs.Other.UsrDat);
break;
}
}
else // The other user is not an administrator of current centre
{
sprintf (Gbl.Message,Txt_THE_USER_X_is_not_an_administrator_of_the_centre_Y,
Gbl.Usrs.Other.UsrDat.FullName,Gbl.CurrentCtr.Ctr.FullName);
Lay_ShowAlert (Lay_WARNING,Gbl.Message);
}
}
else
Lay_ShowAlert (Lay_WARNING,Txt_User_not_found_or_you_do_not_have_permission_);
}
else
Lay_ShowAlert (Lay_WARNING,Txt_User_not_found_or_you_do_not_have_permission_);
}
}
/*****************************************************************************/
/******************** Remove an admin from current degree ********************/
/*****************************************************************************/
static void Enr_ReqRemOrRemAdmDeg (Enr_ReqDelOrDelUsr_t ReqDelOrDelUsr)
{
extern const char *Txt_THE_USER_X_is_not_an_administrator_of_the_degree_Y;
extern const char *Txt_User_not_found_or_you_do_not_have_permission_;
bool ItsMe;
bool ICanRemove;
if (Gbl.CurrentDeg.Deg.DegCod > 0)
{
/***** Get user to be removed *****/
if (Usr_GetParamOtherUsrCodEncryptedAndGetUsrData ())
{
/* Check if it's forbidden remove that administrator */
// A superuser can remove any administrator
// An administrator only can remove itself
ItsMe = (Gbl.Usrs.Me.UsrDat.UsrCod == Gbl.Usrs.Other.UsrDat.UsrCod);
ICanRemove = (ItsMe || Gbl.Usrs.Me.LoggedRole == Rol_ROLE_SUPERUSER);
if (ICanRemove)
{
/* Check if the other user is and admin of the current degree */
if (Usr_CheckIfUsrIsAdm (Gbl.Usrs.Other.UsrDat.UsrCod,
Sco_SCOPE_DEGREE,
Gbl.CurrentDeg.Deg.DegCod))
{ // The other user is an administrator of current degree ==> ask for removing or remove him
switch (ReqDelOrDelUsr)
{
case Enr_REQUEST_REMOVE_USR: // Ask if remove administrator from current degree
Enr_AskIfRemAdmFromDeg (ItsMe);
break;
case Enr_REMOVE_USR: // Remove administrator from current degree
Enr_EffectivelyRemAdmFromDeg (&Gbl.Usrs.Other.UsrDat);
break;
}
}
else // The other user is not an administrator of current degree
{
sprintf (Gbl.Message,Txt_THE_USER_X_is_not_an_administrator_of_the_degree_Y,
Gbl.Usrs.Other.UsrDat.FullName,Gbl.CurrentDeg.Deg.FullName);
sprintf (Gbl.Message,Txt_THE_USER_X_is_not_an_administrator_of_Y,
Gbl.Usrs.Other.UsrDat.FullName,InsCtrDegName);
Lay_ShowAlert (Lay_WARNING,Gbl.Message);
}
}
@ -3784,24 +3679,34 @@ static void Enr_EffectivelyRemUsrFromCrs (struct UsrData *UsrDat,struct Course *
/** Ask if really wanted to remove an administrator from current institution */
/*****************************************************************************/
static void Enr_AskIfRemAdmFromIns (bool ItsMe)
static void Enr_AskIfRemAdm (bool ItsMe,Sco_Scope_t Scope,const char *InsCtrDegName)
{
extern const char *Txt_Do_you_really_want_to_be_removed_as_an_administrator_of_the_institution_X;
extern const char *Txt_Do_you_really_want_to_remove_the_following_user_as_an_administrator_of_the_institution_X;
extern const char *Txt_Do_you_really_want_to_be_removed_as_an_administrator_of_X;
extern const char *Txt_Do_you_really_want_to_remove_the_following_user_as_an_administrator_of_X;
extern const char *Txt_Remove_me_as_an_administrator;
extern const char *Txt_Remove_user_as_an_administrator;
static const Act_Action_t Enr_ActRemAdm[Sco_NUM_SCOPES] =
{
ActUnk, // Sco_SCOPE_NONE
ActUnk, // Sco_SCOPE_PLATFORM,
ActUnk, // Sco_SCOPE_COUNTRY,
ActRemAdmIns, // Sco_SCOPE_INSTITUTION,
ActRemAdmCtr, // Sco_SCOPE_CENTRE,
ActRemAdmDeg, // Sco_SCOPE_DEGREE,
ActUnk, // Sco_SCOPE_COURSE,
};
if (Usr_ChkIfUsrCodExists (Gbl.Usrs.Other.UsrDat.UsrCod))
{
sprintf (Gbl.Message,
ItsMe ? Txt_Do_you_really_want_to_be_removed_as_an_administrator_of_the_institution_X :
Txt_Do_you_really_want_to_remove_the_following_user_as_an_administrator_of_the_institution_X,
Gbl.CurrentIns.Ins.FullName);
ItsMe ? Txt_Do_you_really_want_to_be_removed_as_an_administrator_of_X :
Txt_Do_you_really_want_to_remove_the_following_user_as_an_administrator_of_X,
InsCtrDegName);
Lay_ShowAlert (Lay_INFO,Gbl.Message);
Rec_ShowCommonRecordUnmodifiable (&Gbl.Usrs.Other.UsrDat);
Act_FormStart (ActRemAdmIns);
Act_FormStart (Enr_ActRemAdm[Scope]);
Usr_PutParamOtherUsrCodEncrypted (Gbl.Usrs.Other.UsrDat.EncryptedUsrCod);
fprintf (Gbl.F.Out,"<div style=\"text-align:center;\">"
"<input type=\"submit\" value=\"%s\" />"
@ -3815,165 +3720,33 @@ static void Enr_AskIfRemAdmFromIns (bool ItsMe)
}
/*****************************************************************************/
/**** Ask if really wanted to remove an administrator from current centre ****/
/**** Remove an administrator from current institution, centre or degree *****/
/*****************************************************************************/
static void Enr_AskIfRemAdmFromCtr (bool ItsMe)
static void Enr_EffectivelyRemAdm (struct UsrData *UsrDat,Sco_Scope_t Scope,
long Cod,const char *InsCtrDegName)
{
extern const char *Txt_Do_you_really_want_to_be_removed_as_an_administrator_of_the_centre_X;
extern const char *Txt_Do_you_really_want_to_remove_the_following_user_as_an_administrator_of_the_centre_X;
extern const char *Txt_Remove_me_as_an_administrator;
extern const char *Txt_Remove_user_as_an_administrator;
if (Usr_ChkIfUsrCodExists (Gbl.Usrs.Other.UsrDat.UsrCod))
{
sprintf (Gbl.Message,
ItsMe ? Txt_Do_you_really_want_to_be_removed_as_an_administrator_of_the_centre_X :
Txt_Do_you_really_want_to_remove_the_following_user_as_an_administrator_of_the_centre_X,
Gbl.CurrentCtr.Ctr.FullName);
Lay_ShowAlert (Lay_INFO,Gbl.Message);
Rec_ShowCommonRecordUnmodifiable (&Gbl.Usrs.Other.UsrDat);
Act_FormStart (ActRemAdmCtr);
Usr_PutParamOtherUsrCodEncrypted (Gbl.Usrs.Other.UsrDat.EncryptedUsrCod);
fprintf (Gbl.F.Out,"<div style=\"text-align:center;\">"
"<input type=\"submit\" value=\"%s\" />"
"</div>"
"</form>",
ItsMe ? Txt_Remove_me_as_an_administrator :
Txt_Remove_user_as_an_administrator);
}
else
Lay_ShowErrorAndExit ("User doesn't exist.");
}
/*****************************************************************************/
/**** Ask if really wanted to remove an administrator from current degree ****/
/*****************************************************************************/
static void Enr_AskIfRemAdmFromDeg (bool ItsMe)
{
extern const char *Txt_Do_you_really_want_to_be_removed_as_an_administrator_of_the_degree_X;
extern const char *Txt_Do_you_really_want_to_remove_the_following_user_as_an_administrator_of_the_degree_X;
extern const char *Txt_Remove_me_as_an_administrator;
extern const char *Txt_Remove_user_as_an_administrator;
if (Usr_ChkIfUsrCodExists (Gbl.Usrs.Other.UsrDat.UsrCod))
{
sprintf (Gbl.Message,
ItsMe ? Txt_Do_you_really_want_to_be_removed_as_an_administrator_of_the_degree_X :
Txt_Do_you_really_want_to_remove_the_following_user_as_an_administrator_of_the_degree_X,
Gbl.CurrentDeg.Deg.FullName);
Lay_ShowAlert (Lay_INFO,Gbl.Message);
Rec_ShowCommonRecordUnmodifiable (&Gbl.Usrs.Other.UsrDat);
Act_FormStart (ActRemAdmDeg);
Usr_PutParamOtherUsrCodEncrypted (Gbl.Usrs.Other.UsrDat.EncryptedUsrCod);
fprintf (Gbl.F.Out,"<div style=\"text-align:center;\">"
"<input type=\"submit\" value=\"%s\" />"
"</div>"
"</form>",
ItsMe ? Txt_Remove_me_as_an_administrator :
Txt_Remove_user_as_an_administrator);
}
else
Lay_ShowErrorAndExit ("User doesn't exist.");
}
/*****************************************************************************/
/*********** Remove an administrator from current institution ****************/
/*****************************************************************************/
static void Enr_EffectivelyRemAdmFromIns (struct UsrData *UsrDat)
{
extern const char *Txt_THE_USER_X_has_been_removed_as_administrator_of_the_institution_Y;
extern const char *Txt_THE_USER_X_is_not_an_administrator_of_the_institution_Y;
extern const char *Sco_ScopeAdminDB[Sco_NUM_SCOPES];
extern const char *Txt_THE_USER_X_has_been_removed_as_administrator_of_Y;
extern const char *Txt_THE_USER_X_is_not_an_administrator_of_Y;
char Query[1024];
if (Usr_CheckIfUsrIsAdm (UsrDat->UsrCod,
Sco_SCOPE_INSTITUTION,
Gbl.CurrentIns.Ins.InsCod)) // User is administrator of current institution
if (Usr_CheckIfUsrIsAdm (UsrDat->UsrCod,Scope,Cod)) // User is administrator of current institution/centre/degree
{
/***** Remove user from the table of admins *****/
sprintf (Query,"DELETE FROM admin"
" WHERE UsrCod='%ld' AND Scope='Ins' AND Cod='%ld'",
UsrDat->UsrCod,Gbl.CurrentIns.Ins.InsCod);
DB_QueryDELETE (Query,"can not remove an administrator from an institution");
" WHERE UsrCod='%ld' AND Scope='%s' AND Cod='%ld'",
UsrDat->UsrCod,Sco_ScopeAdminDB[Scope],Cod);
DB_QueryDELETE (Query,"can not remove an administrator");
sprintf (Gbl.Message,Txt_THE_USER_X_has_been_removed_as_administrator_of_the_institution_Y,
UsrDat->FullName,Gbl.CurrentIns.Ins.FullName);
sprintf (Gbl.Message,Txt_THE_USER_X_has_been_removed_as_administrator_of_Y,
UsrDat->FullName,InsCtrDegName);
Lay_ShowAlert (Lay_SUCCESS,Gbl.Message);
}
else // User is not an administrator of the current institution
else // User is not an administrator of the current institution/centre/degree
{
sprintf (Gbl.Message,Txt_THE_USER_X_is_not_an_administrator_of_the_institution_Y,
UsrDat->FullName,Gbl.CurrentIns.Ins.FullName);
Lay_ShowAlert (Lay_ERROR,Gbl.Message);
}
}
/*****************************************************************************/
/************* Remove an administrator from current centre *******************/
/*****************************************************************************/
static void Enr_EffectivelyRemAdmFromCtr (struct UsrData *UsrDat)
{
extern const char *Txt_THE_USER_X_has_been_removed_as_administrator_of_the_centre_Y;
extern const char *Txt_THE_USER_X_is_not_an_administrator_of_the_centre_Y;
char Query[1024];
if (Usr_CheckIfUsrIsAdm (UsrDat->UsrCod,
Sco_SCOPE_CENTRE,
Gbl.CurrentCtr.Ctr.CtrCod)) // User is administrator of current centre
{
/***** Remove user from the table of admins *****/
sprintf (Query,"DELETE FROM admin"
" WHERE UsrCod='%ld' AND Scope='Ctr' AND Cod='%ld'",
UsrDat->UsrCod,Gbl.CurrentCtr.Ctr.CtrCod);
DB_QueryDELETE (Query,"can not remove an administrator from a centre");
sprintf (Gbl.Message,Txt_THE_USER_X_has_been_removed_as_administrator_of_the_centre_Y,
UsrDat->FullName,Gbl.CurrentCtr.Ctr.FullName);
Lay_ShowAlert (Lay_SUCCESS,Gbl.Message);
}
else // User is not an administrator of the current centre
{
sprintf (Gbl.Message,Txt_THE_USER_X_is_not_an_administrator_of_the_centre_Y,
UsrDat->FullName,Gbl.CurrentCtr.Ctr.FullName);
Lay_ShowAlert (Lay_ERROR,Gbl.Message);
}
}
/*****************************************************************************/
/************* Remove an administrator from current degree *******************/
/*****************************************************************************/
static void Enr_EffectivelyRemAdmFromDeg (struct UsrData *UsrDat)
{
extern const char *Txt_THE_USER_X_has_been_removed_as_administrator_of_the_degree_Y;
extern const char *Txt_THE_USER_X_is_not_an_administrator_of_the_degree_Y;
char Query[1024];
if (Usr_CheckIfUsrIsAdm (UsrDat->UsrCod,
Sco_SCOPE_DEGREE,
Gbl.CurrentDeg.Deg.DegCod)) // User is administrator of current degree
{
/***** Remove user from the table of admins *****/
sprintf (Query,"DELETE FROM admin"
" WHERE UsrCod='%ld' AND Scope='Deg' AND Cod='%ld'",
UsrDat->UsrCod,Gbl.CurrentDeg.Deg.DegCod);
DB_QueryDELETE (Query,"can not remove an administrator from a degree");
sprintf (Gbl.Message,Txt_THE_USER_X_has_been_removed_as_administrator_of_the_degree_Y,
UsrDat->FullName,Gbl.CurrentDeg.Deg.FullName);
Lay_ShowAlert (Lay_SUCCESS,Gbl.Message);
}
else // User is not an administrator of the current degree
{
sprintf (Gbl.Message,Txt_THE_USER_X_is_not_an_administrator_of_the_degree_Y,
UsrDat->FullName,Gbl.CurrentDeg.Deg.FullName);
sprintf (Gbl.Message,Txt_THE_USER_X_is_not_an_administrator_of_Y,
UsrDat->FullName,InsCtrDegName);
Lay_ShowAlert (Lay_ERROR,Gbl.Message);
}
}

View File

@ -7980,67 +7980,34 @@ const char *Txt_Do_not_show_again =
"N&atilde;o mostrar novamente";
#endif
const char *Txt_Do_you_really_want_to_be_removed_as_an_administrator_of_the_centre_X = // Warning: it is very important to include %s in the following sentences
const char *Txt_Do_you_really_want_to_be_removed_as_an_administrator_of_X = // Warning: it is very important to include %s in the following sentences
#if L==0
"&iquest;Realmente desea dejar de ser administrador/a del centro <strong>%s</strong>?"; // Necessita traduccio
"&iquest;Realmente desea dejar de ser administrador/a"
" de <strong>%s</strong>?"; // Necessita traduccio
#elif L==1
"Do you really want to be removed as an administrator of the centre <strong>%s</strong>?"; // Need Übersetzung
"Do you really want to be removed as an administrator"
" of <strong>%s</strong>?"; // Need Übersetzung
#elif L==2
"Do you really want to be removed as an administrator of the centre <strong>%s</strong>?";
"Do you really want to be removed as an administrator"
" of <strong>%s</strong>?";
#elif L==3
"&iquest;Realmente desea dejar de ser administrador/a del centro <strong>%s</strong>?";
"&iquest;Realmente desea dejar de ser administrador/a"
" de <strong>%s</strong>?";
#elif L==4
"Do you really want to be removed as an administrator of the centre <strong>%s</strong>?"; // Besoin de traduction
"Do you really want to be removed as an administrator"
" of <strong>%s</strong>?"; // Besoin de traduction
#elif L==5
"&iquest;Realmente desea dejar de ser administrador/a del centro <strong>%s</strong>?"; // Okoteve traducción
"&iquest;Realmente desea dejar de ser administrador/a"
" de <strong>%s</strong>?"; // Okoteve traducción
#elif L==6
"Vuole realmente essere rimosso come amministratore del centro <strong>%s</strong>?";
"Vuole realmente essere rimosso come amministratore"
" de <strong>%s</strong>?";
#elif L==7
"Czy naprawde chcesz byc usuniety jako administrator centrum <strong>%s</strong>?";
"Czy naprawde chcesz byc usuniety jako administrator"
" <strong>%s</strong>?";
#elif L==8
"Do you really want to be removed as an administrator of the centre <strong>%s</strong>?"; // Necessita de tradução
#endif
const char *Txt_Do_you_really_want_to_be_removed_as_an_administrator_of_the_degree_X = // Warning: it is very important to include %s in the following sentences
#if L==0
"&iquest;Realmente desea dejar de ser administrador/a de la titulaci&oacute;n <strong>%s</strong>?"; // Necessita traduccio
#elif L==1
"Do you really want to be removed as an administrator of the degree <strong>%s</strong>?"; // Need Übersetzung
#elif L==2
"Do you really want to be removed as an administrator of the degree <strong>%s</strong>?";
#elif L==3
"&iquest;Realmente desea dejar de ser administrador/a de la titulaci&oacute;n <strong>%s</strong>?";
#elif L==4
"Do you really want to be removed as an administrator of the degree <strong>%s</strong>?"; // Besoin de traduction
#elif L==5
"&iquest;Realmente desea dejar de ser administrador/a de la titulaci&oacute;n <strong>%s</strong>?"; // Okoteve traducción
#elif L==6
"Vuole realmente essere rimosso come amministratore della laurea <strong>%s</strong>?";
#elif L==7
"Czy naprawde chcesz byc usuniety jako administrator stopnia <strong>%s</strong>?";
#elif L==8
"Do you really want to be removed as an administrator of the degree <strong>%s</strong>?"; // Necessita de tradução
#endif
const char *Txt_Do_you_really_want_to_be_removed_as_an_administrator_of_the_institution_X = // Warning: it is very important to include %s in the following sentences
#if L==0
"&iquest;Realmente desea dejar de ser administrador/a de la instituci&oacute;n <strong>%s</strong>?"; // Necessita traduccio
#elif L==1
"Do you really want to be removed as an administrator of the institution <strong>%s</strong>?"; // Need Übersetzung
#elif L==2
"Do you really want to be removed as an administrator of the institution <strong>%s</strong>?";
#elif L==3
"&iquest;Realmente desea dejar de ser administrador/a de la instituci&oacute;n <strong>%s</strong>?";
#elif L==4
"Do you really want to be removed as an administrator of the institution <strong>%s</strong>?"; // Besoin de traduction
#elif L==5
"&iquest;Realmente desea dejar de ser administrador/a de la instituci&oacute;n <strong>%s</strong>?"; // Okoteve traducción
#elif L==6
"Vuole realmente essere rimosso come amministratore della istituzione <strong>%s</strong>?";
#elif L==7
"Czy naprawde chcesz byc usuniety jako administrator instytucji <strong>%s</strong>?";
#elif L==8
"Do you really want to be removed as an administrator of the institution <strong>%s</strong>?"; // Necessita de tradução
"Do you really want to be removed as an administrator"
" <strong>%s</strong>?"; // Necessita de tradução
#endif
const char *Txt_Do_you_really_want_to_be_removed_from_the_course_X = // Warning: it is very important to include %s in the following sentences
@ -8691,34 +8658,34 @@ const char *Txt_Do_you_really_want_to_remove_the_following_user_as_an_administra
" as an administrator of the degree <strong>%s</strong>?"; // Necessita de tradução
#endif
const char *Txt_Do_you_really_want_to_remove_the_following_user_as_an_administrator_of_the_institution_X = // Warning: it is very important to include %s in the following sentences
const char *Txt_Do_you_really_want_to_remove_the_following_user_as_an_administrator_of_X = // Warning: it is very important to include %s in the following sentences
#if L==0
"&iquest;Realmente desea eliminar el siguiente usuario"
" como administrador de la instituci&oacute;n <strong>%s</strong>?"; // Necessita traduccio
" como administrador de <strong>%s</strong>?"; // Necessita traduccio
#elif L==1
"Do you really want to remove the following user"
" as an administrator of the institution <strong>%s</strong>?"; // Need Übersetzung
" as an administrator of <strong>%s</strong>?"; // Need Übersetzung
#elif L==2
"Do you really want to remove the following user"
" as an administrator of the institution <strong>%s</strong>?";
" as an administrator of <strong>%s</strong>?";
#elif L==3
"&iquest;Realmente desea eliminar el siguiente usuario"
" como administrador de la instituci&oacute;n <strong>%s</strong>?";
" como administrador de <strong>%s</strong>?";
#elif L==4
"Do you really want to remove the following user"
" as an administrator of the degree <strong>%s</strong>?"; // Besoin de traduction
" as an administrator of <strong>%s</strong>?"; // Besoin de traduction
#elif L==5
"&iquest;Realmente desea eliminar el siguiente usuario"
" como administrador de la instituci&oacute;n <strong>%s</strong>?"; // Okoteve traducción
" como administrador de <strong>%s</strong>?"; // Okoteve traducción
#elif L==6
"Vuoi realmente rimuovere il seguente utente"
" come amministratore della istituzione <strong>%s</strong>?";
" come amministratore de <strong>%s</strong>?";
#elif L==7
"Czy na pewno chcesz usunac nastepujace u&zdot;ytkownika"
" jako administratora instytucji <strong>%s</strong>?";
" jako administratora <strong>%s</strong>?";
#elif L==8
"Do you really want to remove the following user"
" as an administrator of the institution <strong>%s</strong>?"; // Necessita de tradução
" as an administrator of <strong>%s</strong>?"; // Necessita de tradução
#endif
const char *Txt_Do_you_really_want_to_remove_the_following_user_from_the_course_X = // Warning: it is very important to include %s in the following sentences
@ -42199,94 +42166,34 @@ const char *Txt_THE_USER_X_has_been_removed_from_the_course_Y = // Warning: it i
" from the course <strong>%s</strong>."; // Necessita de tradução
#endif
const char *Txt_THE_USER_X_has_been_removed_as_administrator_of_the_centre_Y = // Warning: it is very important to include two %s in the following sentences
const char *Txt_THE_USER_X_has_been_removed_as_administrator_of_Y = // Warning: it is very important to include two %s in the following sentences
#if L==0
"<strong>%s</strong> ha sido eliminado/a como administrador"
" del centro <strong>%s</strong>."; // Necessita traduccio
" de <strong>%s</strong>."; // Necessita traduccio
#elif L==1
"<strong>%s</strong> has been removed as administrator"
" of the centre <strong>%s</strong>."; // Übersetzung notwendig
" of <strong>%s</strong>."; // Übersetzung notwendig
#elif L==2
"<strong>%s</strong> has been removed as administrator"
" of the centre <strong>%s</strong>.";
" of <strong>%s</strong>.";
#elif L==3
"<strong>%s</strong> ha sido eliminado/a como administrador"
" del centro <strong>%s</strong>.";
" de <strong>%s</strong>.";
#elif L==4
"<strong>%s</strong> has been removed as administrator"
" of the centre <strong>%s</strong>."; // Besoin de traduction
" of <strong>%s</strong>."; // Besoin de traduction
#elif L==5
"<strong>%s</strong> ha sido eliminado/a como administrador"
" del centro <strong>%s</strong>."; // Okoteve traducción
" de <strong>%s</strong>."; // Okoteve traducción
#elif L==6
"<strong>%s</strong> &egrave; stato rimosso come amministratore"
" del centro <strong>%s</strong>.";
" de <strong>%s</strong>.";
#elif L==7
"<strong>%s</strong> has been removed as administrator"
" of the centre <strong>%s</strong>."; // Potrzebujesz tlumaczenie
" of <strong>%s</strong>."; // Potrzebujesz tlumaczenie
#elif L==8
"<strong>%s</strong> has been removed as administrator"
" of the centre <strong>%s</strong>."; // Necessita de tradução
#endif
const char *Txt_THE_USER_X_has_been_removed_as_administrator_of_the_degree_Y = // Warning: it is very important to include two %s in the following sentences
#if L==0
"<strong>%s</strong> ha sido eliminado/a como administrador"
" de la titulaci&oacute;n <strong>%s</strong>."; // Necessita traduccio
#elif L==1
"<strong>%s</strong> has been removed as administrator"
" of the degree <strong>%s</strong>."; // Übersetzung notwendig
#elif L==2
"<strong>%s</strong> has been removed as administrator"
" of the degree <strong>%s</strong>.";
#elif L==3
"<strong>%s</strong> ha sido eliminado/a como administrador"
" de la titulaci&oacute;n <strong>%s</strong>.";
#elif L==4
"<strong>%s</strong> has been removed as administrator"
" of the degree <strong>%s</strong>."; // Besoin de traduction
#elif L==5
"<strong>%s</strong> ha sido eliminado/a como administrador"
" de la titulaci&oacute;n <strong>%s</strong>."; // Okoteve traducción
#elif L==6
"<strong>%s</strong> &egrave; stato rimosso come amministratore"
" della laurea <strong>%s</strong>.";
#elif L==7
"<strong>%s</strong> has been removed as administrator"
" of the degree <strong>%s</strong>."; // Potrzebujesz tlumaczenie
#elif L==8
"<strong>%s</strong> has been removed as administrator"
" of the degree <strong>%s</strong>."; // Necessita de tradução
#endif
const char *Txt_THE_USER_X_has_been_removed_as_administrator_of_the_institution_Y = // Warning: it is very important to include two %s in the following sentences
#if L==0
"<strong>%s</strong> ha sido eliminado/a como administrador"
" de la instituci&oacute;n <strong>%s</strong>."; // Necessita traduccio
#elif L==1
"<strong>%s</strong> has been removed as administrator"
" of the institution <strong>%s</strong>."; // Übersetzung notwendig
#elif L==2
"<strong>%s</strong> has been removed as administrator"
" of the institution <strong>%s</strong>.";
#elif L==3
"<strong>%s</strong> ha sido eliminado/a como administrador"
" de la instituci&oacute;n <strong>%s</strong>.";
#elif L==4
"<strong>%s</strong> has been removed as administrator"
" of the institution <strong>%s</strong>."; // Besoin de traduction
#elif L==5
"<strong>%s</strong> ha sido eliminado/a como administrador"
" de la instituci&oacute;n <strong>%s</strong>."; // Okoteve traducción
#elif L==6
"<strong>%s</strong> &egrave; stato rimosso come amministratore"
" della istituzione <strong>%s</strong>.";
#elif L==7
"<strong>%s</strong> has been removed as administrator"
" of the institution <strong>%s</strong>."; // Potrzebujesz tlumaczenie
#elif L==8
"<strong>%s</strong> has been removed as administrator"
" of the institution <strong>%s</strong>."; // Necessita de tradução
" of <strong>%s</strong>."; // Necessita de tradução
#endif
const char *Txt_THE_USER_X_has_been_removed_from_the_group_of_type_Y_to_which_it_belonged = // Warning: it is very important to include two %s in the following sentences
@ -42529,94 +42436,25 @@ const char *Txt_The_user_is_new_does_not_exists_yet_in_X = // Warning: it is ver
"The user is new, does not exist yet in %s."; // Necessita de tradução
#endif
const char *Txt_THE_USER_X_is_not_an_administrator_of_the_centre_Y = // Warning: it is very important to include two %s in the following sentences
const char *Txt_THE_USER_X_is_not_an_administrator_of_Y = // Warning: it is very important to include two %s in the following sentences
#if L==0
"<strong>%s</strong> no es administrador/a"
" del centro <strong>%s</strong>."; // Necessita traduccio
"<strong>%s</strong> no es administrador/a de <strong>%s</strong>."; // Necessita traduccio
#elif L==1
"<strong>%s</strong> is not an administrator"
" of the centre <strong>%s</strong>."; // Übersetzung notwendig
"<strong>%s</strong> is not an administrator of <strong>%s</strong>."; // Übersetzung notwendig
#elif L==2
"<strong>%s</strong> is not an administrator"
" of the centre <strong>%s</strong>.";
"<strong>%s</strong> is not an administrator of <strong>%s</strong>.";
#elif L==3
"<strong>%s</strong> no es administrador/a"
" del centro <strong>%s</strong>.";
"<strong>%s</strong> no es administrador/a de <strong>%s</strong>.";
#elif L==4
"<strong>%s</strong> is not an administrator"
" of the centre <strong>%s</strong>."; // Besoin de traduction
"<strong>%s</strong> is not an administrator of <strong>%s</strong>."; // Besoin de traduction
#elif L==5
"<strong>%s</strong> no es administrador/a"
" del centro <strong>%s</strong>."; // Okoteve traducción
"<strong>%s</strong> no es administrador/a de <strong>%s</strong>."; // Okoteve traducción
#elif L==6
"<strong>%s</strong> non &egrave; un amministratore"
" del centro <strong>%s</strong>.";
"<strong>%s</strong> non &egrave; un amministratore de <strong>%s</strong>.";
#elif L==7
"<strong>%s</strong> is not an administrator"
" of the centre <strong>%s</strong>."; // Potrzebujesz tlumaczenie
"<strong>%s</strong> is not an administrator of <strong>%s</strong>."; // Potrzebujesz tlumaczenie
#elif L==8
"<strong>%s</strong> is not an administrator"
" of the centre <strong>%s</strong>."; // Necessita de tradução
#endif
const char *Txt_THE_USER_X_is_not_an_administrator_of_the_degree_Y = // Warning: it is very important to include two %s in the following sentences
#if L==0
"<strong>%s</strong> no es administrador/a"
" de la titulaci&oacute;n <strong>%s</strong>."; // Necessita traduccio
#elif L==1
"<strong>%s</strong> is not an administrator"
" of the degree <strong>%s</strong>."; // Übersetzung notwendig
#elif L==2
"<strong>%s</strong> is not an administrator"
" of the degree <strong>%s</strong>.";
#elif L==3
"<strong>%s</strong> no es administrador/a"
" de la titulaci&oacute;n <strong>%s</strong>.";
#elif L==4
"<strong>%s</strong> is not an administrator"
" of the degree <strong>%s</strong>."; // Besoin de traduction
#elif L==5
"<strong>%s</strong> no es administrador/a"
" de la titulaci&oacute;n <strong>%s</strong>."; // Okoteve traducción
#elif L==6
"<strong>%s</strong> non &egrave; un amministratore"
" della laurea <strong>%s</strong>.";
#elif L==7
"<strong>%s</strong> is not an administrator"
" of the degree <strong>%s</strong>."; // Potrzebujesz tlumaczenie
#elif L==8
"<strong>%s</strong> is not an administrator"
" of the degree <strong>%s</strong>."; // Necessita de tradução
#endif
const char *Txt_THE_USER_X_is_not_an_administrator_of_the_institution_Y = // Warning: it is very important to include two %s in the following sentences
#if L==0
"<strong>%s</strong> no es administrador/a"
" de la instituci&oacute;n <strong>%s</strong>."; // Necessita traduccio
#elif L==1
"<strong>%s</strong> is not an administrator"
" of the institution <strong>%s</strong>."; // Übersetzung notwendig
#elif L==2
"<strong>%s</strong> is not an administrator"
" of the institution <strong>%s</strong>.";
#elif L==3
"<strong>%s</strong> no es administrador/a"
" de la instituci&oacute;n <strong>%s</strong>.";
#elif L==4
"<strong>%s</strong> is not an administrator"
" of the institution <strong>%s</strong>."; // Besoin de traduction
#elif L==5
"<strong>%s</strong> no es administrador/a"
" de la instituci&oacute;n <strong>%s</strong>."; // Okoteve traducción
#elif L==6
"<strong>%s</strong> non &egrave; un amministratore"
" della istituzione <strong>%s</strong>.";
#elif L==7
"<strong>%s</strong> is not an administrator"
" of the institution <strong>%s</strong>."; // Potrzebujesz tlumaczenie
#elif L==8
"<strong>%s</strong> is not an administrator"
" of the institution <strong>%s</strong>."; // Necessita de tradução
"<strong>%s</strong> is not an administrator of <strong>%s</strong>."; // Necessita de tradução
#endif
const char *Txt_THE_USER_X_is_not_found_in_the_file_of_marks = // Warning: it is very important to include %s in the following sentences