Version 16.231.3

This commit is contained in:
Antonio Cañas Vargas 2017-05-31 12:49:23 +02:00
parent 4f0ccdc1c4
commit 7a1ffd4002
3 changed files with 18 additions and 16 deletions

View File

@ -208,8 +208,6 @@
// TODO: En información de un centro, poner icono que enlace a edición de lugares, y posibilidad de editar lugar del centro en un menú desplegable. Lugar debería ir encima de Acceso directo.
// TODO: Fix bug: An URL like https://openswad.org/es?a gives Internal Server Error
// TODO: Fix bug: En Compartidos, si se borra la posibilidad de carpetas en un grupo ==> sale mensaje "The group has no file zones."
// TODO: Change numbers of notifications in program and database to match order in tabs
@ -227,17 +225,20 @@
// TODO: Green lock in documents is not shown when name is shortened (see OpenSWAD -> Creative Commons -> Files -> Documents)
// TODO: Fix bug: An URL like https://openswad.org/es?a gives Internal Server Error
/*****************************************************************************/
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.231.2 (2017-05-31)"
#define Log_PLATFORM_VERSION "SWAD 16.231.3 (2017-05-31)"
#define CSS_FILE "swad16.226.css"
#define JS_FILE "swad16.206.3.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.231.3: May 31, 2017 Changes in layout of statistics about institutions. (221037 lines)
Version 16.231.2: May 31, 2017 Fixed bug in connected users. (221036 lines)
Version 16.231.1: May 31, 2017 Fixed bugs in enrolment and groups. (221031 lines)
Version 16.231: May 31, 2017 Non-editing teachers can edit (with restrictions) in private zones. (221031 lines)

View File

@ -1014,7 +1014,7 @@ static void Con_WriteRowConnectedUsrOnRightColumn (Rol_Role_t Role)
break;
}
Usr_PutParamUsrCodEncrypted (UsrDat->EncryptedUsrCod);
fprintf (Gbl.F.Out,"<div class=\"CON_NAME_NARROW %s\">",Font); // Limited width
fprintf (Gbl.F.Out,"<div class=\"CON_NAME_NARROW\">"); // Limited width
Act_LinkFormSubmitUnique (Txt_View_record_for_this_course,Font);
Usr_WriteFirstNameBRSurnames (UsrDat);
fprintf (Gbl.F.Out,"</a>"

View File

@ -4954,30 +4954,31 @@ static void Sta_GetAndShowInstitutionsStats (void)
extern const char *Hlp_STATS_Figures_institutions;
extern const char *Txt_Institutions;
/***** Get and update type of list, number of columns in class photo
and preference about view photos *****/
Usr_GetAndUpdatePrefsAboutUsrList ();
/***** Form to select type of list used to display degree photos *****/
/***** Start frame *****/
Lay_StartRoundFrame (NULL,Txt_Institutions,
NULL,Hlp_STATS_Figures_institutions);
Usr_ShowFormsToSelectUsrListType (ActSeeUseGbl);
Lay_EndRoundFrame ();
/****** Institutions ordered by number of centres ******/
/***** Form to select type of list used to display degree photos *****/
Usr_GetAndUpdatePrefsAboutUsrList ();
Usr_ShowFormsToSelectUsrListType (ActSeeUseGbl);
/***** Institutions ordered by number of centres *****/
Sta_GetAndShowInssOrderedByNumCtrs ();
/****** Institutions ordered by number of degrees ******/
/***** Institutions ordered by number of degrees *****/
Sta_GetAndShowInssOrderedByNumDegs ();
/****** Institutions ordered by number of courses ******/
/***** Institutions ordered by number of courses *****/
Sta_GetAndShowInssOrderedByNumCrss ();
/****** Institutions ordered by number of users in courses ******/
/***** Institutions ordered by number of users in courses *****/
Sta_GetAndShowInssOrderedByNumUsrsInCrss ();
/****** Institutions ordered by number of users who claim to belong to them ******/
/***** Institutions ordered by number of users who claim to belong to them *****/
Sta_GetAndShowInssOrderedByNumUsrsWhoClaimToBelongToThem ();
/***** End frame *****/
Lay_EndRoundFrame ();
}
/*****************************************************************************/