Version 16.119.1

This commit is contained in:
Antonio Cañas Vargas 2017-01-17 14:52:13 +01:00
parent f763f45bd2
commit b5edda72ee
4 changed files with 10 additions and 6 deletions

View File

@ -275,8 +275,7 @@ a:hover /* Default ==> underlined */
{ {
box-sizing:border-box; box-sizing:border-box;
width:80px; width:80px;
/* margin-left:6px; */ margin-left:6px;
margin:0 auto;
border-radius:4px; border-radius:4px;
box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 2px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12); box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 2px 1px -2px rgba(0,0,0,0.2), 0 1px 5px 0 rgba(0,0,0,0.12);
} }
@ -300,6 +299,7 @@ a:hover /* Default ==> underlined */
} }
#current_time #current_time
{ {
border-radius:0 0 4px 4px;
background-color:rgba(255, 255, 255, 0.8);; background-color:rgba(255, 255, 255, 0.8);;
color:#606060; color:#606060;
font-size:12pt; font-size:12pt;

View File

@ -811,6 +811,8 @@ static void Att_ResetAttendanceEvent (struct AttendanceEvent *Att)
if (Att->AttCod <= 0) // If > 0 ==> keep values of AttCod and Selected if (Att->AttCod <= 0) // If > 0 ==> keep values of AttCod and Selected
{ {
Att->AttCod = -1L; Att->AttCod = -1L;
Att->NumStdsTotal = 0;
Att->NumStdsFromList = 0;
Att->Selected = false; Att->Selected = false;
} }
Att->CrsCod = -1L; Att->CrsCod = -1L;
@ -821,8 +823,6 @@ static void Att_ResetAttendanceEvent (struct AttendanceEvent *Att)
Att->Open = false; Att->Open = false;
Att->Title[0] = '\0'; Att->Title[0] = '\0';
Att->CommentTchVisible = false; Att->CommentTchVisible = false;
Att->NumStdsTotal = 0;
Att->NumStdsFromList = 0;
} }
/*****************************************************************************/ /*****************************************************************************/

View File

@ -45,6 +45,7 @@ typedef enum
struct AttendanceEvent struct AttendanceEvent
{ {
/* Fields stored in database */
long AttCod; long AttCod;
long CrsCod; long CrsCod;
bool Hidden; bool Hidden;
@ -53,9 +54,11 @@ struct AttendanceEvent
bool Open; bool Open;
char Title[Att_MAX_LENGTH_ATTENDANCE_EVENT_TITLE + 1]; char Title[Att_MAX_LENGTH_ATTENDANCE_EVENT_TITLE + 1];
bool CommentTchVisible; bool CommentTchVisible;
/* Fields computed, not associated to the event in database */
unsigned NumStdsTotal; // Number total of students who have assisted to the event unsigned NumStdsTotal; // Number total of students who have assisted to the event
unsigned NumStdsFromList; // Number of students (taken from a list) who has assisted to the event unsigned NumStdsFromList; // Number of students (taken from a list) who has assisted to the event
bool Selected; // I have selected this attendance event bool Selected; // I have selected this attendance event
}; };
typedef enum typedef enum

View File

@ -191,13 +191,14 @@
/****************************** Public constants *****************************/ /****************************** Public constants *****************************/
/*****************************************************************************/ /*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.119 (2017-01-17)" #define Log_PLATFORM_VERSION "SWAD 16.119.1 (2017-01-17)"
#define CSS_FILE "swad16.119.css" #define CSS_FILE "swad16.119.css"
#define JS_FILE "swad16.119.js" #define JS_FILE "swad16.119.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.119.1: Jan 17, 2017 Fixed bug in attendance. (211877 lines)
Version 16.119: Jan 17, 2017 Changes in layout of current data and time. Version 16.119: Jan 17, 2017 Changes in layout of current data and time.
Fixed bug in attendance, reported by Javier Fernández Baldomero. (211874 lines) Fixed bug in attendance, reported by Javier Fernández Baldomero. (211874 lines)
Version 16.118.2: Jan 17, 2017 Fix bug in string concatenation. (211854 lines) Version 16.118.2: Jan 17, 2017 Fix bug in string concatenation. (211854 lines)