From 7a1ffd400245e126650dd91144fcd8e26e329768 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Ca=C3=B1as=20Vargas?= Date: Wed, 31 May 2017 12:49:23 +0200 Subject: [PATCH] Version 16.231.3 --- swad_changelog.h | 7 ++++--- swad_connected.c | 2 +- swad_statistic.c | 25 +++++++++++++------------ 3 files changed, 18 insertions(+), 16 deletions(-) diff --git a/swad_changelog.h b/swad_changelog.h index f54e05f07..424451ae9 100644 --- a/swad_changelog.h +++ b/swad_changelog.h @@ -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) diff --git a/swad_connected.c b/swad_connected.c index 419b7b1ef..13662a31a 100644 --- a/swad_connected.c +++ b/swad_connected.c @@ -1014,7 +1014,7 @@ static void Con_WriteRowConnectedUsrOnRightColumn (Rol_Role_t Role) break; } Usr_PutParamUsrCodEncrypted (UsrDat->EncryptedUsrCod); - fprintf (Gbl.F.Out,"
",Font); // Limited width + fprintf (Gbl.F.Out,"
"); // Limited width Act_LinkFormSubmitUnique (Txt_View_record_for_this_course,Font); Usr_WriteFirstNameBRSurnames (UsrDat); fprintf (Gbl.F.Out,"" diff --git a/swad_statistic.c b/swad_statistic.c index fce5842df..0a60c3ad2 100644 --- a/swad_statistic.c +++ b/swad_statistic.c @@ -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 (); } /*****************************************************************************/