Version20.16.2

This commit is contained in:
acanas 2021-02-09 00:09:14 +01:00
parent 997d38c7cd
commit df84671425
2 changed files with 21 additions and 20 deletions

View File

@ -553,7 +553,7 @@ enscript -2 --landscape --color --file-align=2 --highlight --line-numbers -o - *
En OpenSWAD: En OpenSWAD:
ps2pdf source.ps destination.pdf ps2pdf source.ps destination.pdf
*/ */
#define Log_PLATFORM_VERSION "SWAD 20.16.1 (2021-02-08)" #define Log_PLATFORM_VERSION "SWAD 20.16.2 (2021-02-09)"
#define CSS_FILE "swad20.8.css" #define CSS_FILE "swad20.8.css"
#define JS_FILE "swad20.6.2.js" #define JS_FILE "swad20.6.2.js"
/* /*
@ -600,6 +600,7 @@ TODO: DNI de un estudiante sale err
TODO: BUG: Cuando un tipo de grupo sólo tiene un grupo, inscribirse es voluntario, el estudiante sólo puede pertenecer a un grupo, y se inscribe en él, debería poder desapuntarse. Ahora no puede. TODO: BUG: Cuando un tipo de grupo sólo tiene un grupo, inscribirse es voluntario, el estudiante sólo puede pertenecer a un grupo, y se inscribe en él, debería poder desapuntarse. Ahora no puede.
Version 20.16.2: Feb 09, 2021 Code refactoring in timeline. (305168 lines)
Version 20.16.1: Feb 08, 2021 Code refactoring in timeline. (305167 lines) Version 20.16.1: Feb 08, 2021 Code refactoring in timeline. (305167 lines)
Version 20.16: Feb 08, 2021 Code refactoring in timeline. (305169 lines) Version 20.16: Feb 08, 2021 Code refactoring in timeline. (305169 lines)
Version 20.15.2: Feb 08, 2021 Code refactoring in timeline. (305151 lines) Version 20.15.2: Feb 08, 2021 Code refactoring in timeline. (305151 lines)

View File

@ -708,16 +708,16 @@ static void TL_BuildQueryToGetTimeline (struct TL_Timeline *Timeline,
{ {
/* Insert publication */ /* Insert publication */
DB_QueryINSERT ("can not store publication code", DB_QueryINSERT ("can not store publication code",
"INSERT INTO tl_pub_codes SET PubCod=%ld", "INSERT INTO tl_tmp_pub_codes SET PubCod=%ld",
PubCod); PubCod);
RangePubsToGet.Top = PubCod; // Narrow the range for the next iteration RangePubsToGet.Top = PubCod; // Narrow the range for the next iteration
/* Insert note code */ /* Insert note code */
DB_QueryINSERT ("can not store note code", DB_QueryINSERT ("can not store note code",
"INSERT INTO tl_not_codes SET NotCod=%ld", "INSERT INTO tl_tmp_not_codes SET NotCod=%ld",
NotCod); NotCod);
DB_QueryINSERT ("can not store note code", DB_QueryINSERT ("can not store note code",
"INSERT INTO tl_current_timeline SET NotCod=%ld", "INSERT INTO tl_tmp_current_timeline SET NotCod=%ld",
NotCod); NotCod);
} }
else // Nothing got ==> abort loop else // Nothing got ==> abort loop
@ -742,7 +742,7 @@ static void TL_BuildQueryToGetTimeline (struct TL_Timeline *Timeline,
" FROM tl_pubs" " FROM tl_pubs"
" WHERE PubCod IN " " WHERE PubCod IN "
"(SELECT PubCod" "(SELECT PubCod"
" FROM tl_pub_codes)" " FROM tl_tmp_pub_codes)"
" ORDER BY PubCod DESC"); " ORDER BY PubCod DESC");
} }
@ -832,7 +832,7 @@ static void TL_CreateTmpTablePubCodes (void)
{ {
/***** Create temporary table with publication codes *****/ /***** Create temporary table with publication codes *****/
DB_Query ("can not create temporary table", DB_Query ("can not create temporary table",
"CREATE TEMPORARY TABLE tl_pub_codes " "CREATE TEMPORARY TABLE tl_tmp_pub_codes "
"(PubCod BIGINT NOT NULL," "(PubCod BIGINT NOT NULL,"
"UNIQUE INDEX(PubCod))" "UNIQUE INDEX(PubCod))"
" ENGINE=MEMORY"); " ENGINE=MEMORY");
@ -842,7 +842,7 @@ static void TL_CreateTmpTableNotCodes (void)
{ {
/***** Create temporary table with notes got in this execution *****/ /***** Create temporary table with notes got in this execution *****/
DB_Query ("can not create temporary table", DB_Query ("can not create temporary table",
"CREATE TEMPORARY TABLE tl_not_codes " "CREATE TEMPORARY TABLE tl_tmp_not_codes "
"(NotCod BIGINT NOT NULL," "(NotCod BIGINT NOT NULL,"
"INDEX(NotCod))" "INDEX(NotCod))"
" ENGINE=MEMORY"); " ENGINE=MEMORY");
@ -853,7 +853,7 @@ static void TL_CreateTmpTableCurrentTimeline (void)
/***** Create temporary table with notes /***** Create temporary table with notes
already present in timeline for this session *****/ already present in timeline for this session *****/
DB_Query ("can not create temporary table", DB_Query ("can not create temporary table",
"CREATE TEMPORARY TABLE tl_current_timeline " "CREATE TEMPORARY TABLE tl_tmp_current_timeline "
"(NotCod BIGINT NOT NULL," "(NotCod BIGINT NOT NULL,"
"INDEX(NotCod))" "INDEX(NotCod))"
" ENGINE=MEMORY" " ENGINE=MEMORY"
@ -865,7 +865,7 @@ static void TL_CreateTmpTablePublishers (void)
{ {
/***** Create temporary table with me and the users I follow *****/ /***** Create temporary table with me and the users I follow *****/
DB_Query ("can not create temporary table", DB_Query ("can not create temporary table",
"CREATE TEMPORARY TABLE tl_publishers " "CREATE TEMPORARY TABLE tl_tmp_publishers "
"(UsrCod INT NOT NULL," "(UsrCod INT NOT NULL,"
"UNIQUE INDEX(UsrCod))" "UNIQUE INDEX(UsrCod))"
" ENGINE=MEMORY" " ENGINE=MEMORY"
@ -886,10 +886,10 @@ static void TL_DropTmpTablesUsedToQueryTimeline (void)
{ {
DB_Query ("can not remove temporary tables", DB_Query ("can not remove temporary tables",
"DROP TEMPORARY TABLE IF EXISTS " "DROP TEMPORARY TABLE IF EXISTS "
"tl_pub_codes," "tl_tmp_pub_codes,"
"tl_not_codes," "tl_tmp_not_codes,"
"tl_current_timeline," "tl_tmp_current_timeline,"
"tl_publishers"); "tl_tmp_publishers");
} }
/*****************************************************************************/ /*****************************************************************************/
@ -916,7 +916,7 @@ static void TL_CreateSubQueryPublishers (const struct TL_Timeline *Timeline,
case Usr_WHO_FOLLOWED: // Show the timeline of the users I follow case Usr_WHO_FOLLOWED: // Show the timeline of the users I follow
TL_CreateTmpTablePublishers (); TL_CreateTmpTablePublishers ();
sprintf (SubQueries->Publishers, sprintf (SubQueries->Publishers,
"tl_pubs.PublisherCod=tl_publishers.UsrCod AND "); "tl_pubs.PublisherCod=tl_tmp_publishers.UsrCod AND ");
break; break;
case Usr_WHO_ALL: // Show the timeline of all users case Usr_WHO_ALL: // Show the timeline of all users
SubQueries->Publishers[0] = '\0'; SubQueries->Publishers[0] = '\0';
@ -945,13 +945,13 @@ static void TL_CreateSubQueryAlreadyExists (const struct TL_Timeline *Timeline,
case TL_GET_RECENT_TIMELINE: case TL_GET_RECENT_TIMELINE:
Str_Copy (SubQueries->AlreadyExists, Str_Copy (SubQueries->AlreadyExists,
" NotCod NOT IN" " NotCod NOT IN"
" (SELECT NotCod FROM tl_not_codes)", " (SELECT NotCod FROM tl_tmp_not_codes)",
TL_MAX_BYTES_SUBQUERY); TL_MAX_BYTES_SUBQUERY);
break; break;
case TL_GET_ONLY_OLD_PUBS: case TL_GET_ONLY_OLD_PUBS:
Str_Copy (SubQueries->AlreadyExists, Str_Copy (SubQueries->AlreadyExists,
" NotCod NOT IN" " NotCod NOT IN"
" (SELECT NotCod FROM tl_current_timeline)", " (SELECT NotCod FROM tl_tmp_current_timeline)",
TL_MAX_BYTES_SUBQUERY); TL_MAX_BYTES_SUBQUERY);
break; break;
} }
@ -963,13 +963,13 @@ static void TL_CreateSubQueryAlreadyExists (const struct TL_Timeline *Timeline,
case TL_GET_RECENT_TIMELINE: case TL_GET_RECENT_TIMELINE:
Str_Copy (SubQueries->AlreadyExists, Str_Copy (SubQueries->AlreadyExists,
" tl_pubs.NotCod NOT IN" " tl_pubs.NotCod NOT IN"
" (SELECT NotCod FROM tl_not_codes)", " (SELECT NotCod FROM tl_tmp_not_codes)",
TL_MAX_BYTES_SUBQUERY); TL_MAX_BYTES_SUBQUERY);
break; break;
case TL_GET_ONLY_OLD_PUBS: case TL_GET_ONLY_OLD_PUBS:
Str_Copy (SubQueries->AlreadyExists, Str_Copy (SubQueries->AlreadyExists,
" tl_pubs.NotCod NOT IN" " tl_pubs.NotCod NOT IN"
" (SELECT NotCod FROM tl_current_timeline)", " (SELECT NotCod FROM tl_tmp_current_timeline)",
TL_MAX_BYTES_SUBQUERY); TL_MAX_BYTES_SUBQUERY);
break; break;
} }
@ -1092,7 +1092,7 @@ static void TL_SelectTheMostRecentPub (const struct TL_Timeline *Timeline,
NumPubs = NumPubs =
(unsigned) DB_QuerySELECT (&mysql_res,"can not get publication", (unsigned) DB_QuerySELECT (&mysql_res,"can not get publication",
"SELECT PubCod,NotCod" "SELECT PubCod,NotCod"
" FROM tl_pubs,tl_publishers" " FROM tl_pubs,tl_tmp_publishers"
" WHERE %s%s%s%s" " WHERE %s%s%s%s"
" ORDER BY tl_pubs.PubCod DESC LIMIT 1", " ORDER BY tl_pubs.PubCod DESC LIMIT 1",
SubQueries->RangeBottom, SubQueries->RangeBottom,
@ -4517,7 +4517,7 @@ static void TL_AddNotesJustRetrievedToTimelineThisSession (void)
DB_QueryINSERT ("can not insert notes in timeline", DB_QueryINSERT ("can not insert notes in timeline",
"INSERT IGNORE INTO tl_timelines" "INSERT IGNORE INTO tl_timelines"
" (SessionId,NotCod)" " (SessionId,NotCod)"
" SELECT DISTINCTROW '%s',NotCod FROM tl_not_codes", " SELECT DISTINCTROW '%s',NotCod FROM tl_tmp_not_codes",
Gbl.Session.Id); Gbl.Session.Id);
} }