Version 16.45.4

This commit is contained in:
Antonio Cañas Vargas 2016-10-27 23:38:53 +02:00
parent 79de994a4b
commit e081f1fc4d
5 changed files with 46 additions and 33 deletions

View File

@ -154,13 +154,14 @@
/****************************** Public constants *****************************/
/*****************************************************************************/
#define Log_PLATFORM_VERSION "SWAD 16.45.3 (2016-10-27)"
#define Log_PLATFORM_VERSION "SWAD 16.45.4 (2016-10-27)"
#define CSS_FILE "swad16.32.1.css"
#define JS_FILE "swad15.238.1.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.45.4: Oct 27, 2016 Code refactoring in degree forums. (205916 lines)
Version 16.45.3: Oct 27, 2016 Code refactoring in course forums. (205906 lines)
Version 16.45.2: Oct 27, 2016 Code refactoring related with scopes. (205896 lines)
Version 16.45.1: Oct 27, 2016 Fixed bugs in surveys. (? lines)

View File

@ -2244,7 +2244,7 @@ static void Crs_EmptyCourseCompletely (long CrsCod)
sprintf (Query,"DELETE FROM notices WHERE CrsCod='%ld'",CrsCod);
DB_QueryDELETE (Query,"can not remove notices in a course");
/***** Remove all the threads and posts in forums of a course *****/
/***** Remove all the threads and posts in forums of the course *****/
For_RemoveCrsForums (CrsCod);
/***** Remove all test exams made in the course *****/

View File

@ -2289,37 +2289,8 @@ void Deg_RemoveDegreeCompletely (long DegCod)
already removed) *****/
Svy_RemoveSurveys (Sco_SCOPE_DEG,DegCod);
/***** Remove all the threads and posts in degree forums *****/
/* Remove disabled posts */
sprintf (Query,"DELETE FROM forum_disabled_post"
" USING forum_thread,forum_post,forum_disabled_post"
" WHERE (forum_thread.ForumType='%u' OR forum_thread.ForumType='%u')"
" AND forum_thread.Location='%ld' AND forum_thread.ThrCod=forum_post.ThrCod AND forum_post.PstCod=forum_disabled_post.PstCod",
For_FORUM_DEGREE_USRS,For_FORUM_DEGREE_TCHS,DegCod);
DB_QueryDELETE (Query,"can not remove the disabled posts in forums of a degree");
/* Remove posts */
sprintf (Query,"DELETE FROM forum_post"
" USING forum_thread,forum_post"
" WHERE (forum_thread.ForumType='%u' OR forum_thread.ForumType='%u')"
" AND forum_thread.Location='%ld' AND forum_thread.ThrCod=forum_post.ThrCod",
For_FORUM_DEGREE_USRS,For_FORUM_DEGREE_TCHS,DegCod);
DB_QueryDELETE (Query,"can not remove posts in forums of a degree");
/* Remove threads read */
sprintf (Query,"DELETE FROM forum_thr_read"
" USING forum_thread,forum_thr_read"
" WHERE (forum_thread.ForumType='%u' OR forum_thread.ForumType='%u')"
" AND forum_thread.Location='%ld' AND forum_thread.ThrCod=forum_thr_read.ThrCod",
For_FORUM_DEGREE_USRS,For_FORUM_DEGREE_TCHS,DegCod);
DB_QueryDELETE (Query,"can not remove read threads in forums of a degree");
/* Remove threads */
sprintf (Query,"DELETE FROM forum_thread"
" WHERE (forum_thread.ForumType='%u' OR forum_thread.ForumType='%u')"
" AND Location='%ld'",
For_FORUM_DEGREE_USRS,For_FORUM_DEGREE_TCHS,DegCod);
DB_QueryDELETE (Query,"can not remove threads in forums of a degree");
/***** Remove all the threads and posts in forums of the degree *****/
For_RemoveDegForums (DegCod);
/***** Remove information related to files in degree *****/
Brw_RemoveDegFilesFromDB (DegCod);

View File

@ -4413,6 +4413,46 @@ void For_RemoveUsrFromThrClipboard (long UsrCod)
DB_QueryDELETE (Query,"can not remove a thread from the clipboard of a user");
}
/*****************************************************************************/
/********** Remove all the threads and posts in forums of a degree ***********/
/*****************************************************************************/
void For_RemoveDegForums (long DegCod)
{
char Query[512];
/***** Remove disabled posts *****/
sprintf (Query,"DELETE FROM forum_disabled_post"
" USING forum_thread,forum_post,forum_disabled_post"
" WHERE (forum_thread.ForumType='%u' OR forum_thread.ForumType='%u')"
" AND forum_thread.Location='%ld' AND forum_thread.ThrCod=forum_post.ThrCod AND forum_post.PstCod=forum_disabled_post.PstCod",
For_FORUM_DEGREE_USRS,For_FORUM_DEGREE_TCHS,DegCod);
DB_QueryDELETE (Query,"can not remove the disabled posts in forums of a degree");
/***** Remove posts *****/
sprintf (Query,"DELETE FROM forum_post"
" USING forum_thread,forum_post"
" WHERE (forum_thread.ForumType='%u' OR forum_thread.ForumType='%u')"
" AND forum_thread.Location='%ld' AND forum_thread.ThrCod=forum_post.ThrCod",
For_FORUM_DEGREE_USRS,For_FORUM_DEGREE_TCHS,DegCod);
DB_QueryDELETE (Query,"can not remove posts in forums of a degree");
/***** Remove threads read *****/
sprintf (Query,"DELETE FROM forum_thr_read"
" USING forum_thread,forum_thr_read"
" WHERE (forum_thread.ForumType='%u' OR forum_thread.ForumType='%u')"
" AND forum_thread.Location='%ld' AND forum_thread.ThrCod=forum_thr_read.ThrCod",
For_FORUM_DEGREE_USRS,For_FORUM_DEGREE_TCHS,DegCod);
DB_QueryDELETE (Query,"can not remove read threads in forums of a degree");
/***** Remove threads *****/
sprintf (Query,"DELETE FROM forum_thread"
" WHERE (forum_thread.ForumType='%u' OR forum_thread.ForumType='%u')"
" AND Location='%ld'",
For_FORUM_DEGREE_USRS,For_FORUM_DEGREE_TCHS,DegCod);
DB_QueryDELETE (Query,"can not remove threads in forums of a degree");
}
/*****************************************************************************/
/********** Remove all the threads and posts in forums of a course ***********/
/*****************************************************************************/

View File

@ -140,6 +140,7 @@ void For_RemoveExpiredThrsClipboards (void);
void For_RemoveThrCodFromThrClipboard (long ThrCod);
void For_RemoveUsrFromThrClipboard (long UsrCod);
void For_RemoveDegForums (long DegCod);
void For_RemoveCrsForums (long CrsCod);
#endif